summaryrefslogtreecommitdiff
path: root/drivers/net/ethernet/intel/igc/igc_diag.c
diff options
context:
space:
mode:
authorJacob Keller <jacob.e.keller@intel.com>2024-09-09 16:05:44 -0700
committerTony Nguyen <anthony.l.nguyen@intel.com>2024-11-13 10:30:21 -0800
commiteaa3e9876bbc2f260cf17167a194bd412e80f177 (patch)
treec19e08e87e2037006947024c1ebeb248a62392d3 /drivers/net/ethernet/intel/igc/igc_diag.c
parent8cca16be5efc6a481487e34a0fe542cc480fc720 (diff)
downloadlinux-eaa3e9876bbc2f260cf17167a194bd412e80f177.tar.gz
linux-eaa3e9876bbc2f260cf17167a194bd412e80f177.tar.bz2
linux-eaa3e9876bbc2f260cf17167a194bd412e80f177.zip
ice: use stack variable for virtchnl_supported_rxdids
The ice_vc_query_rxdid() function allocates memory to store the virtchnl_supported_rxdids structure used to communicate the bitmap of supported RXDIDs to a VF. This structure is only 8 bytes in size. The function must hold the allocated length on the stack as well as the pointer to the structure which itself is 8 bytes. Allocating this storage on the heap adds unnecessary overhead including a potential error path that must be handled in case kzalloc fails. Because this structure is so small, we're not saving stack space. Additionally, because we must ensure that we free the allocated memory, the return value from ice_vc_send_msg_to_vf() must also be saved in the stack ret variable. Depending on compiler optimization, this means allocating the 8-byte structure is requiring up to 16-bytes of stack memory! Simplify this function to keep the rxdid variable on the stack, saving memory and removing a potential failure exit path from this function. Signed-off-by: Jacob Keller <jacob.e.keller@intel.com> Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/igc/igc_diag.c')
0 files changed, 0 insertions, 0 deletions