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/bnx2fc/bnx2fc_fcoe.c | |
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/bnx2fc/bnx2fc_fcoe.c')
-rw-r--r-- | drivers/scsi/bnx2fc/bnx2fc_fcoe.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c index 7a16ca1c3ecf..9eebaebdaa78 100644 --- a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c +++ b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c | |||
@@ -767,17 +767,23 @@ static void bnx2fc_destroy_timer(unsigned long data) | |||
767 | * | 767 | * |
768 | * @context: adapter structure pointer | 768 | * @context: adapter structure pointer |
769 | * @event: event type | 769 | * @event: event type |
770 | * @vlan_id: vlan id - associated vlan id with this event | ||
770 | * | 771 | * |
771 | * Handles NETDEV_UP, NETDEV_DOWN, NETDEV_GOING_DOWN,NETDEV_CHANGE and | 772 | * Handles NETDEV_UP, NETDEV_DOWN, NETDEV_GOING_DOWN,NETDEV_CHANGE and |
772 | * NETDEV_CHANGE_MTU events | 773 | * NETDEV_CHANGE_MTU events |
773 | */ | 774 | */ |
774 | static void bnx2fc_indicate_netevent(void *context, unsigned long event) | 775 | static void bnx2fc_indicate_netevent(void *context, unsigned long event, |
776 | u16 vlan_id) | ||
775 | { | 777 | { |
776 | struct bnx2fc_hba *hba = (struct bnx2fc_hba *)context; | 778 | struct bnx2fc_hba *hba = (struct bnx2fc_hba *)context; |
777 | struct fc_lport *lport = hba->ctlr.lp; | 779 | struct fc_lport *lport = hba->ctlr.lp; |
778 | struct fc_lport *vport; | 780 | struct fc_lport *vport; |
779 | u32 link_possible = 1; | 781 | u32 link_possible = 1; |
780 | 782 | ||
783 | /* Ignore vlans for now */ | ||
784 | if (vlan_id != 0) | ||
785 | return; | ||
786 | |||
781 | if (!test_bit(BNX2FC_CREATE_DONE, &hba->init_done)) { | 787 | if (!test_bit(BNX2FC_CREATE_DONE, &hba->init_done)) { |
782 | BNX2FC_MISC_DBG("driver not ready. event=%s %ld\n", | 788 | BNX2FC_MISC_DBG("driver not ready. event=%s %ld\n", |
783 | hba->netdev->name, event); | 789 | hba->netdev->name, event); |