mirror of https://gitee.com/openkylin/linux.git
i40e: Add zero-initialization of AQ command structures
Zero-initialize AQ command data structures to comply with API specifications. Fixes:2f4b411a3d
("i40e: Enable cloud filters via tc-flower") Fixes:f4492db16d
("i40e: Add NPAR BW get and set functions") Signed-off-by: Andrzej Sawuła <andrzej.sawula@intel.com> Signed-off-by: Mateusz Palczewski <mateusz.palczewski@intel.com> Reviewed-by: Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com> Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com> Tested-by: Tony Brelinski <tonyx.brelinski@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
This commit is contained in:
parent
58cab46c62
commit
d2c788f739
|
@ -7667,6 +7667,8 @@ int i40e_add_del_cloud_filter(struct i40e_vsi *vsi,
|
|||
if (filter->flags >= ARRAY_SIZE(flag_table))
|
||||
return I40E_ERR_CONFIG;
|
||||
|
||||
memset(&cld_filter, 0, sizeof(cld_filter));
|
||||
|
||||
/* copy element needed to add cloud filter from filter */
|
||||
i40e_set_cld_element(filter, &cld_filter);
|
||||
|
||||
|
@ -7734,6 +7736,8 @@ int i40e_add_del_cloud_filter_big_buf(struct i40e_vsi *vsi,
|
|||
!ipv6_addr_any(&filter->ip.v6.src_ip6))
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
memset(&cld_filter, 0, sizeof(cld_filter));
|
||||
|
||||
/* copy element needed to add cloud filter from filter */
|
||||
i40e_set_cld_element(filter, &cld_filter.element);
|
||||
|
||||
|
@ -11709,6 +11713,8 @@ i40e_status i40e_set_partition_bw_setting(struct i40e_pf *pf)
|
|||
struct i40e_aqc_configure_partition_bw_data bw_data;
|
||||
i40e_status status;
|
||||
|
||||
memset(&bw_data, 0, sizeof(bw_data));
|
||||
|
||||
/* Set the valid bit for this PF */
|
||||
bw_data.pf_valid_bits = cpu_to_le16(BIT(pf->hw.pf_id));
|
||||
bw_data.max_bw[pf->hw.pf_id] = pf->max_bw & I40E_ALT_BW_VALUE_MASK;
|
||||
|
|
Loading…
Reference in New Issue