From e1611d875195e103d1329d859bf027b596a9a2ee Mon Sep 17 00:00:00 2001 From: Liangliang Li Date: Fri, 14 May 2021 17:24:58 +0800 Subject: [PATCH] ANDROID: GKI: Enlarge OEM data reserved in task_struct Enlarge OEM data reserved in struct task_struct to support OEM's feature. Bug: 188018141 Change-Id: I242459e0ecf327475bb4814110f89f160cca0ad1 Signed-off-by: Liangliang Li --- include/linux/sched.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/sched.h b/include/linux/sched.h index 07d367d3a935..e9280585961c 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1369,7 +1369,7 @@ struct task_struct { struct callback_head mce_kill_me; #endif ANDROID_VENDOR_DATA_ARRAY(1, 64); - ANDROID_OEM_DATA_ARRAY(1, 6); + ANDROID_OEM_DATA_ARRAY(1, 32); ANDROID_KABI_RESERVE(1); ANDROID_KABI_RESERVE(2);