aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Pirko <jiri@resnulli.us>2014-11-28 08:34:16 -0500
committerDavid S. Miller <davem@davemloft.net>2014-12-02 23:01:19 -0500
commit02637fce3e0103ba086b9c33b6d529e69460e4b6 (patch)
tree695bc5b5f7dfaf3e7d0a9a422c85f984f37bafbd
parentf6f6424ba773da6221ecaaa70973eb4dacfa03b2 (diff)
net: rename netdev_phys_port_id to more generic name
So this can be reused for identification of other "items" as well. Signed-off-by: Jiri Pirko <jiri@resnulli.us> Reviewed-by: Thomas Graf <tgraf@suug.ch> Acked-by: John Fastabend <john.r.fastabend@intel.com> Acked-by: Andy Gospodarek <gospo@cumulusnetworks.com> Acked-by: Jamal Hadi Salim <jhs@mojatatu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c2
-rw-r--r--drivers/net/ethernet/intel/i40e/i40e_main.c2
-rw-r--r--drivers/net/ethernet/mellanox/mlx4/en_netdev.c2
-rw-r--r--drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c2
-rw-r--r--include/linux/netdevice.h16
-rw-r--r--net/core/dev.c2
-rw-r--r--net/core/net-sysfs.c2
-rw-r--r--net/core/rtnetlink.c6
8 files changed, 17 insertions, 17 deletions
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
index c4bd025c74c9..336ef3cf5773 100644
--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
+++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
@@ -12537,7 +12537,7 @@ static int bnx2x_validate_addr(struct net_device *dev)
12537} 12537}
12538 12538
12539static int bnx2x_get_phys_port_id(struct net_device *netdev, 12539static int bnx2x_get_phys_port_id(struct net_device *netdev,
12540 struct netdev_phys_port_id *ppid) 12540 struct netdev_phys_item_id *ppid)
12541{ 12541{
12542 struct bnx2x *bp = netdev_priv(netdev); 12542 struct bnx2x *bp = netdev_priv(netdev);
12543 12543
diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c
index 5ed5e4036dd9..9ae4270db0b3 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_main.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
@@ -7511,7 +7511,7 @@ static void i40e_del_vxlan_port(struct net_device *netdev,
7511 7511
7512#endif 7512#endif
7513static int i40e_get_phys_port_id(struct net_device *netdev, 7513static int i40e_get_phys_port_id(struct net_device *netdev,
7514 struct netdev_phys_port_id *ppid) 7514 struct netdev_phys_item_id *ppid)
7515{ 7515{
7516 struct i40e_netdev_priv *np = netdev_priv(netdev); 7516 struct i40e_netdev_priv *np = netdev_priv(netdev);
7517 struct i40e_pf *pf = np->vsi->back; 7517 struct i40e_pf *pf = np->vsi->back;
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
index b7c99780aef3..1597fb07576c 100644
--- a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
+++ b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
@@ -2259,7 +2259,7 @@ static int mlx4_en_set_vf_link_state(struct net_device *dev, int vf, int link_st
2259 2259
2260#define PORT_ID_BYTE_LEN 8 2260#define PORT_ID_BYTE_LEN 8
2261static int mlx4_en_get_phys_port_id(struct net_device *dev, 2261static int mlx4_en_get_phys_port_id(struct net_device *dev,
2262 struct netdev_phys_port_id *ppid) 2262 struct netdev_phys_item_id *ppid)
2263{ 2263{
2264 struct mlx4_en_priv *priv = netdev_priv(dev); 2264 struct mlx4_en_priv *priv = netdev_priv(dev);
2265 struct mlx4_dev *mdev = priv->mdev->dev; 2265 struct mlx4_dev *mdev = priv->mdev->dev;
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c
index 3227c8063edd..1aa25b13ace1 100644
--- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c
+++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c
@@ -461,7 +461,7 @@ static void qlcnic_82xx_cancel_idc_work(struct qlcnic_adapter *adapter)
461} 461}
462 462
463static int qlcnic_get_phys_port_id(struct net_device *netdev, 463static int qlcnic_get_phys_port_id(struct net_device *netdev,
464 struct netdev_phys_port_id *ppid) 464 struct netdev_phys_item_id *ppid)
465{ 465{
466 struct qlcnic_adapter *adapter = netdev_priv(netdev); 466 struct qlcnic_adapter *adapter = netdev_priv(netdev);
467 struct qlcnic_hardware_context *ahw = adapter->ahw; 467 struct qlcnic_hardware_context *ahw = adapter->ahw;
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 589929cf4700..4bd41d72559d 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -754,13 +754,13 @@ struct netdev_fcoe_hbainfo {
754}; 754};
755#endif 755#endif
756 756
757#define MAX_PHYS_PORT_ID_LEN 32 757#define MAX_PHYS_ITEM_ID_LEN 32
758 758
759/* This structure holds a unique identifier to identify the 759/* This structure holds a unique identifier to identify some
760 * physical port used by a netdevice. 760 * physical item (port for example) used by a netdevice.
761 */ 761 */
762struct netdev_phys_port_id { 762struct netdev_phys_item_id {
763 unsigned char id[MAX_PHYS_PORT_ID_LEN]; 763 unsigned char id[MAX_PHYS_ITEM_ID_LEN];
764 unsigned char id_len; 764 unsigned char id_len;
765}; 765};
766 766
@@ -976,7 +976,7 @@ typedef u16 (*select_queue_fallback_t)(struct net_device *dev,
976 * USB_CDC_NOTIFY_NETWORK_CONNECTION) should NOT implement this function. 976 * USB_CDC_NOTIFY_NETWORK_CONNECTION) should NOT implement this function.
977 * 977 *
978 * int (*ndo_get_phys_port_id)(struct net_device *dev, 978 * int (*ndo_get_phys_port_id)(struct net_device *dev,
979 * struct netdev_phys_port_id *ppid); 979 * struct netdev_phys_item_id *ppid);
980 * Called to get ID of physical port of this device. If driver does 980 * Called to get ID of physical port of this device. If driver does
981 * not implement this, it is assumed that the hw is not able to have 981 * not implement this, it is assumed that the hw is not able to have
982 * multiple net devices on single physical port. 982 * multiple net devices on single physical port.
@@ -1152,7 +1152,7 @@ struct net_device_ops {
1152 int (*ndo_change_carrier)(struct net_device *dev, 1152 int (*ndo_change_carrier)(struct net_device *dev,
1153 bool new_carrier); 1153 bool new_carrier);
1154 int (*ndo_get_phys_port_id)(struct net_device *dev, 1154 int (*ndo_get_phys_port_id)(struct net_device *dev,
1155 struct netdev_phys_port_id *ppid); 1155 struct netdev_phys_item_id *ppid);
1156 void (*ndo_add_vxlan_port)(struct net_device *dev, 1156 void (*ndo_add_vxlan_port)(struct net_device *dev,
1157 sa_family_t sa_family, 1157 sa_family_t sa_family,
1158 __be16 port); 1158 __be16 port);
@@ -2870,7 +2870,7 @@ void dev_set_group(struct net_device *, int);
2870int dev_set_mac_address(struct net_device *, struct sockaddr *); 2870int dev_set_mac_address(struct net_device *, struct sockaddr *);
2871int dev_change_carrier(struct net_device *, bool new_carrier); 2871int dev_change_carrier(struct net_device *, bool new_carrier);
2872int dev_get_phys_port_id(struct net_device *dev, 2872int dev_get_phys_port_id(struct net_device *dev,
2873 struct netdev_phys_port_id *ppid); 2873 struct netdev_phys_item_id *ppid);
2874struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev); 2874struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev);
2875struct sk_buff *dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev, 2875struct sk_buff *dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
2876 struct netdev_queue *txq, int *ret); 2876 struct netdev_queue *txq, int *ret);
diff --git a/net/core/dev.c b/net/core/dev.c
index ac4836241a96..0814a560e5f3 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -5846,7 +5846,7 @@ EXPORT_SYMBOL(dev_change_carrier);
5846 * Get device physical port ID 5846 * Get device physical port ID
5847 */ 5847 */
5848int dev_get_phys_port_id(struct net_device *dev, 5848int dev_get_phys_port_id(struct net_device *dev,
5849 struct netdev_phys_port_id *ppid) 5849 struct netdev_phys_item_id *ppid)
5850{ 5850{
5851 const struct net_device_ops *ops = dev->netdev_ops; 5851 const struct net_device_ops *ops = dev->netdev_ops;
5852 5852
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c
index 1a24602cd54e..26c46f4726c5 100644
--- a/net/core/net-sysfs.c
+++ b/net/core/net-sysfs.c
@@ -404,7 +404,7 @@ static ssize_t phys_port_id_show(struct device *dev,
404 return restart_syscall(); 404 return restart_syscall();
405 405
406 if (dev_isalive(netdev)) { 406 if (dev_isalive(netdev)) {
407 struct netdev_phys_port_id ppid; 407 struct netdev_phys_item_id ppid;
408 408
409 ret = dev_get_phys_port_id(netdev, &ppid); 409 ret = dev_get_phys_port_id(netdev, &ppid);
410 if (!ret) 410 if (!ret)
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 1a233c1c8ab4..0640f1fbe9dd 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -869,7 +869,7 @@ static noinline size_t if_nlmsg_size(const struct net_device *dev,
869 + rtnl_port_size(dev, ext_filter_mask) /* IFLA_VF_PORTS + IFLA_PORT_SELF */ 869 + rtnl_port_size(dev, ext_filter_mask) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
870 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */ 870 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
871 + rtnl_link_get_af_size(dev) /* IFLA_AF_SPEC */ 871 + rtnl_link_get_af_size(dev) /* IFLA_AF_SPEC */
872 + nla_total_size(MAX_PHYS_PORT_ID_LEN); /* IFLA_PHYS_PORT_ID */ 872 + nla_total_size(MAX_PHYS_ITEM_ID_LEN); /* IFLA_PHYS_PORT_ID */
873} 873}
874 874
875static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev) 875static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
@@ -953,7 +953,7 @@ static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev,
953static int rtnl_phys_port_id_fill(struct sk_buff *skb, struct net_device *dev) 953static int rtnl_phys_port_id_fill(struct sk_buff *skb, struct net_device *dev)
954{ 954{
955 int err; 955 int err;
956 struct netdev_phys_port_id ppid; 956 struct netdev_phys_item_id ppid;
957 957
958 err = dev_get_phys_port_id(dev, &ppid); 958 err = dev_get_phys_port_id(dev, &ppid);
959 if (err) { 959 if (err) {
@@ -1197,7 +1197,7 @@ static const struct nla_policy ifla_policy[IFLA_MAX+1] = {
1197 [IFLA_PROMISCUITY] = { .type = NLA_U32 }, 1197 [IFLA_PROMISCUITY] = { .type = NLA_U32 },
1198 [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 }, 1198 [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 },
1199 [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 }, 1199 [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 },
1200 [IFLA_PHYS_PORT_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_PORT_ID_LEN }, 1200 [IFLA_PHYS_PORT_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_ITEM_ID_LEN },
1201 [IFLA_CARRIER_CHANGES] = { .type = NLA_U32 }, /* ignored */ 1201 [IFLA_CARRIER_CHANGES] = { .type = NLA_U32 }, /* ignored */
1202}; 1202};
1203 1203