]> git.baikalelectronics.ru Git - kernel.git/commit
iwlwifi: dvm: use struct_size over open coded arithmetic
authorMinghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
Thu, 10 Feb 2022 06:09:26 +0000 (06:09 +0000)
committerLuca Coelho <luciano.coelho@intel.com>
Fri, 18 Feb 2022 08:40:55 +0000 (10:40 +0200)
commitfcdaff4a858e57aebddf0128084dc1d3f6b36889
tree65072de56e71f7d68499f15d2be09ff4f9224107
parent028da0490072f69cf73cd7450c68e06639e22823
iwlwifi: dvm: use struct_size over open coded arithmetic

Replace zero-length array with flexible-array member and make use
of the struct_size() helper in kmalloc(). For example:

struct iwl_wipan_noa_data {
    ...
    u8 data[];
};

Make use of the struct_size() helper instead of an open-coded version
in order to avoid any potential type mistakes.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
Link: https://lore.kernel.org/r/20220210060926.1608378-1-chi.minghao@zte.com.cn
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/dvm/rx.c