mirror of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
synced 2025-09-14 11:19:08 +10:00
Introducing local_lock broke compilation; fix it all up. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
9 lines
234 B
C
9 lines
234 B
C
#ifndef _LINUX_LOCAL_LOCK
|
|
#define _LINUX_LOCAL_LOCK
|
|
typedef struct { } local_lock_t;
|
|
|
|
static inline void local_lock(local_lock_t *lock) { }
|
|
static inline void local_unlock(local_lock_t *lock) { }
|
|
#define INIT_LOCAL_LOCK(x) { }
|
|
#endif
|