Home
last modified time | relevance | path

Searched refs:RTA_ALIGNTO (Results 1 – 3 of 3) sorted by relevance

/openbmc/phosphor-networkd/test/
H A Dtest_rtnetlink.cpp39 rtattr addr_hdr __attribute__((aligned((RTA_ALIGNTO)))); in TEST()
41 __attribute__((aligned((RTA_ALIGNTO)))) = {0, 1, 2, 3, 4, 5}; in TEST()
42 rtattr name_hdr __attribute__((aligned((RTA_ALIGNTO)))); in TEST()
43 char name[5] __attribute__((aligned((RTA_ALIGNTO)))) = "eth0"; in TEST()
44 rtattr mtu_hdr __attribute__((aligned((RTA_ALIGNTO)))); in TEST()
45 unsigned mtu __attribute__((aligned((RTA_ALIGNTO)))) = 50; in TEST()
/openbmc/linux/include/uapi/linux/
H A Drtnetlink.h218 #define RTA_ALIGNTO 4U macro
219 #define RTA_ALIGN(len) ( ((len)+RTA_ALIGNTO-1) & ~(RTA_ALIGNTO-1) )
/openbmc/linux/crypto/
H A Dauthenc.c65 BUILD_BUG_ON(sizeof(*param) % RTA_ALIGNTO); in crypto_authenc_extractkeys()