Bluetooth: vhci: Fix race at creating hci device
[linux/fpc-iii.git] / include / net / netns / netfilter.h
blob88740024ccf37e9553c61884afd39c27dcec8fa7
1 #ifndef __NETNS_NETFILTER_H
2 #define __NETNS_NETFILTER_H
4 #include <linux/proc_fs.h>
5 #include <linux/netfilter.h>
7 struct nf_logger;
9 struct netns_nf {
10 #if defined CONFIG_PROC_FS
11 struct proc_dir_entry *proc_netfilter;
12 #endif
13 const struct nf_logger __rcu *nf_loggers[NFPROTO_NUMPROTO];
14 #ifdef CONFIG_SYSCTL
15 struct ctl_table_header *nf_log_dir_header;
16 #endif
18 #endif