You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[NEIGHBOUR]: Use ALIGN() macro.
Rather than opencoding the mask, it looks better to use ALIGN() macro from kernel.h. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
1e38bb3a38
commit
d924424aae
@@ -101,7 +101,7 @@ struct neighbour
|
||||
__u8 dead;
|
||||
atomic_t probes;
|
||||
rwlock_t lock;
|
||||
unsigned char ha[(MAX_ADDR_LEN+sizeof(unsigned long)-1)&~(sizeof(unsigned long)-1)];
|
||||
unsigned char ha[ALIGN(MAX_ADDR_LEN, sizeof(unsigned long))];
|
||||
struct hh_cache *hh;
|
||||
atomic_t refcnt;
|
||||
int (*output)(struct sk_buff *skb);
|
||||
|
||||
Reference in New Issue
Block a user