diff options
author | Patrick McHardy <kaber@trash.net> | 2007-03-14 19:39:25 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:25:43 -0400 |
commit | a3c5029cf7a96da3acdf6884a21581b5bef310c3 (patch) | |
tree | c599a8870e199562f4937193f2b3dc3d56a55145 /include | |
parent | c6a1e615d1ba942b9e783079d53f741e4a8e1c89 (diff) |
[NETFILTER]: nfnetlink: use mutex instead of semaphore
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netfilter/nfnetlink.h | 13 | ||||
-rw-r--r-- | include/net/netfilter/nf_conntrack_l3proto.h | 5 |
2 files changed, 1 insertions, 17 deletions
diff --git a/include/linux/netfilter/nfnetlink.h b/include/linux/netfilter/nfnetlink.h index 1e9c821f152d..6179648a014e 100644 --- a/include/linux/netfilter/nfnetlink.h +++ b/include/linux/netfilter/nfnetlink.h | |||
@@ -129,19 +129,6 @@ extern void __nfa_fill(struct sk_buff *skb, int attrtype, | |||
129 | ({ if (skb_tailroom(skb) < (int)NFA_SPACE(attrlen)) goto nfattr_failure; \ | 129 | ({ if (skb_tailroom(skb) < (int)NFA_SPACE(attrlen)) goto nfattr_failure; \ |
130 | __nfa_fill(skb, attrtype, attrlen, data); }) | 130 | __nfa_fill(skb, attrtype, attrlen, data); }) |
131 | 131 | ||
132 | extern struct semaphore nfnl_sem; | ||
133 | |||
134 | #define nfnl_shlock() down(&nfnl_sem) | ||
135 | #define nfnl_shlock_nowait() down_trylock(&nfnl_sem) | ||
136 | |||
137 | #define nfnl_shunlock() do { up(&nfnl_sem); \ | ||
138 | if(nfnl && nfnl->sk_receive_queue.qlen) \ | ||
139 | nfnl->sk_data_ready(nfnl, 0); \ | ||
140 | } while(0) | ||
141 | |||
142 | extern void nfnl_lock(void); | ||
143 | extern void nfnl_unlock(void); | ||
144 | |||
145 | extern int nfnetlink_subsys_register(struct nfnetlink_subsystem *n); | 132 | extern int nfnetlink_subsys_register(struct nfnetlink_subsystem *n); |
146 | extern int nfnetlink_subsys_unregister(struct nfnetlink_subsystem *n); | 133 | extern int nfnetlink_subsys_unregister(struct nfnetlink_subsystem *n); |
147 | 134 | ||
diff --git a/include/net/netfilter/nf_conntrack_l3proto.h b/include/net/netfilter/nf_conntrack_l3proto.h index eb575cbd4c95..f32f714e5d92 100644 --- a/include/net/netfilter/nf_conntrack_l3proto.h +++ b/include/net/netfilter/nf_conntrack_l3proto.h | |||
@@ -90,10 +90,7 @@ extern struct nf_conntrack_l3proto *nf_ct_l3protos[AF_MAX]; | |||
90 | /* Protocol registration. */ | 90 | /* Protocol registration. */ |
91 | extern int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto *proto); | 91 | extern int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto *proto); |
92 | extern void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto *proto); | 92 | extern void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto *proto); |
93 | 93 | extern struct nf_conntrack_l3proto *nf_ct_l3proto_find_get(u_int16_t l3proto); | |
94 | extern struct nf_conntrack_l3proto * | ||
95 | nf_ct_l3proto_find_get(u_int16_t l3proto); | ||
96 | |||
97 | extern void nf_ct_l3proto_put(struct nf_conntrack_l3proto *p); | 94 | extern void nf_ct_l3proto_put(struct nf_conntrack_l3proto *p); |
98 | 95 | ||
99 | /* Existing built-in protocols */ | 96 | /* Existing built-in protocols */ |