i40e: Fix NULL pointer dereference in i40e_dbg_dump_desc
commit 23ec111bf3549aae37140330c31a16abfc172421 upstream.
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: 02e9c29081
("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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
347cc9b4d9
commit
e5b7fb2198
@ -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);
|
dev_info(&pf->pdev->dev, "vsi %d not found\n", vsi_seid);
|
||||||
return;
|
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)) {
|
if (type == RING_TYPE_XDP && !i40e_enabled_xdp_vsi(vsi)) {
|
||||||
dev_info(&pf->pdev->dev, "XDP not enabled on VSI %d\n", vsi_seid);
|
dev_info(&pf->pdev->dev, "XDP not enabled on VSI %d\n", vsi_seid);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user