aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/fnic/fnic_main.c
diff options
context:
space:
mode:
authorVenkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>2010-02-16 12:15:44 -0800
committerJames Bottomley <James.Bottomley@suse.de>2010-02-17 17:43:49 -0600
commitaaa5e569ca96f5cf70202679a5864e60798b8ef6 (patch)
tree198c37cf6307fd972436e80dc2b9dffdf4606fe8 /drivers/scsi/fnic/fnic_main.c
parent[SCSI] fcoe: Only rmmod fcoe.ko if there are no active connections (diff)
downloadlinux-dev-aaa5e569ca96f5cf70202679a5864e60798b8ef6.tar.xz
linux-dev-aaa5e569ca96f5cf70202679a5864e60798b8ef6.zip
[SCSI] fnic: Allow multicast and unicast address registrations for fnic
To enable FIP support in fnic, we have to register with hardware to receive FIP solication frames on a well-known multicast address. Before FIP support, the firmware interface allowed multicast address registrations only for enic devices. This is a minor change in fnic to allow the firmware interface to now register mcast addresses for fnic too. Signed-off-by: Brian Uchino <buchino@cisco.com> Signed-off-by: Herman Lee <hermlee@cisco.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/fnic/fnic_main.c')
-rw-r--r--drivers/scsi/fnic/fnic_main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/fnic/fnic_main.c b/drivers/scsi/fnic/fnic_main.c
index fe1b1031f7ab..5bab7e0afe3d 100644
--- a/drivers/scsi/fnic/fnic_main.c
+++ b/drivers/scsi/fnic/fnic_main.c
@@ -620,6 +620,8 @@ static int __devinit fnic_probe(struct pci_dev *pdev,
if (fnic->config.flags & VFCF_FIP_CAPABLE) {
shost_printk(KERN_INFO, fnic->lport->host,
"firmware supports FIP\n");
+ /* enable directed and multicast */
+ vnic_dev_packet_filter(fnic->vdev, 1, 1, 0, 0, 0);
vnic_dev_add_addr(fnic->vdev, FIP_ALL_ENODE_MACS);
vnic_dev_add_addr(fnic->vdev, fnic->ctlr.ctl_src_addr);
} else {