mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-04 12:54:37 +08:00
ice: Fix possible NULL pointer de-reference
A recent update to smatch is causing it to report the error "we previously assumed 'm_entry->vsi_list_info' could be null". Fix that. Signed-off-by: Bruce Allan <bruce.w.allan@intel.com> Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
d337f2afb7
commit
f25dad19ba
@ -1247,6 +1247,9 @@ ice_add_update_vsi_list(struct ice_hw *hw,
|
||||
u16 vsi_handle = new_fltr->vsi_handle;
|
||||
enum ice_adminq_opc opcode;
|
||||
|
||||
if (!m_entry->vsi_list_info)
|
||||
return ICE_ERR_CFG;
|
||||
|
||||
/* A rule already exists with the new VSI being added */
|
||||
if (test_bit(vsi_handle, m_entry->vsi_list_info->vsi_map))
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user