diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-03-11 12:39:48 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-03-11 15:13:05 -0400 |
commit | 2fb71043e8894ca78258f7458a2db2eb3a142a22 (patch) | |
tree | 41cdc8036587cf389d102b47784ff681fc0733c6 | |
parent | 1a787fc5ba18ac767e635c58d06a0b46876184e3 (diff) |
tools headers uapi: Update linux/in.h copy
To get the changes in:
4effd28c1245 ("bridge: join all-snoopers multicast address")
That do not generate any changes in tools/ use of this file.
Silences this tools/perf build warning:
Warning: Kernel ABI header at 'tools/include/uapi/linux/in.h' differs from latest version at 'include/uapi/linux/in.h'
diff -u tools/include/uapi/linux/in.h include/uapi/linux/in.h
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Linus Lüssing <linus.luessing@c0d3.blue>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-ifpl634035266ho6wxuqgo81@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/include/uapi/linux/in.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/include/uapi/linux/in.h b/tools/include/uapi/linux/in.h index a55cb8b10165..e7ad9d350a28 100644 --- a/tools/include/uapi/linux/in.h +++ b/tools/include/uapi/linux/in.h | |||
@@ -292,10 +292,11 @@ struct sockaddr_in { | |||
292 | #define IN_LOOPBACK(a) ((((long int) (a)) & 0xff000000) == 0x7f000000) | 292 | #define IN_LOOPBACK(a) ((((long int) (a)) & 0xff000000) == 0x7f000000) |
293 | 293 | ||
294 | /* Defines for Multicast INADDR */ | 294 | /* Defines for Multicast INADDR */ |
295 | #define INADDR_UNSPEC_GROUP 0xe0000000U /* 224.0.0.0 */ | 295 | #define INADDR_UNSPEC_GROUP 0xe0000000U /* 224.0.0.0 */ |
296 | #define INADDR_ALLHOSTS_GROUP 0xe0000001U /* 224.0.0.1 */ | 296 | #define INADDR_ALLHOSTS_GROUP 0xe0000001U /* 224.0.0.1 */ |
297 | #define INADDR_ALLRTRS_GROUP 0xe0000002U /* 224.0.0.2 */ | 297 | #define INADDR_ALLRTRS_GROUP 0xe0000002U /* 224.0.0.2 */ |
298 | #define INADDR_MAX_LOCAL_GROUP 0xe00000ffU /* 224.0.0.255 */ | 298 | #define INADDR_ALLSNOOPERS_GROUP 0xe000006aU /* 224.0.0.106 */ |
299 | #define INADDR_MAX_LOCAL_GROUP 0xe00000ffU /* 224.0.0.255 */ | ||
299 | #endif | 300 | #endif |
300 | 301 | ||
301 | /* <asm/byteorder.h> contains the htonl type stuff.. */ | 302 | /* <asm/byteorder.h> contains the htonl type stuff.. */ |