1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __NET_GENETLINK_H 3#define __NET_GENETLINK_H 4 5#include <linux/wait.h> 6 7/* for synchronisation between af_netlink and genetlink */ 8extern atomic_t genl_sk_destructing_cnt; 9extern wait_queue_head_t genl_sk_destructing_waitq; 10 11#endif /* __LINUX_GENERIC_NETLINK_H */ 12 13