X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fshared%2Fmissing.h;h=023c680ec66dfb97ccb016b2122a5de3507b51c6;hp=3ff1a21720835e3cb7993606afa458d07cdbea4a;hb=04d180c8a8641c209eb19d1210b5d4e36f0ae05b;hpb=630a4d9ea7298fb4a494662cbb4871069143ff56 diff --git a/src/shared/missing.h b/src/shared/missing.h index 3ff1a2172..023c680ec 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -167,6 +167,10 @@ static inline int pivot_root(const char *new_root, const char *put_old) { # define __NR_fanotify_mark 5296 # endif # endif +# ifndef __NR_memfd_create +# warning "__NR_memfd_create not yet defined for MIPS" +# define __NR_memfd_create 0xffffffff +# endif #else # ifndef __NR_fanotify_init # define __NR_fanotify_init 338 @@ -554,6 +558,10 @@ static inline int setns(int fd, int nstype) { #define IPV6_UNICAST_IF 76 #endif +#ifndef IFF_MULTI_QUEUE +#define IFF_MULTI_QUEUE 0x100 +#endif + #ifndef IFF_LOWER_UP #define IFF_LOWER_UP 0x10000 #endif @@ -589,3 +597,7 @@ static inline int setns(int fd, int nstype) { #ifndef NET_NAME_RENAMED # define NET_NAME_RENAMED 4 #endif + +#ifndef BPF_XOR +# define BPF_XOR 0xa0 +#endif