llvm.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Paolo Abeni <pabeni@redhat.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org
Subject: Re: [RFC PATCH 3/4] mptcp: never shrink offered window
Date: Tue, 12 Apr 2022 03:46:23 +0800	[thread overview]
Message-ID: <202204120334.WqEBThyK-lkp@intel.com> (raw)
In-Reply-To: <ab1fd2897c57a50d7580950dbe6fb58006c04253.1649672265.git.pabeni@redhat.com>

Hi Paolo,

[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on mptcp/export]
[also build test ERROR on linus/master v5.18-rc2 next-20220411]
[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/intel-lab-lkp/linux/commits/Paolo-Abeni/mptcp-improve-mptcp-level-window-tracking/20220411-184144
base:   https://github.com/multipath-tcp/mptcp_net-next.git export
config: arm-buildonly-randconfig-r006-20220411 (https://download.01.org/0day-ci/archive/20220412/202204120334.WqEBThyK-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project c6e83f560f06cdfe8aa47b248d8bdc58f947274b)
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
        # install arm cross compiling tool for clang build
        # apt-get install binutils-arm-linux-gnueabi
        # https://github.com/intel-lab-lkp/linux/commit/4cd25cbca4acc18a428817e9b1adc5ddd131422b
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Paolo-Abeni/mptcp-improve-mptcp-level-window-tracking/20220411-184144
        git checkout 4cd25cbca4acc18a428817e9b1adc5ddd131422b
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash net/

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

All errors (new ones prefixed by >>):

   net/mptcp/options.c:554:21: warning: parameter 'remaining' set but not used [-Wunused-but-set-parameter]
                                             unsigned int remaining,
                                                          ^
   In file included from net/mptcp/options.c:9:
   In file included from include/linux/kernel.h:22:
   In file included from include/linux/bitops.h:33:
   In file included from arch/arm/include/asm/bitops.h:243:
   In file included from include/asm-generic/bitops/lock.h:5:
   In file included from include/linux/atomic.h:7:
   In file included from arch/arm/include/asm/atomic.h:16:
>> arch/arm/include/asm/cmpxchg.h:254:1: error: instruction requires: !armv*m
   "1:     ldrexd          %1, %H1, [%3]\n"
   ^
   <inline asm>:1:5: note: instantiated into assembly here
           1:      ldrexd          r8, r9, [r11]
                   ^
   In file included from net/mptcp/options.c:9:
   In file included from include/linux/kernel.h:22:
   In file included from include/linux/bitops.h:33:
   In file included from arch/arm/include/asm/bitops.h:243:
   In file included from include/asm-generic/bitops/lock.h:5:
   In file included from include/linux/atomic.h:7:
   In file included from arch/arm/include/asm/atomic.h:16:
   arch/arm/include/asm/cmpxchg.h:258:2: error: instruction requires: !armv*m
   "       strexd          %0, %5, %H5, [%3]\n"
    ^
   <inline asm>:5:2: note: instantiated into assembly here
           strexd          r0, r4, r5, [r11]
           ^
   1 warning and 2 errors generated.

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for DRM_GEM_SHMEM_HELPER
   Depends on HAS_IOMEM && DRM && MMU
   Selected by
   - DRM_SSD130X && HAS_IOMEM && DRM


vim +254 arch/arm/include/asm/cmpxchg.h

e001bbae7147b1 Russell King 2015-05-26  243  
2523c67bb6962f Will Deacon  2013-10-09  244  static inline unsigned long long __cmpxchg64(unsigned long long *ptr,
2523c67bb6962f Will Deacon  2013-10-09  245  					     unsigned long long old,
2523c67bb6962f Will Deacon  2013-10-09  246  					     unsigned long long new)
2523c67bb6962f Will Deacon  2013-10-09  247  {
2523c67bb6962f Will Deacon  2013-10-09  248  	unsigned long long oldval;
2523c67bb6962f Will Deacon  2013-10-09  249  	unsigned long res;
2523c67bb6962f Will Deacon  2013-10-09  250  
c32ffce0f66e5d Will Deacon  2014-02-21  251  	prefetchw(ptr);
c32ffce0f66e5d Will Deacon  2014-02-21  252  
2523c67bb6962f Will Deacon  2013-10-09  253  	__asm__ __volatile__(
2523c67bb6962f Will Deacon  2013-10-09 @254  "1:	ldrexd		%1, %H1, [%3]\n"
2523c67bb6962f Will Deacon  2013-10-09  255  "	teq		%1, %4\n"
2523c67bb6962f Will Deacon  2013-10-09  256  "	teqeq		%H1, %H4\n"
2523c67bb6962f Will Deacon  2013-10-09  257  "	bne		2f\n"
2523c67bb6962f Will Deacon  2013-10-09  258  "	strexd		%0, %5, %H5, [%3]\n"
2523c67bb6962f Will Deacon  2013-10-09  259  "	teq		%0, #0\n"
2523c67bb6962f Will Deacon  2013-10-09  260  "	bne		1b\n"
2523c67bb6962f Will Deacon  2013-10-09  261  "2:"
2523c67bb6962f Will Deacon  2013-10-09  262  	: "=&r" (res), "=&r" (oldval), "+Qo" (*ptr)
2523c67bb6962f Will Deacon  2013-10-09  263  	: "r" (ptr), "r" (old), "r" (new)
2523c67bb6962f Will Deacon  2013-10-09  264  	: "cc");
2523c67bb6962f Will Deacon  2013-10-09  265  
2523c67bb6962f Will Deacon  2013-10-09  266  	return oldval;
2523c67bb6962f Will Deacon  2013-10-09  267  }
2523c67bb6962f Will Deacon  2013-10-09  268  

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp

      parent reply	other threads:[~2022-04-11 19:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <ab1fd2897c57a50d7580950dbe6fb58006c04253.1649672265.git.pabeni@redhat.com>
2022-04-11 18:23 ` [RFC PATCH 3/4] mptcp: never shrink offered window kernel test robot
2022-04-11 19:46 ` 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=202204120334.WqEBThyK-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=llvm@lists.linux.dev \
    --cc=pabeni@redhat.com \
    /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).