mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
samples: seccomp: Use __BYTE_ORDER__
Use the compiler-defined __BYTE_ORDER__ instead of the libc-defined __BYTE_ORDER for consistency. Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/bpf/20211026010831.748682-5-iii@linux.ibm.com
This commit is contained in:
committed by
Andrii Nakryiko
parent
06fca841fb
commit
14e6cac771
@@ -62,9 +62,9 @@ void seccomp_bpf_print(struct sock_filter *filter, size_t count);
|
|||||||
#define EXPAND(...) __VA_ARGS__
|
#define EXPAND(...) __VA_ARGS__
|
||||||
|
|
||||||
/* Ensure that we load the logically correct offset. */
|
/* Ensure that we load the logically correct offset. */
|
||||||
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
||||||
#define LO_ARG(idx) offsetof(struct seccomp_data, args[(idx)])
|
#define LO_ARG(idx) offsetof(struct seccomp_data, args[(idx)])
|
||||||
#elif __BYTE_ORDER == __BIG_ENDIAN
|
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||||
#define LO_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) + sizeof(__u32)
|
#define LO_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) + sizeof(__u32)
|
||||||
#else
|
#else
|
||||||
#error "Unknown endianness"
|
#error "Unknown endianness"
|
||||||
@@ -85,10 +85,10 @@ void seccomp_bpf_print(struct sock_filter *filter, size_t count);
|
|||||||
#elif __BITS_PER_LONG == 64
|
#elif __BITS_PER_LONG == 64
|
||||||
|
|
||||||
/* Ensure that we load the logically correct offset. */
|
/* Ensure that we load the logically correct offset. */
|
||||||
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
||||||
#define ENDIAN(_lo, _hi) _lo, _hi
|
#define ENDIAN(_lo, _hi) _lo, _hi
|
||||||
#define HI_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) + sizeof(__u32)
|
#define HI_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) + sizeof(__u32)
|
||||||
#elif __BYTE_ORDER == __BIG_ENDIAN
|
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||||
#define ENDIAN(_lo, _hi) _hi, _lo
|
#define ENDIAN(_lo, _hi) _hi, _lo
|
||||||
#define HI_ARG(idx) offsetof(struct seccomp_data, args[(idx)])
|
#define HI_ARG(idx) offsetof(struct seccomp_data, args[(idx)])
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user