diff options
author | Michael Chan <mchan@broadcom.com> | 2011-07-20 10:55:24 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-07-21 15:38:32 -0400 |
commit | 415199f2bd977fa4065d4e836b4b7543f7993bc3 (patch) | |
tree | 2dfb4dfcc7097fcdd02d7923e6fdecebc4af0985 /drivers/scsi/bnx2i | |
parent | 74e49bbdabbac34c77b280152b1de9bef9bf9be7 (diff) |
cnic: Add VLAN ID as a parameter during netevent upcall
The bnx2fc driver needs to handle netdev events on VLAN devices.
Signed-off-by: Michael Chan <mchan@broadcom.com>
Reviewed-by: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/scsi/bnx2i')
-rw-r--r-- | drivers/scsi/bnx2i/bnx2i_hwi.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/scsi/bnx2i/bnx2i_hwi.c b/drivers/scsi/bnx2i/bnx2i_hwi.c index 5c54a2d9b834..372d30c099cc 100644 --- a/drivers/scsi/bnx2i/bnx2i_hwi.c +++ b/drivers/scsi/bnx2i/bnx2i_hwi.c | |||
@@ -2386,14 +2386,20 @@ static void bnx2i_indicate_kcqe(void *context, struct kcqe *kcqe[], | |||
2386 | * bnx2i_indicate_netevent - Generic netdev event handler | 2386 | * bnx2i_indicate_netevent - Generic netdev event handler |
2387 | * @context: adapter structure pointer | 2387 | * @context: adapter structure pointer |
2388 | * @event: event type | 2388 | * @event: event type |
2389 | * @vlan_id: vlans id - associated vlan id with this event | ||
2389 | * | 2390 | * |
2390 | * Handles four netdev events, NETDEV_UP, NETDEV_DOWN, | 2391 | * Handles four netdev events, NETDEV_UP, NETDEV_DOWN, |
2391 | * NETDEV_GOING_DOWN and NETDEV_CHANGE | 2392 | * NETDEV_GOING_DOWN and NETDEV_CHANGE |
2392 | */ | 2393 | */ |
2393 | static void bnx2i_indicate_netevent(void *context, unsigned long event) | 2394 | static void bnx2i_indicate_netevent(void *context, unsigned long event, |
2395 | u16 vlan_id) | ||
2394 | { | 2396 | { |
2395 | struct bnx2i_hba *hba = context; | 2397 | struct bnx2i_hba *hba = context; |
2396 | 2398 | ||
2399 | /* Ignore all netevent coming from vlans */ | ||
2400 | if (vlan_id != 0) | ||
2401 | return; | ||
2402 | |||
2397 | switch (event) { | 2403 | switch (event) { |
2398 | case NETDEV_UP: | 2404 | case NETDEV_UP: |
2399 | if (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state)) | 2405 | if (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state)) |