cxgb3 - Set the CQ_ERR bit in CQ contexts.
[firewire-audio.git] / include / net / net_namespace.h
blobac8f8304094ed62e25c4f35eb1a9203fe89f386c
1 /*
2 * Operations on the network namespace
3 */
4 #ifndef __NET_NET_NAMESPACE_H
5 #define __NET_NET_NAMESPACE_H
7 #include <asm/atomic.h>
8 #include <linux/workqueue.h>
9 #include <linux/list.h>
11 struct proc_dir_entry;
12 struct net {
13 atomic_t count; /* To decided when the network
14 * namespace should be freed.
16 atomic_t use_count; /* To track references we
17 * destroy on demand
19 struct list_head list; /* list of network namespaces */
20 struct work_struct work; /* work struct for freeing */
22 struct proc_dir_entry *proc_net;
23 struct proc_dir_entry *proc_net_stat;
24 struct proc_dir_entry *proc_net_root;
26 struct list_head dev_base_head;
27 struct hlist_head *dev_name_head;
28 struct hlist_head *dev_index_head;
31 #ifdef CONFIG_NET
32 /* Init's network namespace */
33 extern struct net init_net;
34 #define INIT_NET_NS(net_ns) .net_ns = &init_net,
35 #else
36 #define INIT_NET_NS(net_ns)
37 #endif
39 extern struct list_head net_namespace_list;
41 extern void __put_net(struct net *net);
43 static inline struct net *get_net(struct net *net)
45 atomic_inc(&net->count);
46 return net;
49 static inline struct net *maybe_get_net(struct net *net)
51 /* Used when we know struct net exists but we
52 * aren't guaranteed a previous reference count
53 * exists. If the reference count is zero this
54 * function fails and returns NULL.
56 if (!atomic_inc_not_zero(&net->count))
57 net = NULL;
58 return net;
61 static inline void put_net(struct net *net)
63 if (atomic_dec_and_test(&net->count))
64 __put_net(net);
67 static inline struct net *hold_net(struct net *net)
69 atomic_inc(&net->use_count);
70 return net;
73 static inline void release_net(struct net *net)
75 atomic_dec(&net->use_count);
78 extern void net_lock(void);
79 extern void net_unlock(void);
81 #define for_each_net(VAR) \
82 list_for_each_entry(VAR, &net_namespace_list, list)
85 struct pernet_operations {
86 struct list_head list;
87 int (*init)(struct net *net);
88 void (*exit)(struct net *net);
91 extern int register_pernet_subsys(struct pernet_operations *);
92 extern void unregister_pernet_subsys(struct pernet_operations *);
93 extern int register_pernet_device(struct pernet_operations *);
94 extern void unregister_pernet_device(struct pernet_operations *);
96 #endif /* __NET_NET_NAMESPACE_H */