linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: David Howells <dhowells@redhat.com>
Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 42/45] C++: Hide C++ keywords
Date: Mon, 2 Apr 2018 15:32:37 +0800	[thread overview]
Message-ID: <201804021429.3PiH80KW%fengguang.wu@intel.com> (raw)
In-Reply-To: <152261546762.30503.9337930260734861018.stgit@warthog.procyon.org.uk>

[-- Attachment #1: Type: text/plain, Size: 17438 bytes --]

Hi David,

I love your patch! Yet something to improve:

[auto build test ERROR on v4.16-rc7]
[cannot apply to linus/master tip/x86/core tip/locking/core v4.16 next-20180329]
[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/David-Howells/C-Convert-the-kernel-to-C/20180402-120344
config: x86_64-randconfig-a0-04021307 (attached as .config)
compiler: gcc-7 (Debian 7.3.0-1) 7.3.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

                                                ^~~~~~~~~~
   arch/x86/include/asm/atomic64_64.h:230:41: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline void atomic64_and(long i, atomic64_t *v)
                                            ^~~~~~~~~~
   arch/x86/include/asm/atomic64_64.h:238:47: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline long atomic64_fetch_and(long i, atomic64_t *v)
                                                  ^~~~~~~~~~
   arch/x86/include/asm/atomic64_64.h:247:40: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline void atomic64_or(long i, atomic64_t *v)
                                           ^~~~~~~~~~
   arch/x86/include/asm/atomic64_64.h:255:46: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline long atomic64_fetch_or(long i, atomic64_t *v)
                                                 ^~~~~~~~~~
   arch/x86/include/asm/atomic64_64.h:264:41: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline void atomic64_xor(long i, atomic64_t *v)
                                            ^~~~~~~~~~
   arch/x86/include/asm/atomic64_64.h:272:47: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline long atomic64_fetch_xor(long i, atomic64_t *v)
                                                  ^~~~~~~~~~
   In file included from include/linux/debug_locks.h:6:0,
                    from include/linux/lockdep.h:28,
                    from include/linux/spinlock_types.h:18,
                    from kernel/bounds.c:14:
   include/linux/atomic.h:531:37: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline int atomic_add_unless(atomic_t *v, int a, int u)
                                        ^~~~~~~~
   include/linux/atomic.h:548:41: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline void atomic_andnot(int i, atomic_t *v)
                                            ^~~~~~~~
   include/linux/atomic.h:553:46: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline int atomic_fetch_andnot(int i, atomic_t *v)
                                                 ^~~~~~~~
   include/linux/atomic.h:558:54: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline int atomic_fetch_andnot_relaxed(int i, atomic_t *v)
                                                         ^~~~~~~~
   include/linux/atomic.h:563:54: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline int atomic_fetch_andnot_acquire(int i, atomic_t *v)
                                                         ^~~~~~~~
   include/linux/atomic.h:568:54: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline int atomic_fetch_andnot_release(int i, atomic_t *v)
                                                         ^~~~~~~~
   include/linux/atomic.h:587:44: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline int atomic_inc_not_zero_hint(atomic_t *v, int hint)
                                               ^~~~~~~~
   include/linux/atomic.h:607:46: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline int atomic_inc_unless_negative(atomic_t *p)
                                                 ^~~~~~~~
   include/linux/atomic.h:620:46: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline int atomic_dec_unless_positive(atomic_t *p)
                                                 ^~~~~~~~
   include/linux/atomic.h:640:42: error: expected declaration specifiers or '...' before 'atomic_t'
    static inline int atomic_dec_if_positive(atomic_t *v)
                                             ^~~~~~~~
   include/linux/atomic.h:1052:49: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline void atomic64_andnot(long long i, atomic64_t *v)
                                                    ^~~~~~~~~~
   include/linux/atomic.h:1057:60: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline long long atomic64_fetch_andnot(long long i, atomic64_t *v)
                                                               ^~~~~~~~~~
   include/linux/atomic.h:1062:68: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline long long atomic64_fetch_andnot_relaxed(long long i, atomic64_t *v)
                                                                       ^~~~~~~~~~
   include/linux/atomic.h:1067:68: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline long long atomic64_fetch_andnot_acquire(long long i, atomic64_t *v)
                                                                       ^~~~~~~~~~
   include/linux/atomic.h:1072:68: error: expected declaration specifiers or '...' before 'atomic64_t'
    static inline long long atomic64_fetch_andnot_release(long long i, atomic64_t *v)
                                                                       ^~~~~~~~~~
   In file included from include/linux/atomic.h:1080:0,
                    from include/linux/debug_locks.h:6,
                    from include/linux/lockdep.h:28,
                    from include/linux/spinlock_types.h:18,
                    from kernel/bounds.c:14:
   include/asm-generic/atomic-long.h:24:20: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'atomic_long_t'
    typedef atomic64_t atomic_long_t;
                       ^~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:39:47: error: unknown type name 'atomic_long_t'
    static inline long atomic_long_read##mo(const atomic_long_t *l)  \
                                                  ^
   include/asm-generic/atomic-long.h:45:1: note: in expansion of macro 'ATOMIC_LONG_READ_OP'
    ATOMIC_LONG_READ_OP()
    ^~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:40:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
    {         \
    ^
   include/asm-generic/atomic-long.h:45:1: note: in expansion of macro 'ATOMIC_LONG_READ_OP'
    ATOMIC_LONG_READ_OP()
    ^~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:39:47: error: unknown type name 'atomic_long_t'
    static inline long atomic_long_read##mo(const atomic_long_t *l)  \
                                                  ^
   include/asm-generic/atomic-long.h:46:1: note: in expansion of macro 'ATOMIC_LONG_READ_OP'
    ATOMIC_LONG_READ_OP(_acquire)
    ^~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:40:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
    {         \
    ^
   include/asm-generic/atomic-long.h:46:1: note: in expansion of macro 'ATOMIC_LONG_READ_OP'
    ATOMIC_LONG_READ_OP(_acquire)
    ^~~~~~~~~~~~~~~~~~~
>> include/asm-generic/atomic-long.h:51:40: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    static inline void atomic_long_set##mo(atomic_long_t *l, long i) \
                                           ^
   include/asm-generic/atomic-long.h:57:1: note: in expansion of macro 'ATOMIC_LONG_SET_OP'
    ATOMIC_LONG_SET_OP()
    ^~~~~~~~~~~~~~~~~~
>> include/asm-generic/atomic-long.h:51:40: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    static inline void atomic_long_set##mo(atomic_long_t *l, long i) \
                                           ^
   include/asm-generic/atomic-long.h:58:1: note: in expansion of macro 'ATOMIC_LONG_SET_OP'
    ATOMIC_LONG_SET_OP(_release)
    ^~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:64:39: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    atomic_long_##op##_return##mo(long i, atomic_long_t *l)   \
                                          ^
   include/asm-generic/atomic-long.h:70:1: note: in expansion of macro 'ATOMIC_LONG_ADD_SUB_OP'
    ATOMIC_LONG_ADD_SUB_OP(add,)
    ^~~~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:64:39: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    atomic_long_##op##_return##mo(long i, atomic_long_t *l)   \
                                          ^
   include/asm-generic/atomic-long.h:71:1: note: in expansion of macro 'ATOMIC_LONG_ADD_SUB_OP'
    ATOMIC_LONG_ADD_SUB_OP(add, _relaxed)
    ^~~~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:64:39: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    atomic_long_##op##_return##mo(long i, atomic_long_t *l)   \
                                          ^
   include/asm-generic/atomic-long.h:72:1: note: in expansion of macro 'ATOMIC_LONG_ADD_SUB_OP'
    ATOMIC_LONG_ADD_SUB_OP(add, _acquire)
    ^~~~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:64:39: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    atomic_long_##op##_return##mo(long i, atomic_long_t *l)   \
                                          ^
   include/asm-generic/atomic-long.h:73:1: note: in expansion of macro 'ATOMIC_LONG_ADD_SUB_OP'
    ATOMIC_LONG_ADD_SUB_OP(add, _release)
    ^~~~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:64:39: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    atomic_long_##op##_return##mo(long i, atomic_long_t *l)   \
                                          ^
   include/asm-generic/atomic-long.h:74:1: note: in expansion of macro 'ATOMIC_LONG_ADD_SUB_OP'
    ATOMIC_LONG_ADD_SUB_OP(sub,)
    ^~~~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:64:39: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    atomic_long_##op##_return##mo(long i, atomic_long_t *l)   \
                                          ^
   include/asm-generic/atomic-long.h:75:1: note: in expansion of macro 'ATOMIC_LONG_ADD_SUB_OP'
    ATOMIC_LONG_ADD_SUB_OP(sub, _relaxed)
    ^~~~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:64:39: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    atomic_long_##op##_return##mo(long i, atomic_long_t *l)   \
                                          ^
   include/asm-generic/atomic-long.h:76:1: note: in expansion of macro 'ATOMIC_LONG_ADD_SUB_OP'
    ATOMIC_LONG_ADD_SUB_OP(sub, _acquire)
    ^~~~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:64:39: error: unknown type name 'atomic_long_t'; did you mean 'atomic_fetch_inc'?
    atomic_long_##op##_return##mo(long i, atomic_long_t *l)   \
                                          ^
   include/asm-generic/atomic-long.h:77:1: note: in expansion of macro 'ATOMIC_LONG_ADD_SUB_OP'
    ATOMIC_LONG_ADD_SUB_OP(sub, _release)
    ^~~~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:102:45: error: unknown type name 'atomic_long_t'; did you mean 'atomic_long_xchg'?
    static __always_inline void atomic_long_inc(atomic_long_t *l)
                                                ^~~~~~~~~~~~~
                                                atomic_long_xchg
   include/asm-generic/atomic-long.h:109:45: error: unknown type name 'atomic_long_t'; did you mean 'atomic_long_xchg'?
    static __always_inline void atomic_long_dec(atomic_long_t *l)
                                                ^~~~~~~~~~~~~
                                                atomic_long_xchg
   include/asm-generic/atomic-long.h:118:36: error: unknown type name 'atomic_long_t'; did you mean 'atomic_long_xchg'?
    atomic_long_fetch_##op##mo(long i, atomic_long_t *l)   \
                                       ^
   include/asm-generic/atomic-long.h:125:1: note: in expansion of macro 'ATOMIC_LONG_FETCH_OP'
    ATOMIC_LONG_FETCH_OP(add, )
    ^~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:118:36: error: unknown type name 'atomic_long_t'; did you mean 'atomic_long_xchg'?
    atomic_long_fetch_##op##mo(long i, atomic_long_t *l)   \
                                       ^
   include/asm-generic/atomic-long.h:126:1: note: in expansion of macro 'ATOMIC_LONG_FETCH_OP'
    ATOMIC_LONG_FETCH_OP(add, _relaxed)
    ^~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:118:36: error: unknown type name 'atomic_long_t'; did you mean 'atomic_long_xchg'?
    atomic_long_fetch_##op##mo(long i, atomic_long_t *l)   \
                                       ^
   include/asm-generic/atomic-long.h:127:1: note: in expansion of macro 'ATOMIC_LONG_FETCH_OP'
    ATOMIC_LONG_FETCH_OP(add, _acquire)
    ^~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:118:36: error: unknown type name 'atomic_long_t'; did you mean 'atomic_long_xchg'?
    atomic_long_fetch_##op##mo(long i, atomic_long_t *l)   \
                                       ^
   include/asm-generic/atomic-long.h:128:1: note: in expansion of macro 'ATOMIC_LONG_FETCH_OP'
    ATOMIC_LONG_FETCH_OP(add, _release)
    ^~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:118:36: error: unknown type name 'atomic_long_t'; did you mean 'atomic_long_xchg'?
    atomic_long_fetch_##op##mo(long i, atomic_long_t *l)   \
                                       ^
   include/asm-generic/atomic-long.h:129:1: note: in expansion of macro 'ATOMIC_LONG_FETCH_OP'
    ATOMIC_LONG_FETCH_OP(sub, )
    ^~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:118:36: error: unknown type name 'atomic_long_t'; did you mean 'atomic_long_xchg'?
    atomic_long_fetch_##op##mo(long i, atomic_long_t *l)   \
                                       ^
   include/asm-generic/atomic-long.h:130:1: note: in expansion of macro 'ATOMIC_LONG_FETCH_OP'
    ATOMIC_LONG_FETCH_OP(sub, _relaxed)
    ^~~~~~~~~~~~~~~~~~~~
   include/asm-generic/atomic-long.h:118:36: error: unknown type name 'atomic_long_t'; did you mean 'atomic_long_xchg'?
    atomic_long_fetch_##op##mo(long i, atomic_long_t *l)   \
                                       ^

vim +51 include/asm-generic/atomic-long.h

586b610e4 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  37  
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  38  #define ATOMIC_LONG_READ_OP(mo)						\
e3e72ab80 include/asm-generic/atomic-long.h Peter Zijlstra    2015-09-18  39  static inline long atomic_long_read##mo(const atomic_long_t *l)		\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  40  {									\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  41  	ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;		\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  42  									\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  43  	return (long)ATOMIC_LONG_PFX(_read##mo)(v);			\
d3cb48714 include/asm-generic/atomic.h      Christoph Lameter 2006-01-06  44  }
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  45  ATOMIC_LONG_READ_OP()
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06 @46  ATOMIC_LONG_READ_OP(_acquire)
d3cb48714 include/asm-generic/atomic.h      Christoph Lameter 2006-01-06  47  
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  48  #undef ATOMIC_LONG_READ_OP
d3cb48714 include/asm-generic/atomic.h      Christoph Lameter 2006-01-06  49  
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  50  #define ATOMIC_LONG_SET_OP(mo)						\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06 @51  static inline void atomic_long_set##mo(atomic_long_t *l, long i)	\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  52  {									\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  53  	ATOMIC_LONG_PFX(_t) *v = (ATOMIC_LONG_PFX(_t) *)l;		\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  54  									\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  55  	ATOMIC_LONG_PFX(_set##mo)(v, i);				\
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  56  }
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  57  ATOMIC_LONG_SET_OP()
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  58  ATOMIC_LONG_SET_OP(_release)
6d79ef2d3 include/asm-generic/atomic-long.h Will Deacon       2015-08-06  59  

:::::: The code at line 51 was first introduced by commit
:::::: 6d79ef2d30ee5af7315535d1e7bf6fce0008f815 locking, asm-generic: Add _{relaxed|acquire|release}() variants for 'atomic_long_t'

:::::: TO: Will Deacon <will.deacon@arm.com>
:::::: CC: Ingo Molnar <mingo@kernel.org>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 27675 bytes --]

  reply	other threads:[~2018-04-02  7:32 UTC|newest]

Thread overview: 98+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-01 20:40 [PATCH 00/45] C++: Convert the kernel to C++ David Howells
2018-04-01 20:40 ` [PATCH 01/45] Use UINT_MAX, not -1, to represent an invalid UID, GID or project ID David Howells
2018-04-01 23:04   ` Randy Dunlap
2018-04-01 20:40 ` [PATCH 02/45] Fix exception_enter() return value David Howells
2018-04-05  1:34   ` Sasha Levin
2018-04-01 20:40 ` [PATCH 03/45] Fix loop var in be32_to_cpu_array() and cpu_to_be32_array() David Howells
2018-04-01 20:40 ` [PATCH 04/45] Fix use of ACPI_COMPANION_SET() David Howells
2018-04-01 20:40 ` [PATCH 05/45] C++: Set compilation as C++ for .c files David Howells
2018-04-02  6:10   ` kbuild test robot
2018-04-02  6:10   ` kbuild test robot
2018-04-03 13:16   ` David Howells
2018-04-03 13:27     ` Fengguang Wu
2018-04-10  8:44     ` David Howells
2018-04-10  9:45       ` Fengguang Wu
2018-04-11  1:13         ` Li, Philip
2018-04-01 20:40 ` [PATCH 06/45] C++: Do some basic C++ type definition David Howells
2018-04-02  4:37   ` kbuild test robot
2018-04-02  6:10   ` kbuild test robot
2018-04-01 20:40 ` [PATCH 07/45] C++: Define a header with some C++ type traits for type checking David Howells
2018-04-02  7:00   ` kbuild test robot
2018-04-01 20:41 ` [PATCH 08/45] C++: Implement abs() as an inline template function David Howells
2018-04-01 20:41 ` [PATCH 09/45] C++: x86: Fix the x86 syscall table production for C++ David Howells
2018-04-02  7:57   ` kbuild test robot
2018-04-01 20:41 ` [PATCH 10/45] C++: x86: Turn xchg(), xadd() & co. into inline template functions David Howells
2018-04-01 20:41 ` [PATCH 11/45] C++: x86: Turn cmpxchg() " David Howells
2018-04-01 20:41 ` [PATCH 12/45] C++: x86: Turn cmpxchg_double() " David Howells
2018-04-01 20:41 ` [PATCH 13/45] C++: x86: Turn cmpxchg64() " David Howells
2018-04-01 20:41 ` [PATCH 14/45] C++: x86: Turn put_user(), get_user() " David Howells
2018-04-01 20:41 ` [PATCH 15/45] C++: Need space between string and symbol David Howells
2018-04-01 20:41 ` [PATCH 16/45] C++: Disable VERIFY_OCTAL_PERMISSIONS() for the moment David Howells
2018-04-01 20:41 ` [PATCH 17/45] C++: Turn READ_ONCE(), WRITE_ONCE() & co. into inline template functions David Howells
2018-04-01 20:42 ` [PATCH 18/45] C++: Turn RCU accessors " David Howells
2018-04-01 20:42 ` [PATCH 19/45] C++: Turn ktime_add/sub_ns() " David Howells
2018-04-01 20:42 ` [PATCH 20/45] C++: init/main: Constify pointers David Howells
2018-04-01 20:42 ` [PATCH 21/45] C++: Set the type of atomic64_t to s64 David Howells
2018-04-01 20:42 ` [PATCH 22/45] C++: Define apic_intr_mode after the enum definition, not before David Howells
2018-04-01 20:42 ` [PATCH 23/45] C++: Don't do "extern asmlinkage" David Howells
2018-04-01 20:42 ` [PATCH 24/45] C++: Fix BUILD_BUG_ON_ZERO() David Howells
2018-04-01 20:42 ` [PATCH 25/45] C++: Fix void variables David Howells
2018-04-01 20:42 ` [PATCH 26/45] C++: Can't have variable/member names the same as typedef names David Howells
2018-04-01 20:42 ` [PATCH 27/45] C++: Disable __same_type() for the moment David Howells
2018-04-01 20:43 ` [PATCH 28/45] C++: Move ctx_state enum out of struct context_tracking David Howells
2018-04-01 20:43 ` [PATCH 29/45] C++: Move the print_line_t enum before first use David Howells
2018-04-01 20:43 ` [PATCH 30/45] C++: Include linux/hrtimer.h from linux/timer.h David Howells
2018-04-01 20:43 ` [PATCH 31/45] C++: Avoid using 'compl' and 'and' as names David Howells
2018-04-02  7:57   ` kbuild test robot
2018-04-01 20:43 ` [PATCH 32/45] C++: __to_fd() needs to reduce the size of v for struct fd::flags David Howells
2018-04-01 20:43 ` [PATCH 33/45] C++: Move irqchip_irq_state enum David Howells
2018-04-01 20:43 ` [PATCH 34/45] C++: Fix up use of LIST_POISON* David Howells
2018-04-01 20:43 ` [PATCH 35/45] C++: Fix static_branch_likely/unlikely() David Howells
2018-04-01 20:43 ` [PATCH 36/45] C++: Fix kernfs_type() int->enum David Howells
2018-04-01 20:43 ` [PATCH 37/45] C++: Fix page_zonenum() int->enum David Howells
2018-04-01 20:44 ` [PATCH 38/45] C++: mutex_trylock_recursive_enum() int->enum David Howells
2018-04-01 23:10   ` Randy Dunlap
2018-04-01 20:44 ` [PATCH 39/45] C++: Fix spinlock initialisation David Howells
2018-04-01 20:44 ` [PATCH 40/45] C++: Fix sema_init() David Howells
2018-04-01 20:44 ` [PATCH 41/45] C++: Cast in bitops David Howells
2018-04-02  6:10   ` kbuild test robot
2018-04-01 20:44 ` [PATCH 42/45] C++: Hide C++ keywords David Howells
2018-04-02  7:32   ` kbuild test robot [this message]
2018-04-01 20:44 ` [PATCH 43/45] C++: Don't need to declare struct pgd_t after typedef David Howells
2018-04-01 20:44 ` [PATCH 44/45] C++: Can't declare unsized-array in struct cgroup David Howells
2018-04-01 20:44 ` [PATCH 45/45] C++: Move initcall_level_names[] to __initdata section David Howells
2018-04-01 22:20 ` [PATCH 00/45] C++: Convert the kernel to C++ Randy Dunlap
2018-04-02  9:28 ` Vegard Nossum
2024-01-09 19:57 ` H. Peter Anvin
2024-01-09 23:29   ` Andrew Pinski
2024-01-11 21:01     ` Arsen Arsenović
2024-01-10  0:29   ` David Howells
2024-01-10  8:58   ` Jiri Slaby
2024-01-10 13:04     ` Neal Gompa
2024-01-10 15:52       ` Jason Gunthorpe
2024-01-10 16:05         ` H. Peter Anvin
2024-01-10 16:25         ` Neal Gompa
2024-01-10 17:57           ` Theodore Ts'o
2024-01-12  2:23             ` H. Peter Anvin
2024-01-12  2:52               ` Kent Overstreet
2024-01-11  8:06       ` Andreas Herrmann
2024-01-10 15:01   ` Michael de Lang
     [not found]     ` <69fe1c0c-b5ec-4031-b719-d9c14742929c@metux.net>
2024-01-12 21:58       ` Michael de Lang
2024-01-11  4:24   ` John Hubbard
2024-01-11  5:09     ` Dave Airlie
2024-01-11 15:24       ` Eric Curtin
2024-01-11 21:37       ` David Laight
2024-01-11 12:39   ` Chris Down
2024-01-11 19:40     ` David Laight
2024-01-24  6:53       ` Jiri Slaby
2024-01-12  2:54   ` H. Peter Anvin
2024-01-12  8:52   ` David Howells
2024-01-12 23:53     ` H. Peter Anvin
2024-01-09 23:40 ` David Howells
2024-01-10  7:13   ` Alexey Dobriyan
2024-01-12  2:25   ` H. Peter Anvin
2024-01-12  2:40   ` H. Peter Anvin
2024-01-11 23:09 ` Arsen Arsenović
2024-01-12  9:20 ` David Howells
2024-01-12 21:35   ` Arsen Arsenović
2024-01-12 23:41   ` David Howells

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201804021429.3PiH80KW%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=dhowells@redhat.com \
    --cc=kbuild-all@01.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).