netfilter: ebtables: use __u8 instead of uint8_t in uapi header
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 23 Sep 2019 22:40:06 +0000 (07:40 +0900)
committerPablo Neira Ayuso <pablo@netfilter.org>
Wed, 25 Sep 2019 09:00:46 +0000 (11:00 +0200)
commit20ff1cb506727f81acba59acab8a0f37e1a13e43
treecf299640b52ff599cc2fa36afa24ac6e7127fd9c
parentacab713177377d9e0889c46bac7ff0cfb9a90c4d
netfilter: ebtables: use __u8 instead of uint8_t in uapi header

When CONFIG_UAPI_HEADER_TEST=y, exported headers are compile-tested to
make sure they can be included from user-space.

Currently, linux/netfilter_bridge/ebtables.h is excluded from the test
coverage. To make it join the compile-test, we need to fix the build
errors attached below.

For a case like this, we decided to use __u{8,16,32,64} variable types
in this discussion:

  https://lkml.org/lkml/2019/6/5/18

Build log:

  CC      usr/include/linux/netfilter_bridge/ebtables.h.s
In file included from <command-line>:32:0:
./usr/include/linux/netfilter_bridge/ebtables.h:126:4: error: unknown type name ‘uint8_t’
    uint8_t revision;
    ^~~~~~~
./usr/include/linux/netfilter_bridge/ebtables.h:139:4: error: unknown type name ‘uint8_t’
    uint8_t revision;
    ^~~~~~~
./usr/include/linux/netfilter_bridge/ebtables.h:152:4: error: unknown type name ‘uint8_t’
    uint8_t revision;
    ^~~~~~~

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
include/uapi/linux/netfilter_bridge/ebtables.h
usr/include/Makefile