Commit 7e4c4330 authored by Bodong Wang's avatar Bodong Wang Committed by Saeed Mahameed

net/mlx5: Use consistent vport num argument type

Use u16 for vport number, which matches how hardware refers to this
argument throughout commands.

This patch doesn't change any functionality.
Signed-off-by: default avatarBodong Wang <bodong@mellanox.com>
Signed-off-by: default avatarEli Cohen <eli@mellanox.com>
Reviewed-by: default avatarOr Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: default avatarSaeed Mahameed <saeedm@mellanox.com>
parent 20bbf22a
...@@ -52,7 +52,7 @@ enum { ...@@ -52,7 +52,7 @@ enum {
struct vport_addr { struct vport_addr {
struct l2addr_node node; struct l2addr_node node;
u8 action; u8 action;
u32 vport; u16 vport;
struct mlx5_flow_handle *flow_rule; struct mlx5_flow_handle *flow_rule;
bool mpfs; /* UC MAC was added to MPFs */ bool mpfs; /* UC MAC was added to MPFs */
/* A flag indicating that mac was added due to mc promiscuous vport */ /* A flag indicating that mac was added due to mc promiscuous vport */
...@@ -115,7 +115,7 @@ static int modify_esw_vport_context_cmd(struct mlx5_core_dev *dev, u16 vport, ...@@ -115,7 +115,7 @@ static int modify_esw_vport_context_cmd(struct mlx5_core_dev *dev, u16 vport,
return mlx5_cmd_exec(dev, in, inlen, out, sizeof(out)); return mlx5_cmd_exec(dev, in, inlen, out, sizeof(out));
} }
static int modify_esw_vport_cvlan(struct mlx5_core_dev *dev, u32 vport, static int modify_esw_vport_cvlan(struct mlx5_core_dev *dev, u16 vport,
u16 vlan, u8 qos, u8 set_flags) u16 vlan, u8 qos, u8 set_flags)
{ {
u32 in[MLX5_ST_SZ_DW(modify_esw_vport_context_in)] = {0}; u32 in[MLX5_ST_SZ_DW(modify_esw_vport_context_in)] = {0};
...@@ -152,7 +152,7 @@ static int modify_esw_vport_cvlan(struct mlx5_core_dev *dev, u32 vport, ...@@ -152,7 +152,7 @@ static int modify_esw_vport_cvlan(struct mlx5_core_dev *dev, u32 vport,
/* E-Switch FDB */ /* E-Switch FDB */
static struct mlx5_flow_handle * static struct mlx5_flow_handle *
__esw_fdb_set_vport_rule(struct mlx5_eswitch *esw, u32 vport, bool rx_rule, __esw_fdb_set_vport_rule(struct mlx5_eswitch *esw, u16 vport, bool rx_rule,
u8 mac_c[ETH_ALEN], u8 mac_v[ETH_ALEN]) u8 mac_c[ETH_ALEN], u8 mac_v[ETH_ALEN])
{ {
int match_header = (is_zero_ether_addr(mac_c) ? 0 : int match_header = (is_zero_ether_addr(mac_c) ? 0 :
...@@ -215,7 +215,7 @@ __esw_fdb_set_vport_rule(struct mlx5_eswitch *esw, u32 vport, bool rx_rule, ...@@ -215,7 +215,7 @@ __esw_fdb_set_vport_rule(struct mlx5_eswitch *esw, u32 vport, bool rx_rule,
} }
static struct mlx5_flow_handle * static struct mlx5_flow_handle *
esw_fdb_set_vport_rule(struct mlx5_eswitch *esw, u8 mac[ETH_ALEN], u32 vport) esw_fdb_set_vport_rule(struct mlx5_eswitch *esw, u8 mac[ETH_ALEN], u16 vport)
{ {
u8 mac_c[ETH_ALEN]; u8 mac_c[ETH_ALEN];
...@@ -224,7 +224,7 @@ esw_fdb_set_vport_rule(struct mlx5_eswitch *esw, u8 mac[ETH_ALEN], u32 vport) ...@@ -224,7 +224,7 @@ esw_fdb_set_vport_rule(struct mlx5_eswitch *esw, u8 mac[ETH_ALEN], u32 vport)
} }
static struct mlx5_flow_handle * static struct mlx5_flow_handle *
esw_fdb_set_vport_allmulti_rule(struct mlx5_eswitch *esw, u32 vport) esw_fdb_set_vport_allmulti_rule(struct mlx5_eswitch *esw, u16 vport)
{ {
u8 mac_c[ETH_ALEN]; u8 mac_c[ETH_ALEN];
u8 mac_v[ETH_ALEN]; u8 mac_v[ETH_ALEN];
...@@ -237,7 +237,7 @@ esw_fdb_set_vport_allmulti_rule(struct mlx5_eswitch *esw, u32 vport) ...@@ -237,7 +237,7 @@ esw_fdb_set_vport_allmulti_rule(struct mlx5_eswitch *esw, u32 vport)
} }
static struct mlx5_flow_handle * static struct mlx5_flow_handle *
esw_fdb_set_vport_promisc_rule(struct mlx5_eswitch *esw, u32 vport) esw_fdb_set_vport_promisc_rule(struct mlx5_eswitch *esw, u16 vport)
{ {
u8 mac_c[ETH_ALEN]; u8 mac_c[ETH_ALEN];
u8 mac_v[ETH_ALEN]; u8 mac_v[ETH_ALEN];
...@@ -377,7 +377,7 @@ typedef int (*vport_addr_action)(struct mlx5_eswitch *esw, ...@@ -377,7 +377,7 @@ typedef int (*vport_addr_action)(struct mlx5_eswitch *esw,
static int esw_add_uc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr) static int esw_add_uc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr)
{ {
u8 *mac = vaddr->node.addr; u8 *mac = vaddr->node.addr;
u32 vport = vaddr->vport; u16 vport = vaddr->vport;
int err; int err;
/* Skip mlx5_mpfs_add_mac for PFs, /* Skip mlx5_mpfs_add_mac for PFs,
...@@ -409,7 +409,7 @@ static int esw_add_uc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr) ...@@ -409,7 +409,7 @@ static int esw_add_uc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr)
static int esw_del_uc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr) static int esw_del_uc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr)
{ {
u8 *mac = vaddr->node.addr; u8 *mac = vaddr->node.addr;
u32 vport = vaddr->vport; u16 vport = vaddr->vport;
int err = 0; int err = 0;
/* Skip mlx5_mpfs_del_mac for PFs, /* Skip mlx5_mpfs_del_mac for PFs,
...@@ -438,7 +438,7 @@ static void update_allmulti_vports(struct mlx5_eswitch *esw, ...@@ -438,7 +438,7 @@ static void update_allmulti_vports(struct mlx5_eswitch *esw,
struct esw_mc_addr *esw_mc) struct esw_mc_addr *esw_mc)
{ {
u8 *mac = vaddr->node.addr; u8 *mac = vaddr->node.addr;
u32 vport_idx = 0; u16 vport_idx = 0;
for (vport_idx = 0; vport_idx < esw->total_vports; vport_idx++) { for (vport_idx = 0; vport_idx < esw->total_vports; vport_idx++) {
struct mlx5_vport *vport = &esw->vports[vport_idx]; struct mlx5_vport *vport = &esw->vports[vport_idx];
...@@ -485,7 +485,7 @@ static int esw_add_mc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr) ...@@ -485,7 +485,7 @@ static int esw_add_mc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr)
struct hlist_head *hash = esw->mc_table; struct hlist_head *hash = esw->mc_table;
struct esw_mc_addr *esw_mc; struct esw_mc_addr *esw_mc;
u8 *mac = vaddr->node.addr; u8 *mac = vaddr->node.addr;
u32 vport = vaddr->vport; u16 vport = vaddr->vport;
if (!esw->fdb_table.legacy.fdb) if (!esw->fdb_table.legacy.fdb)
return 0; return 0;
...@@ -525,7 +525,7 @@ static int esw_del_mc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr) ...@@ -525,7 +525,7 @@ static int esw_del_mc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr)
struct hlist_head *hash = esw->mc_table; struct hlist_head *hash = esw->mc_table;
struct esw_mc_addr *esw_mc; struct esw_mc_addr *esw_mc;
u8 *mac = vaddr->node.addr; u8 *mac = vaddr->node.addr;
u32 vport = vaddr->vport; u16 vport = vaddr->vport;
if (!esw->fdb_table.legacy.fdb) if (!esw->fdb_table.legacy.fdb)
return 0; return 0;
...@@ -564,7 +564,7 @@ static int esw_del_mc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr) ...@@ -564,7 +564,7 @@ static int esw_del_mc_addr(struct mlx5_eswitch *esw, struct vport_addr *vaddr)
/* Apply vport UC/MC list to HW l2 table and FDB table */ /* Apply vport UC/MC list to HW l2 table and FDB table */
static void esw_apply_vport_addr_list(struct mlx5_eswitch *esw, static void esw_apply_vport_addr_list(struct mlx5_eswitch *esw,
u32 vport_num, int list_type) u16 vport_num, int list_type)
{ {
struct mlx5_vport *vport = &esw->vports[vport_num]; struct mlx5_vport *vport = &esw->vports[vport_num];
bool is_uc = list_type == MLX5_NVPRT_LIST_TYPE_UC; bool is_uc = list_type == MLX5_NVPRT_LIST_TYPE_UC;
...@@ -599,7 +599,7 @@ static void esw_apply_vport_addr_list(struct mlx5_eswitch *esw, ...@@ -599,7 +599,7 @@ static void esw_apply_vport_addr_list(struct mlx5_eswitch *esw,
/* Sync vport UC/MC list from vport context */ /* Sync vport UC/MC list from vport context */
static void esw_update_vport_addr_list(struct mlx5_eswitch *esw, static void esw_update_vport_addr_list(struct mlx5_eswitch *esw,
u32 vport_num, int list_type) u16 vport_num, int list_type)
{ {
struct mlx5_vport *vport = &esw->vports[vport_num]; struct mlx5_vport *vport = &esw->vports[vport_num];
bool is_uc = list_type == MLX5_NVPRT_LIST_TYPE_UC; bool is_uc = list_type == MLX5_NVPRT_LIST_TYPE_UC;
...@@ -686,7 +686,7 @@ static void esw_update_vport_addr_list(struct mlx5_eswitch *esw, ...@@ -686,7 +686,7 @@ static void esw_update_vport_addr_list(struct mlx5_eswitch *esw,
/* Sync vport UC/MC list from vport context /* Sync vport UC/MC list from vport context
* Must be called after esw_update_vport_addr_list * Must be called after esw_update_vport_addr_list
*/ */
static void esw_update_vport_mc_promisc(struct mlx5_eswitch *esw, u32 vport_num) static void esw_update_vport_mc_promisc(struct mlx5_eswitch *esw, u16 vport_num)
{ {
struct mlx5_vport *vport = &esw->vports[vport_num]; struct mlx5_vport *vport = &esw->vports[vport_num];
struct l2addr_node *node; struct l2addr_node *node;
...@@ -721,7 +721,7 @@ static void esw_update_vport_mc_promisc(struct mlx5_eswitch *esw, u32 vport_num) ...@@ -721,7 +721,7 @@ static void esw_update_vport_mc_promisc(struct mlx5_eswitch *esw, u32 vport_num)
} }
/* Apply vport rx mode to HW FDB table */ /* Apply vport rx mode to HW FDB table */
static void esw_apply_vport_rx_mode(struct mlx5_eswitch *esw, u32 vport_num, static void esw_apply_vport_rx_mode(struct mlx5_eswitch *esw, u16 vport_num,
bool promisc, bool mc_promisc) bool promisc, bool mc_promisc)
{ {
struct esw_mc_addr *allmulti_addr = &esw->mc_promisc; struct esw_mc_addr *allmulti_addr = &esw->mc_promisc;
...@@ -764,7 +764,7 @@ static void esw_apply_vport_rx_mode(struct mlx5_eswitch *esw, u32 vport_num, ...@@ -764,7 +764,7 @@ static void esw_apply_vport_rx_mode(struct mlx5_eswitch *esw, u32 vport_num,
} }
/* Sync vport rx mode from vport context */ /* Sync vport rx mode from vport context */
static void esw_update_vport_rx_mode(struct mlx5_eswitch *esw, u32 vport_num) static void esw_update_vport_rx_mode(struct mlx5_eswitch *esw, u16 vport_num)
{ {
struct mlx5_vport *vport = &esw->vports[vport_num]; struct mlx5_vport *vport = &esw->vports[vport_num];
int promisc_all = 0; int promisc_all = 0;
......
...@@ -255,7 +255,7 @@ int mlx5_modify_nic_vport_mtu(struct mlx5_core_dev *mdev, u16 mtu) ...@@ -255,7 +255,7 @@ int mlx5_modify_nic_vport_mtu(struct mlx5_core_dev *mdev, u16 mtu)
EXPORT_SYMBOL_GPL(mlx5_modify_nic_vport_mtu); EXPORT_SYMBOL_GPL(mlx5_modify_nic_vport_mtu);
int mlx5_query_nic_vport_mac_list(struct mlx5_core_dev *dev, int mlx5_query_nic_vport_mac_list(struct mlx5_core_dev *dev,
u32 vport, u16 vport,
enum mlx5_list_type list_type, enum mlx5_list_type list_type,
u8 addr_list[][ETH_ALEN], u8 addr_list[][ETH_ALEN],
int *list_size) int *list_size)
...@@ -373,7 +373,7 @@ int mlx5_modify_nic_vport_mac_list(struct mlx5_core_dev *dev, ...@@ -373,7 +373,7 @@ int mlx5_modify_nic_vport_mac_list(struct mlx5_core_dev *dev,
EXPORT_SYMBOL_GPL(mlx5_modify_nic_vport_mac_list); EXPORT_SYMBOL_GPL(mlx5_modify_nic_vport_mac_list);
int mlx5_query_nic_vport_vlans(struct mlx5_core_dev *dev, int mlx5_query_nic_vport_vlans(struct mlx5_core_dev *dev,
u32 vport, u16 vport,
u16 vlans[], u16 vlans[],
int *size) int *size)
{ {
...@@ -526,7 +526,7 @@ int mlx5_query_nic_vport_node_guid(struct mlx5_core_dev *mdev, u64 *node_guid) ...@@ -526,7 +526,7 @@ int mlx5_query_nic_vport_node_guid(struct mlx5_core_dev *mdev, u64 *node_guid)
EXPORT_SYMBOL_GPL(mlx5_query_nic_vport_node_guid); EXPORT_SYMBOL_GPL(mlx5_query_nic_vport_node_guid);
int mlx5_modify_nic_vport_node_guid(struct mlx5_core_dev *mdev, int mlx5_modify_nic_vport_node_guid(struct mlx5_core_dev *mdev,
u32 vport, u64 node_guid) u16 vport, u64 node_guid)
{ {
int inlen = MLX5_ST_SZ_BYTES(modify_nic_vport_context_in); int inlen = MLX5_ST_SZ_BYTES(modify_nic_vport_context_in);
void *nic_vport_context; void *nic_vport_context;
...@@ -827,7 +827,7 @@ int mlx5_query_hca_vport_node_guid(struct mlx5_core_dev *dev, ...@@ -827,7 +827,7 @@ int mlx5_query_hca_vport_node_guid(struct mlx5_core_dev *dev,
EXPORT_SYMBOL_GPL(mlx5_query_hca_vport_node_guid); EXPORT_SYMBOL_GPL(mlx5_query_hca_vport_node_guid);
int mlx5_query_nic_vport_promisc(struct mlx5_core_dev *mdev, int mlx5_query_nic_vport_promisc(struct mlx5_core_dev *mdev,
u32 vport, u16 vport,
int *promisc_uc, int *promisc_uc,
int *promisc_mc, int *promisc_mc,
int *promisc_all) int *promisc_all)
......
...@@ -60,7 +60,7 @@ int mlx5_query_nic_vport_system_image_guid(struct mlx5_core_dev *mdev, ...@@ -60,7 +60,7 @@ int mlx5_query_nic_vport_system_image_guid(struct mlx5_core_dev *mdev,
u64 *system_image_guid); u64 *system_image_guid);
int mlx5_query_nic_vport_node_guid(struct mlx5_core_dev *mdev, u64 *node_guid); int mlx5_query_nic_vport_node_guid(struct mlx5_core_dev *mdev, u64 *node_guid);
int mlx5_modify_nic_vport_node_guid(struct mlx5_core_dev *mdev, int mlx5_modify_nic_vport_node_guid(struct mlx5_core_dev *mdev,
u32 vport, u64 node_guid); u16 vport, u64 node_guid);
int mlx5_query_nic_vport_qkey_viol_cntr(struct mlx5_core_dev *mdev, int mlx5_query_nic_vport_qkey_viol_cntr(struct mlx5_core_dev *mdev,
u16 *qkey_viol_cntr); u16 *qkey_viol_cntr);
int mlx5_query_hca_vport_gid(struct mlx5_core_dev *dev, u8 other_vport, int mlx5_query_hca_vport_gid(struct mlx5_core_dev *dev, u8 other_vport,
...@@ -78,7 +78,7 @@ int mlx5_query_hca_vport_system_image_guid(struct mlx5_core_dev *dev, ...@@ -78,7 +78,7 @@ int mlx5_query_hca_vport_system_image_guid(struct mlx5_core_dev *dev,
int mlx5_query_hca_vport_node_guid(struct mlx5_core_dev *dev, int mlx5_query_hca_vport_node_guid(struct mlx5_core_dev *dev,
u64 *node_guid); u64 *node_guid);
int mlx5_query_nic_vport_mac_list(struct mlx5_core_dev *dev, int mlx5_query_nic_vport_mac_list(struct mlx5_core_dev *dev,
u32 vport, u16 vport,
enum mlx5_list_type list_type, enum mlx5_list_type list_type,
u8 addr_list[][ETH_ALEN], u8 addr_list[][ETH_ALEN],
int *list_size); int *list_size);
...@@ -87,7 +87,7 @@ int mlx5_modify_nic_vport_mac_list(struct mlx5_core_dev *dev, ...@@ -87,7 +87,7 @@ int mlx5_modify_nic_vport_mac_list(struct mlx5_core_dev *dev,
u8 addr_list[][ETH_ALEN], u8 addr_list[][ETH_ALEN],
int list_size); int list_size);
int mlx5_query_nic_vport_promisc(struct mlx5_core_dev *mdev, int mlx5_query_nic_vport_promisc(struct mlx5_core_dev *mdev,
u32 vport, u16 vport,
int *promisc_uc, int *promisc_uc,
int *promisc_mc, int *promisc_mc,
int *promisc_all); int *promisc_all);
...@@ -96,7 +96,7 @@ int mlx5_modify_nic_vport_promisc(struct mlx5_core_dev *mdev, ...@@ -96,7 +96,7 @@ int mlx5_modify_nic_vport_promisc(struct mlx5_core_dev *mdev,
int promisc_mc, int promisc_mc,
int promisc_all); int promisc_all);
int mlx5_query_nic_vport_vlans(struct mlx5_core_dev *dev, int mlx5_query_nic_vport_vlans(struct mlx5_core_dev *dev,
u32 vport, u16 vport,
u16 vlans[], u16 vlans[],
int *size); int *size);
int mlx5_modify_nic_vport_vlans(struct mlx5_core_dev *dev, int mlx5_modify_nic_vport_vlans(struct mlx5_core_dev *dev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment