diff options
author | Tong Zhang <ztong0001@gmail.com> | 2021-02-15 02:43:08 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-02-15 23:36:27 +0300 |
commit | d0a0bbe7b0a181c58bd22d6942146cfa3ab9e49a (patch) | |
tree | ddcbbfc6090784341324c4cb60ba618360f95208 /include/linux/atmdev.h | |
parent | 57baf8cc70ea4cf5503c9d42f31f6a86d7f5ff1a (diff) | |
download | linux-d0a0bbe7b0a181c58bd22d6942146cfa3ab9e49a.tar.xz |
atm: idt77252: fix build broken on amd64
idt77252 is broken and wont load on amd64 systems
modprobe idt77252 shows the following
idt77252_init: skb->cb is too small (48 < 56)
Add packed attribute to struct idt77252_skb_prv and struct atm_skb_data
so that the total size can be <= sizeof(skb->cb)
Also convert runtime size check to buildtime size check in
idt77252_init()
Signed-off-by: Tong Zhang <ztong0001@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/atmdev.h')
-rw-r--r-- | include/linux/atmdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/atmdev.h b/include/linux/atmdev.h index d7493016cd46..60cd25c0461b 100644 --- a/include/linux/atmdev.h +++ b/include/linux/atmdev.h @@ -207,7 +207,7 @@ struct atm_skb_data { struct atm_vcc *vcc; /* ATM VCC */ unsigned long atm_options; /* ATM layer options */ unsigned int acct_truesize; /* truesize accounted to vcc */ -}; +} __packed; #define VCC_HTABLE_SIZE 32 |