diff options
author | Salam Noureddine <noureddine@arista.com> | 2015-01-27 14:35:48 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-29 17:41:39 -0500 |
commit | 7866a621043fbaca3d7389e9b9f69dd1a2e5a855 (patch) | |
tree | d2913952615b3070c6d8f222eed2a84f2f140f85 /include | |
parent | 7b4ce694b2030e7bb41f938cba6a0be4947a5aa5 (diff) |
dev: add per net_device packet type chains
When many pf_packet listeners are created on a lot of interfaces the
current implementation using global packet type lists scales poorly.
This patch adds per net_device packet type lists to fix this problem.
The patch was originally written by Eric Biederman for linux-2.6.29.
Tested on linux-3.16.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Salam Noureddine <noureddine@arista.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 642d426a668f..3d37c6eb1732 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -1514,6 +1514,8 @@ struct net_device { | |||
1514 | struct list_head napi_list; | 1514 | struct list_head napi_list; |
1515 | struct list_head unreg_list; | 1515 | struct list_head unreg_list; |
1516 | struct list_head close_list; | 1516 | struct list_head close_list; |
1517 | struct list_head ptype_all; | ||
1518 | struct list_head ptype_specific; | ||
1517 | 1519 | ||
1518 | struct { | 1520 | struct { |
1519 | struct list_head upper; | 1521 | struct list_head upper; |