Fix implementation of the DECLARE_RWSEM() macro in the LinuxKPI.
MFC after: 1 week Sponsored by: Mellanox Technologies
This commit is contained in:
parent
01cb21eaf8
commit
feff0471f3
@ -66,9 +66,9 @@ struct rw_semaphore {
|
||||
struct rw_semaphore name; \
|
||||
static void name##_rwsem_init(void *arg) \
|
||||
{ \
|
||||
linux_init_rwsem(&name, rwsem_name(#name)) \
|
||||
linux_init_rwsem(&name, rwsem_name(#name)); \
|
||||
} \
|
||||
SYSINIT(name, SI_SUB_LOCKS, SI_ORDER_SECOND, name##_rwsem_init, NULL)
|
||||
SYSINIT(name, SI_SUB_LOCK, SI_ORDER_SECOND, name##_rwsem_init, NULL)
|
||||
|
||||
static inline void
|
||||
linux_init_rwsem(struct rw_semaphore *rw, const char *name)
|
||||
|
Loading…
Reference in New Issue
Block a user