diff options
author | Fengguang Wu <[email protected]> | 2012-08-23 19:51:21 +0800 |
---|---|---|
committer | David S. Miller <[email protected]> | 2012-08-23 09:27:12 -0700 |
commit | a0dfb2634e5671770f598cda08002d8cda66ac77 (patch) | |
tree | 243f657c9a5f6ab119e4b20d3220207b7ded2082 | |
parent | a6b9650108003e994770209fb8efedf6e214dcf7 (diff) |
af_packet: match_fanout_group() can be static
cc: Eric Leblond <[email protected]>
Signed-off-by: Fengguang Wu <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | net/packet/af_packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c index aee7196aac36..c5c9e2a54218 100644 --- a/net/packet/af_packet.c +++ b/net/packet/af_packet.c @@ -1273,7 +1273,7 @@ static void __fanout_unlink(struct sock *sk, struct packet_sock *po) spin_unlock(&f->lock); } -bool match_fanout_group(struct packet_type *ptype, struct sock * sk) +static bool match_fanout_group(struct packet_type *ptype, struct sock * sk) { if (ptype->af_packet_priv == (void*)((struct packet_sock *)sk)->fanout) return true; |