mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
ANDROID: GKI: Add OEM data to mutex/rwsem
Reserve ANDROID_OEM_DATA in struct mutex/rw_semaphore for recoreding informaition about the lock, which helps to do oem specific lock optimization. Bug: 188869548 Change-Id: I33f767a1823f854a8deb8ba9078079aa6a9d76ea Signed-off-by: Liangliang Li <liliangliang@vivo.com>
This commit is contained in:
parent
b3df6eb195
commit
372b24bad2
|
|
@ -19,6 +19,7 @@
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <linux/osq_lock.h>
|
#include <linux/osq_lock.h>
|
||||||
#include <linux/debug_locks.h>
|
#include <linux/debug_locks.h>
|
||||||
|
#include <linux/android_vendor.h>
|
||||||
|
|
||||||
struct ww_acquire_ctx;
|
struct ww_acquire_ctx;
|
||||||
|
|
||||||
|
|
@ -63,6 +64,7 @@ struct mutex {
|
||||||
#ifdef CONFIG_DEBUG_LOCK_ALLOC
|
#ifdef CONFIG_DEBUG_LOCK_ALLOC
|
||||||
struct lockdep_map dep_map;
|
struct lockdep_map dep_map;
|
||||||
#endif
|
#endif
|
||||||
|
ANDROID_OEM_DATA_ARRAY(1, 2);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ww_class;
|
struct ww_class;
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,7 @@ struct rw_semaphore {
|
||||||
struct lockdep_map dep_map;
|
struct lockdep_map dep_map;
|
||||||
#endif
|
#endif
|
||||||
ANDROID_VENDOR_DATA(1);
|
ANDROID_VENDOR_DATA(1);
|
||||||
|
ANDROID_OEM_DATA_ARRAY(1, 2);
|
||||||
};
|
};
|
||||||
|
|
||||||
enum rwsem_waiter_type {
|
enum rwsem_waiter_type {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user