2005-11-10 01:25:56 +00:00
|
|
|
#ifndef __LINUX_GENERIC_NETLINK_H
|
|
|
|
#define __LINUX_GENERIC_NETLINK_H
|
|
|
|
|
2012-10-13 09:46:48 +00:00
|
|
|
#include <uapi/linux/genetlink.h>
|
2005-11-10 01:25:56 +00:00
|
|
|
|
2010-04-02 06:19:05 +00:00
|
|
|
|
|
|
|
/* All generic netlink requests are serialized by a global lock. */
|
|
|
|
extern void genl_lock(void);
|
|
|
|
extern void genl_unlock(void);
|
2012-07-24 05:44:01 +00:00
|
|
|
#ifdef CONFIG_LOCKDEP
|
2015-10-08 13:28:54 +00:00
|
|
|
extern bool lockdep_genl_is_held(void);
|
2011-11-11 03:14:51 +00:00
|
|
|
#endif
|
2010-04-02 06:19:05 +00:00
|
|
|
|
2015-01-16 10:37:14 +00:00
|
|
|
/* for synchronisation between af_netlink and genetlink */
|
|
|
|
extern atomic_t genl_sk_destructing_cnt;
|
|
|
|
extern wait_queue_head_t genl_sk_destructing_waitq;
|
|
|
|
|
2011-11-20 00:21:37 +00:00
|
|
|
/**
|
|
|
|
* rcu_dereference_genl - rcu_dereference with debug checking
|
|
|
|
* @p: The pointer to read, prior to dereferencing
|
|
|
|
*
|
|
|
|
* Do an rcu_dereference(p), but check caller either holds rcu_read_lock()
|
|
|
|
* or genl mutex. Note : Please prefer genl_dereference() or rcu_dereference()
|
|
|
|
*/
|
|
|
|
#define rcu_dereference_genl(p) \
|
|
|
|
rcu_dereference_check(p, lockdep_genl_is_held())
|
|
|
|
|
|
|
|
/**
|
|
|
|
* genl_dereference - fetch RCU pointer when updates are prevented by genl mutex
|
|
|
|
* @p: The pointer to read, prior to dereferencing
|
|
|
|
*
|
|
|
|
* Return the value of the specified RCU-protected pointer, but omit
|
|
|
|
* both the smp_read_barrier_depends() and the ACCESS_ONCE(), because
|
|
|
|
* caller holds genl mutex.
|
|
|
|
*/
|
|
|
|
#define genl_dereference(p) \
|
|
|
|
rcu_dereference_protected(p, lockdep_genl_is_held())
|
|
|
|
|
2012-05-29 09:30:41 +00:00
|
|
|
#define MODULE_ALIAS_GENL_FAMILY(family)\
|
|
|
|
MODULE_ALIAS_NET_PF_PROTO_NAME(PF_NETLINK, NETLINK_GENERIC, "-family-" family)
|
|
|
|
|
2005-11-10 01:25:56 +00:00
|
|
|
#endif /* __LINUX_GENERIC_NETLINK_H */
|