TSG-14829 io_uring支持触发事件,适配mrzcpd的epoll_wait功能
This commit is contained in:
25
bpf/libendian.h
Normal file
25
bpf/libendian.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/* Copyright Authors of Cilium */
|
||||
|
||||
#ifndef __LIB_ENDIAN_H_
|
||||
#define __LIB_ENDIAN_H_
|
||||
|
||||
#if defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
||||
#define __bpf_ntohs(x) __builtin_bswap16(x)
|
||||
#define __bpf_htons(x) __builtin_bswap16(x)
|
||||
#define __bpf_ntohl(x) __builtin_bswap32(x)
|
||||
#define __bpf_htonl(x) __builtin_bswap32(x)
|
||||
#elif defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
#define __bpf_ntohs(x) (x)
|
||||
#define __bpf_htons(x) (x)
|
||||
#define __bpf_ntohl(x) (x)
|
||||
#define __bpf_htonl(x) (x)
|
||||
#else
|
||||
#error "Endianness detection needs to be set up for your compiler?!"
|
||||
#endif
|
||||
|
||||
#define bpf_htons(x) (__builtin_constant_p(x) ? __constant_htons(x) : __bpf_htons(x))
|
||||
#define bpf_ntohs(x) (__builtin_constant_p(x) ? __constant_ntohs(x) : __bpf_ntohs(x))
|
||||
#define bpf_htonl(x) (__builtin_constant_p(x) ? __constant_htonl(x) : __bpf_htonl(x))
|
||||
#define bpf_ntohl(x) (__builtin_constant_p(x) ? __constant_ntohl(x) : __bpf_ntohl(x))
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user