Re: [PATCH 11/11] UAPI: Check headers build for C++ [ver #2]

2018-09-14 Thread Arnd Bergmann
On Thu, Sep 6, 2018 at 11:21 AM David Howells wrote: > + > +typedef __s8 int8_t; > +typedef __s16 int16_t; > +typedef __s32 int32_t; > +typedef __s64 int64_t; > +typedef __u8 uint8_t; > +typedef __u16

Re: [PATCH 11/11] UAPI: Check headers build for C++ [ver #2]

2018-09-10 Thread kbuild test robot
Hi David, I love your patch! Yet something to improve: [auto build test ERROR on linus/master] [also build test ERROR on v4.19-rc3 next-20180910] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/

Re: [PATCH 11/11] UAPI: Check headers build for C++ [ver #2]

2018-09-10 Thread kbuild test robot
Hi David, I love your patch! Yet something to improve: [auto build test ERROR on linus/master] [also build test ERROR on v4.19-rc3 next-20180910] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/

[PATCH 11/11] UAPI: Check headers build for C++ [ver #2]

2018-09-06 Thread David Howells
Check that all the headers can be included from one file and built for C++, thereby catching the use of C++ reserved words and bits of unimplemented C++ in the UAPI headers. Note that certain headers are excluded from the build, including: (1) Any header ending in "_32.h", "_64.h" or "_x32.h" as

[PATCH 11/11] UAPI: Check headers build for C++

2018-09-05 Thread David Howells
Check that all the headers can be included from one file and built for C++, thereby catching the use of C++ reserved words and bits of unimplemented C++ in the UAPI headers. Note that certain headers are excluded from the build, including: (1) Any header ending in "_32.h", "_64.h" or "_x32.h" as