]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[SCSI] fnic: Allow multicast and unicast address registrations for fnic
authorVenkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com>
Tue, 16 Feb 2010 20:15:44 +0000 (12:15 -0800)
committerJames Bottomley <James.Bottomley@suse.de>
Wed, 17 Feb 2010 23:43:49 +0000 (17:43 -0600)
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>
drivers/scsi/fnic/fnic_main.c
drivers/scsi/fnic/vnic_devcmd.h

index fe1b1031f7abf2ac4d2b99877096ed30f0f49b00..5bab7e0afe3db62a3406380792a3009ecb996a07 100644 (file)
@@ -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 {
index d62b9061bf12f5e1c302948def0e85e80c943452..7c9ccbd4134b722dad20643314fa719fdcffb89c 100644 (file)
@@ -94,7 +94,7 @@ enum vnic_devcmd_cmd {
        CMD_STATS_DUMP          = _CMDC(_CMD_DIR_WRITE, _CMD_VTYPE_ALL, 4),
 
        /* set Rx packet filter: (u32)a0=filters (see CMD_PFILTER_*) */
-       CMD_PACKET_FILTER       = _CMDCNW(_CMD_DIR_WRITE, _CMD_VTYPE_ENET, 7),
+       CMD_PACKET_FILTER       = _CMDCNW(_CMD_DIR_WRITE, _CMD_VTYPE_ALL, 7),
 
        /* hang detection notification */
        CMD_HANG_NOTIFY         = _CMDC(_CMD_DIR_NONE, _CMD_VTYPE_ALL, 8),