netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Louis Peens <louis.peens@corigine.com>,
	David Miller <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>
Cc: oe-kbuild-all@lists.linux.dev, netdev@vger.kernel.org,
	Simon Horman <simon.horman@corigine.com>,
	Yinjun Zhang <yinjun.zhang@corigine.com>,
	Tianyu Yuan <tianyu.yuan@corigine.com>,
	oss-drivers@corigine.com
Subject: Re: [PATCH net-next 05/12] nfp: introduce keepalive mechanism for multi-PF setup
Date: Sun, 30 Jul 2023 04:20:57 +0800	[thread overview]
Message-ID: <202307300422.oPy5E1hB-lkp@intel.com> (raw)
In-Reply-To: <20230724094821.14295-6-louis.peens@corigine.com>

Hi Louis,

kernel test robot noticed the following build warnings:

[auto build test WARNING on net-next/main]

url:    https://github.com/intel-lab-lkp/linux/commits/Louis-Peens/nsp-generate-nsp-command-with-variable-nsp-major-version/20230724-180015
base:   net-next/main
patch link:    https://lore.kernel.org/r/20230724094821.14295-6-louis.peens%40corigine.com
patch subject: [PATCH net-next 05/12] nfp: introduce keepalive mechanism for multi-PF setup
config: openrisc-randconfig-r081-20230730 (https://download.01.org/0day-ci/archive/20230730/202307300422.oPy5E1hB-lkp@intel.com/config)
compiler: or1k-linux-gcc (GCC) 12.3.0
reproduce: (https://download.01.org/0day-ci/archive/20230730/202307300422.oPy5E1hB-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202307300422.oPy5E1hB-lkp@intel.com/

sparse warnings: (new ones prefixed by >>)
   drivers/net/ethernet/netronome/nfp/nfp_main.c: note: in included file (through drivers/net/ethernet/netronome/nfp/nfp_net.h):
>> include/linux/io-64-nonatomic-hi-lo.h:22:16: sparse: sparse: cast truncates bits from constant value (6e66702e62656174 becomes 62656174)

vim +22 include/linux/io-64-nonatomic-hi-lo.h

797a796a13df6b include/asm-generic/io-64-nonatomic-hi-lo.h Hitoshi Mitake 2012-02-07  18  
3a044178cccfeb include/asm-generic/io-64-nonatomic-hi-lo.h Jason Baron    2014-07-04  19  static inline void hi_lo_writeq(__u64 val, volatile void __iomem *addr)
797a796a13df6b include/asm-generic/io-64-nonatomic-hi-lo.h Hitoshi Mitake 2012-02-07  20  {
797a796a13df6b include/asm-generic/io-64-nonatomic-hi-lo.h Hitoshi Mitake 2012-02-07  21  	writel(val >> 32, addr + 4);
797a796a13df6b include/asm-generic/io-64-nonatomic-hi-lo.h Hitoshi Mitake 2012-02-07 @22  	writel(val, addr);
797a796a13df6b include/asm-generic/io-64-nonatomic-hi-lo.h Hitoshi Mitake 2012-02-07  23  }
3a044178cccfeb include/asm-generic/io-64-nonatomic-hi-lo.h Jason Baron    2014-07-04  24  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  reply	other threads:[~2023-07-29 20:21 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-24  9:48 [PATCH net-next 00/12] nfp: add support for multi-pf configuration Louis Peens
2023-07-24  9:48 ` [PATCH net-next 01/12] nsp: generate nsp command with variable nsp major version Louis Peens
2023-07-24  9:48 ` [PATCH net-next 02/12] nfp: bump the nsp major version to support multi-PF Louis Peens
2023-07-24  9:48 ` [PATCH net-next 03/12] nfp: change application firmware loading flow in multi-PF setup Louis Peens
2023-07-24  9:48 ` [PATCH net-next 04/12] nfp: don't skip firmware loading when it's pxe firmware in running Louis Peens
2023-07-24  9:48 ` [PATCH net-next 05/12] nfp: introduce keepalive mechanism for multi-PF setup Louis Peens
2023-07-29 20:20   ` kernel test robot [this message]
2023-07-30  4:51     ` Yinjun Zhang
2023-08-07  2:10       ` Yinjun Zhang
2023-07-24  9:48 ` [PATCH net-next 06/12] nfp: avoid reclaiming resource mutex by mistake Louis Peens
2023-07-24  9:48 ` [PATCH net-next 07/12] nfp: redefine PF id used to format symbols Louis Peens
2023-07-24  9:48 ` [PATCH net-next 08/12] nfp: apply one port per PF for multi-PF setup Louis Peens
2023-07-24  9:48 ` [PATCH net-next 09/12] nfp: enable multi-PF in application firmware if supported Louis Peens
2023-07-24  9:48 ` [PATCH net-next 10/12] nfp: configure VF total count for each PF Louis Peens
2023-07-24  9:48 ` [PATCH net-next 11/12] nfp: configure VF split info into application firmware Louis Peens
2023-07-24  9:48 ` [PATCH net-next 12/12] nfp: use absolute vf id for multi-PF case Louis Peens
2023-07-25  0:01 ` [PATCH net-next 00/12] nfp: add support for multi-pf configuration Jakub Kicinski
2023-07-25  1:28   ` Yinjun Zhang
2023-07-25 18:59     ` Jakub Kicinski
2023-07-26  2:00       ` Yinjun Zhang
2023-07-26  4:17         ` Jakub Kicinski
2023-07-26  7:28           ` Yinjun Zhang

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=202307300422.oPy5E1hB-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=davem@davemloft.net \
    --cc=kuba@kernel.org \
    --cc=louis.peens@corigine.com \
    --cc=netdev@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=oss-drivers@corigine.com \
    --cc=pabeni@redhat.com \
    --cc=simon.horman@corigine.com \
    --cc=tianyu.yuan@corigine.com \
    --cc=yinjun.zhang@corigine.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).