]> www.infradead.org Git - users/dwmw2/linux.git/commit
eth: fbnic: fix s390 build.
authorPaolo Abeni <pabeni@redhat.com>
Wed, 17 Jul 2024 11:25:06 +0000 (13:25 +0200)
committerJakub Kicinski <kuba@kernel.org>
Wed, 17 Jul 2024 13:25:14 +0000 (06:25 -0700)
commit0e03c643dc9389e61fa484562dae58c8d6e96d63
tree7d3a885f399172fe676354311a5ed3e41dd82f08
parent51835949dda3783d4639cfa74ce13a3c9829de00
eth: fbnic: fix s390 build.

Building the fbnic nn s390, yield a build bug:

In function ‘fbnic_config_drop_mode_rcq’,
    inlined from ‘fbnic_enable’ at drivers/net/ethernet/meta/fbnic/fbnic_txrx.c:1836:4:
././include/linux/compiler_types.h:510:45: error: call to ‘__compiletime_assert_919’ declared with attribute error: FIELD_PREP: value too large for the field

The relevant mask is 9 bits wide, and the related value is the cacheline
aligned size of struct skb_shared_info.

On s390 the cacheline size is 256 bytes, and skb_shared_info minimum
size on 64 bits system is 320 bytes.

Avoid building the driver for such arch.

Reported-by: kernel test robot <lkp@intel.com>
Link: https://lore.kernel.org/202407170432.dYJQOWVz-lkp@intel.com/
Reported-by: Nathan Chancellor <nathan@kernel.org>
Fixes: 0cb4c0a13723 ("eth: fbnic: Implement Rx queue alloc/start/stop/free")
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Link: https://patch.msgid.link/5dfefd3e90e77828f38e68854b171a5b8b8c6ede.1721215379.git.pabeni@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/meta/Kconfig