sfc: Store port number in private data, not net_device::dev_id
authorBen Hutchings <bhutchings@solarflare.com>
Mon, 10 Jun 2013 17:03:17 +0000 (18:03 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 12 Jun 2013 10:15:02 +0000 (03:15 -0700)
We should not use net_device::dev_id to indicate the port number, as
this affects the way the local part of IPv6 addresses is normally
generated.

This field was intended for use where multiple devices may share a
single assigned MAC address and need to have different IPv6 addresses.
Siena's two ports each have their own MAC addresses.

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sfc/net_driver.h
drivers/net/ethernet/sfc/siena.c

index 39d6bd77f0157523fcafc9b4ac8d0affded56d76..9a2914cfd3453e229575c51b85e707ea6c03dc49 100644 (file)
@@ -784,6 +784,7 @@ struct efx_nic {
 
        char name[IFNAMSIZ];
        struct pci_dev *pci_dev;
+       unsigned int port_num;
        const struct efx_nic_type *type;
        int legacy_irq;
        bool legacy_irq_enabled;
@@ -916,7 +917,7 @@ static inline int efx_dev_registered(struct efx_nic *efx)
 
 static inline unsigned int efx_port_num(struct efx_nic *efx)
 {
-       return efx->net_dev->dev_id;
+       return efx->port_num;
 }
 
 /**
index 51669244d1548f416042f5f1c0670c6383599099..8c91775e3c5f19bcd51f409b8e6fca21133d84cf 100644 (file)
@@ -304,7 +304,7 @@ static int siena_probe_nic(struct efx_nic *efx)
        }
 
        efx_reado(efx, &reg, FR_AZ_CS_DEBUG);
-       efx->net_dev->dev_id = EFX_OWORD_FIELD(reg, FRF_CZ_CS_PORT_NUM) - 1;
+       efx->port_num = EFX_OWORD_FIELD(reg, FRF_CZ_CS_PORT_NUM) - 1;
 
        efx_mcdi_init(efx);