qed: Cleanup DCBx unnecessary parameters.
Signed-off-by: Sudarsana Reddy Kalluru <Sudarsana.Kalluru@cavium.com> Signed-off-by: Yuval Mintz <Yuval.Mintz@cavium.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9b5381637e
commit
270837b399
|
@ -271,8 +271,8 @@ qed_dcbx_process_tlv(struct qed_hwfn *p_hwfn,
|
|||
struct dcbx_app_priority_entry *p_tbl,
|
||||
u32 pri_tc_tbl, int count, u8 dcbx_version)
|
||||
{
|
||||
u8 tc, priority_map;
|
||||
enum dcbx_protocol_type type;
|
||||
u8 tc, priority_map;
|
||||
bool enable, ieee;
|
||||
u16 protocol_id;
|
||||
int priority;
|
||||
|
@ -620,8 +620,7 @@ qed_dcbx_get_common_params(struct qed_hwfn *p_hwfn,
|
|||
}
|
||||
|
||||
static void
|
||||
qed_dcbx_get_local_params(struct qed_hwfn *p_hwfn,
|
||||
struct qed_ptt *p_ptt, struct qed_dcbx_get *params)
|
||||
qed_dcbx_get_local_params(struct qed_hwfn *p_hwfn, struct qed_dcbx_get *params)
|
||||
{
|
||||
struct dcbx_features *p_feat;
|
||||
|
||||
|
@ -633,8 +632,7 @@ qed_dcbx_get_local_params(struct qed_hwfn *p_hwfn,
|
|||
}
|
||||
|
||||
static void
|
||||
qed_dcbx_get_remote_params(struct qed_hwfn *p_hwfn,
|
||||
struct qed_ptt *p_ptt, struct qed_dcbx_get *params)
|
||||
qed_dcbx_get_remote_params(struct qed_hwfn *p_hwfn, struct qed_dcbx_get *params)
|
||||
{
|
||||
struct dcbx_features *p_feat;
|
||||
|
||||
|
@ -647,7 +645,6 @@ qed_dcbx_get_remote_params(struct qed_hwfn *p_hwfn,
|
|||
|
||||
static void
|
||||
qed_dcbx_get_operational_params(struct qed_hwfn *p_hwfn,
|
||||
struct qed_ptt *p_ptt,
|
||||
struct qed_dcbx_get *params)
|
||||
{
|
||||
struct qed_dcbx_operational_params *p_operational;
|
||||
|
@ -697,7 +694,6 @@ qed_dcbx_get_operational_params(struct qed_hwfn *p_hwfn,
|
|||
|
||||
static void
|
||||
qed_dcbx_get_local_lldp_params(struct qed_hwfn *p_hwfn,
|
||||
struct qed_ptt *p_ptt,
|
||||
struct qed_dcbx_get *params)
|
||||
{
|
||||
struct lldp_config_params_s *p_local;
|
||||
|
@ -712,7 +708,6 @@ qed_dcbx_get_local_lldp_params(struct qed_hwfn *p_hwfn,
|
|||
|
||||
static void
|
||||
qed_dcbx_get_remote_lldp_params(struct qed_hwfn *p_hwfn,
|
||||
struct qed_ptt *p_ptt,
|
||||
struct qed_dcbx_get *params)
|
||||
{
|
||||
struct lldp_status_params_s *p_remote;
|
||||
|
@ -726,25 +721,24 @@ qed_dcbx_get_remote_lldp_params(struct qed_hwfn *p_hwfn,
|
|||
}
|
||||
|
||||
static int
|
||||
qed_dcbx_get_params(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
|
||||
struct qed_dcbx_get *p_params,
|
||||
qed_dcbx_get_params(struct qed_hwfn *p_hwfn, struct qed_dcbx_get *p_params,
|
||||
enum qed_mib_read_type type)
|
||||
{
|
||||
switch (type) {
|
||||
case QED_DCBX_REMOTE_MIB:
|
||||
qed_dcbx_get_remote_params(p_hwfn, p_ptt, p_params);
|
||||
qed_dcbx_get_remote_params(p_hwfn, p_params);
|
||||
break;
|
||||
case QED_DCBX_LOCAL_MIB:
|
||||
qed_dcbx_get_local_params(p_hwfn, p_ptt, p_params);
|
||||
qed_dcbx_get_local_params(p_hwfn, p_params);
|
||||
break;
|
||||
case QED_DCBX_OPERATIONAL_MIB:
|
||||
qed_dcbx_get_operational_params(p_hwfn, p_ptt, p_params);
|
||||
qed_dcbx_get_operational_params(p_hwfn, p_params);
|
||||
break;
|
||||
case QED_DCBX_REMOTE_LLDP_MIB:
|
||||
qed_dcbx_get_remote_lldp_params(p_hwfn, p_ptt, p_params);
|
||||
qed_dcbx_get_remote_lldp_params(p_hwfn, p_params);
|
||||
break;
|
||||
case QED_DCBX_LOCAL_LLDP_MIB:
|
||||
qed_dcbx_get_local_lldp_params(p_hwfn, p_ptt, p_params);
|
||||
qed_dcbx_get_local_lldp_params(p_hwfn, p_params);
|
||||
break;
|
||||
default:
|
||||
DP_ERR(p_hwfn, "MIB read err, unknown mib type %d\n", type);
|
||||
|
@ -902,7 +896,8 @@ qed_dcbx_mib_update_event(struct qed_hwfn *p_hwfn,
|
|||
qed_sp_pf_update(p_hwfn);
|
||||
}
|
||||
}
|
||||
qed_dcbx_get_params(p_hwfn, p_ptt, &p_hwfn->p_dcbx_info->get, type);
|
||||
|
||||
qed_dcbx_get_params(p_hwfn, &p_hwfn->p_dcbx_info->get, type);
|
||||
qed_dcbx_aen(p_hwfn, type);
|
||||
|
||||
return rc;
|
||||
|
@ -910,17 +905,14 @@ qed_dcbx_mib_update_event(struct qed_hwfn *p_hwfn,
|
|||
|
||||
int qed_dcbx_info_alloc(struct qed_hwfn *p_hwfn)
|
||||
{
|
||||
int rc = 0;
|
||||
|
||||
p_hwfn->p_dcbx_info = kzalloc(sizeof(*p_hwfn->p_dcbx_info), GFP_KERNEL);
|
||||
if (!p_hwfn->p_dcbx_info)
|
||||
rc = -ENOMEM;
|
||||
return -ENOMEM;
|
||||
|
||||
return rc;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void qed_dcbx_info_free(struct qed_hwfn *p_hwfn,
|
||||
struct qed_dcbx_info *p_dcbx_info)
|
||||
void qed_dcbx_info_free(struct qed_hwfn *p_hwfn)
|
||||
{
|
||||
kfree(p_hwfn->p_dcbx_info);
|
||||
}
|
||||
|
@ -992,7 +984,7 @@ static int qed_dcbx_query_params(struct qed_hwfn *p_hwfn,
|
|||
if (rc)
|
||||
goto out;
|
||||
|
||||
rc = qed_dcbx_get_params(p_hwfn, p_ptt, p_get, type);
|
||||
rc = qed_dcbx_get_params(p_hwfn, p_get, type);
|
||||
|
||||
out:
|
||||
qed_ptt_release(p_hwfn, p_ptt);
|
||||
|
|
|
@ -119,7 +119,7 @@ qed_dcbx_mib_update_event(struct qed_hwfn *,
|
|||
struct qed_ptt *, enum qed_mib_read_type);
|
||||
|
||||
int qed_dcbx_info_alloc(struct qed_hwfn *p_hwfn);
|
||||
void qed_dcbx_info_free(struct qed_hwfn *, struct qed_dcbx_info *);
|
||||
void qed_dcbx_info_free(struct qed_hwfn *p_hwfn);
|
||||
void qed_dcbx_set_pf_update_params(struct qed_dcbx_results *p_src,
|
||||
struct pf_update_ramrod_data *p_dest);
|
||||
|
||||
|
|
|
@ -183,7 +183,7 @@ void qed_resc_free(struct qed_dev *cdev)
|
|||
}
|
||||
qed_iov_free(p_hwfn);
|
||||
qed_dmae_info_free(p_hwfn);
|
||||
qed_dcbx_info_free(p_hwfn, p_hwfn->p_dcbx_info);
|
||||
qed_dcbx_info_free(p_hwfn);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue