mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-27 21:14:44 +08:00
[NETFILTER]: Add dummy nf_hook{_thresh}() when NETFILTER is disabled.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
da7bc6ee8e
commit
f53b61d8c3
@ -295,7 +295,22 @@ extern struct proc_dir_entry *proc_net_netfilter;
|
|||||||
|
|
||||||
#else /* !CONFIG_NETFILTER */
|
#else /* !CONFIG_NETFILTER */
|
||||||
#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
|
#define NF_HOOK(pf, hook, skb, indev, outdev, okfn) (okfn)(skb)
|
||||||
|
static inline int nf_hook_thresh(int pf, unsigned int hook,
|
||||||
|
struct sk_buff **pskb,
|
||||||
|
struct net_device *indev,
|
||||||
|
struct net_device *outdev,
|
||||||
|
int (*okfn)(struct sk_buff *), int thresh)
|
||||||
|
{
|
||||||
|
return okfn(*pskb);
|
||||||
|
}
|
||||||
|
static inline int nf_hook(int pf, unsigned int hook, struct sk_buff **pskb,
|
||||||
|
struct net_device *indev, struct net_device *outdev,
|
||||||
|
int (*okfn)(struct sk_buff *))
|
||||||
|
{
|
||||||
|
return okfn(*pskb);
|
||||||
|
}
|
||||||
static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
|
static inline void nf_ct_attach(struct sk_buff *new, struct sk_buff *skb) {}
|
||||||
|
struct flowi;
|
||||||
static inline void
|
static inline void
|
||||||
nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, int family) {}
|
nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, int family) {}
|
||||||
#endif /*CONFIG_NETFILTER*/
|
#endif /*CONFIG_NETFILTER*/
|
||||||
|
Loading…
Reference in New Issue
Block a user