mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
i40e: remove unused variable and memory allocation
This was a vestige of early driver development that no longer has any actual use. Change-ID: I95b5b19c4bbfaff8759197af671ebaf716cb6ab5 Signed-off-by: Shannon Nelson <shannon.nelson@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
505682cd7b
commit
3146ce3d4d
@ -297,7 +297,6 @@ struct i40e_pf {
|
|||||||
u16 pf_seid;
|
u16 pf_seid;
|
||||||
u16 main_vsi_seid;
|
u16 main_vsi_seid;
|
||||||
u16 mac_seid;
|
u16 mac_seid;
|
||||||
struct i40e_aqc_get_switch_config_data *sw_config;
|
|
||||||
struct kobject *switch_kobj;
|
struct kobject *switch_kobj;
|
||||||
#ifdef CONFIG_DEBUG_FS
|
#ifdef CONFIG_DEBUG_FS
|
||||||
struct dentry *i40e_dbg_pf;
|
struct dentry *i40e_dbg_pf;
|
||||||
|
@ -7990,15 +7990,6 @@ int i40e_fetch_switch_configuration(struct i40e_pf *pf, bool printconfig)
|
|||||||
"header: %d reported %d total\n",
|
"header: %d reported %d total\n",
|
||||||
num_reported, num_total);
|
num_reported, num_total);
|
||||||
|
|
||||||
if (num_reported) {
|
|
||||||
int sz = sizeof(*sw_config) * num_reported;
|
|
||||||
|
|
||||||
kfree(pf->sw_config);
|
|
||||||
pf->sw_config = kzalloc(sz, GFP_KERNEL);
|
|
||||||
if (pf->sw_config)
|
|
||||||
memcpy(pf->sw_config, sw_config, sz);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < num_reported; i++) {
|
for (i = 0; i < num_reported; i++) {
|
||||||
struct i40e_aqc_switch_config_element_resp *ele =
|
struct i40e_aqc_switch_config_element_resp *ele =
|
||||||
&sw_config->element[i];
|
&sw_config->element[i];
|
||||||
@ -8718,7 +8709,6 @@ static void i40e_remove(struct pci_dev *pdev)
|
|||||||
|
|
||||||
kfree(pf->qp_pile);
|
kfree(pf->qp_pile);
|
||||||
kfree(pf->irq_pile);
|
kfree(pf->irq_pile);
|
||||||
kfree(pf->sw_config);
|
|
||||||
kfree(pf->vsi);
|
kfree(pf->vsi);
|
||||||
|
|
||||||
/* force a PF reset to clean anything leftover */
|
/* force a PF reset to clean anything leftover */
|
||||||
|
Loading…
Reference in New Issue
Block a user