i40e: Fix NULL pointer dereference in i40e_dbg_dump_desc
When trying to dump VFs VSI RX/TX descriptors using debugfs there was a crash due to NULL pointer dereference in i40e_dbg_dump_desc. Added a check to i40e_dbg_dump_desc that checks if VSI type is correct for dumping RX/TX descriptors. Fixes: 02e9c290814c ("i40e: debugfs interface") Signed-off-by: Sylwester Dziedziuch <sylwesterx.dziedziuch@intel.com> Signed-off-by: Norbert Zulinski <norbertx.zulinski@intel.com> Signed-off-by: Mateusz Palczewski <mateusz.palczewski@intel.com> Tested-by: Gurucharan G <gurucharanx.g@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
This commit is contained in:
parent
8aa55ab422
commit
23ec111bf3
@ -553,6 +553,14 @@ static void i40e_dbg_dump_desc(int cnt, int vsi_seid, int ring_id, int desc_n,
|
||||
dev_info(&pf->pdev->dev, "vsi %d not found\n", vsi_seid);
|
||||
return;
|
||||
}
|
||||
if (vsi->type != I40E_VSI_MAIN &&
|
||||
vsi->type != I40E_VSI_FDIR &&
|
||||
vsi->type != I40E_VSI_VMDQ2) {
|
||||
dev_info(&pf->pdev->dev,
|
||||
"vsi %d type %d descriptor rings not available\n",
|
||||
vsi_seid, vsi->type);
|
||||
return;
|
||||
}
|
||||
if (type == RING_TYPE_XDP && !i40e_enabled_xdp_vsi(vsi)) {
|
||||
dev_info(&pf->pdev->dev, "XDP not enabled on VSI %d\n", vsi_seid);
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user