diff options
author | Greg Rose <gregory.v.rose@intel.com> | 2010-11-06 03:08:26 +0100 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2010-12-25 06:36:51 +0100 |
commit | 13800469d40bf4dc9fbed17f4692b2ebe94d4526 (patch) | |
tree | d14fda8702cb36ca4039941b254e462b31f32f1c /drivers/net/igb/igb.h | |
parent | igb: Some fine tuning (diff) | |
download | linux-13800469d40bf4dc9fbed17f4692b2ebe94d4526.tar.xz linux-13800469d40bf4dc9fbed17f4692b2ebe94d4526.zip |
igb: Add Anti-spoofing feature support
Add support for the anti-spoofing feature in the HW. Packets from
VF devices with spoofed MAC addresses or VLAN tags will be blocked
and an event generated. When the watchdog task runs it will call a
function to check if any spoof events occurred. If an event was
detected then a warning message is dumped to the system log.
Signed-off-by: Greg Rose <gregory.v.rose@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/igb/igb.h')
-rw-r--r-- | drivers/net/igb/igb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/igb/igb.h b/drivers/net/igb/igb.h index edab9c442399..92a4ef09e55c 100644 --- a/drivers/net/igb/igb.h +++ b/drivers/net/igb/igb.h @@ -324,6 +324,7 @@ struct igb_adapter { unsigned int vfs_allocated_count; struct vf_data_storage *vf_data; u32 rss_queues; + u32 wvbr; }; #define IGB_FLAG_HAS_MSI (1 << 0) |