linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Alexey Dobriyan <adobriyan@gmail.com>, akpm@linux-foundation.org
Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org,
	linux-arch@vger.kernel.org, masahiroy@kernel.org,
	Alexey Dobriyan <adobriyan@gmail.com>,
	Jeff Dike <jdike@addtoit.com>,
	Richard Weinberger <richard@nod.at>,
	Anton Ivanov <anton.ivanov@cambridgegreys.com>,
	linux-um@lists.infradead.org
Subject: Re: [PATCH 1/3] isystem: trim/fixup stdarg.h and other headers
Date: Mon, 2 Aug 2021 08:21:41 +0800	[thread overview]
Message-ID: <202108020819.PM7pKAdj-lkp@intel.com> (raw)
In-Reply-To: <20210801201336.2224111-1-adobriyan@gmail.com>

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

Hi Alexey,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on powerpc/next]
[also build test ERROR on linuxtv-media/master linus/master v5.14-rc3 next-20210730]
[cannot apply to uml/linux-next]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/Alexey-Dobriyan/isystem-trim-fixup-stdarg-h-and-other-headers/20210802-041553
base:   https://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git next
config: arm-allyesconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 10.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://github.com/0day-ci/linux/commit/f3863b25ccfb7c85602695bb13517c7f4e75cd23
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Alexey-Dobriyan/isystem-trim-fixup-stdarg-h-and-other-headers/20210802-041553
        git checkout f3863b25ccfb7c85602695bb13517c7f4e75cd23
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross O=build_dir ARCH=arm SHELL=/bin/bash

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

Note: the linux-review/Alexey-Dobriyan/isystem-trim-fixup-stdarg-h-and-other-headers/20210802-041553 HEAD 68fed7fc2569ffbc882f0a36ecb4095d953de63c builds fine.
      It only hurts bisectibility.

All errors (new ones prefixed by >>):

   In file included from crypto/aegis128-neon-inner.c:18:
>> include/linux/types.h:37:24: error: conflicting types for 'uintptr_t'
      37 | typedef unsigned long  uintptr_t;
         |                        ^~~~~~~~~
   In file included from /opt/cross/gcc-10.3.0-nolibc/arm-linux-gnueabi/lib/gcc/arm-linux-gnueabi/10.3.0/include/stdint.h:11,
                    from /opt/cross/gcc-10.3.0-nolibc/arm-linux-gnueabi/lib/gcc/arm-linux-gnueabi/10.3.0/include/arm_fp16.h:34,
                    from /opt/cross/gcc-10.3.0-nolibc/arm-linux-gnueabi/lib/gcc/arm-linux-gnueabi/10.3.0/include/arm_neon.h:41,
                    from crypto/aegis128-neon-inner.c:11:
   /opt/cross/gcc-10.3.0-nolibc/arm-linux-gnueabi/lib/gcc/arm-linux-gnueabi/10.3.0/include/stdint-gcc.h:86:26: note: previous declaration of 'uintptr_t' was here
      86 | typedef __UINTPTR_TYPE__ uintptr_t;
         |                          ^~~~~~~~~
   crypto/aegis128-neon-inner.c:134:6: warning: no previous prototype for 'crypto_aegis128_init_neon' [-Wmissing-prototypes]
     134 | void crypto_aegis128_init_neon(void *state, const void *key, const void *iv)
         |      ^~~~~~~~~~~~~~~~~~~~~~~~~
   crypto/aegis128-neon-inner.c:164:6: warning: no previous prototype for 'crypto_aegis128_update_neon' [-Wmissing-prototypes]
     164 | void crypto_aegis128_update_neon(void *state, const void *msg)
         |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   crypto/aegis128-neon-inner.c:221:6: warning: no previous prototype for 'crypto_aegis128_encrypt_chunk_neon' [-Wmissing-prototypes]
     221 | void crypto_aegis128_encrypt_chunk_neon(void *state, void *dst, const void *src,
         |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   crypto/aegis128-neon-inner.c:270:6: warning: no previous prototype for 'crypto_aegis128_decrypt_chunk_neon' [-Wmissing-prototypes]
     270 | void crypto_aegis128_decrypt_chunk_neon(void *state, void *dst, const void *src,
         |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   crypto/aegis128-neon-inner.c:316:5: warning: no previous prototype for 'crypto_aegis128_final_neon' [-Wmissing-prototypes]
     316 | int crypto_aegis128_final_neon(void *state, void *tag_xor,
         |     ^~~~~~~~~~~~~~~~~~~~~~~~~~


vim +/uintptr_t +37 include/linux/types.h

^1da177e4c3f41 Linus Torvalds 2005-04-16  36  
142956af525002 Al Viro        2007-10-29 @37  typedef unsigned long		uintptr_t;
142956af525002 Al Viro        2007-10-29  38  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

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

      parent reply	other threads:[~2021-08-02  0:22 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-01 20:13 [PATCH 1/3] isystem: trim/fixup stdarg.h and other headers Alexey Dobriyan
2021-08-01 20:13 ` [PATCH 2/3] isystem: ship and use stdarg.h Alexey Dobriyan
2021-08-03  7:14   ` Ard Biesheuvel
2021-08-17  1:30     ` Masahiro Yamada
2021-08-06 13:00   ` Rafael J. Wysocki
2021-08-01 20:13 ` [PATCH 3/3] isystem: delete global -isystem compile option Alexey Dobriyan
2021-08-01 21:32   ` Segher Boessenkool
2021-08-02  6:42     ` Alexey Dobriyan
2021-08-02 16:47       ` Segher Boessenkool
2021-08-02 20:30         ` Alexey Dobriyan
2021-08-02 21:42           ` Segher Boessenkool
2021-08-02  1:30   ` kernel test robot
2021-08-02 18:18   ` Nathan Chancellor
2021-08-02 20:32     ` Alexey Dobriyan
2021-08-02 20:38       ` Nathan Chancellor
2021-08-02  0:21 ` kernel test robot [this message]

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=202108020819.PM7pKAdj-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=adobriyan@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=anton.ivanov@cambridgegreys.com \
    --cc=jdike@addtoit.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-um@lists.infradead.org \
    --cc=masahiroy@kernel.org \
    --cc=richard@nod.at \
    /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).