All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: [linux-next:master 3307/5418] drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3911:28: sparse: sparse: incorrect type in assignment (different base types)
Date: Wed, 08 Dec 2021 03:24:25 +0800	[thread overview]
Message-ID: <202112080339.rKLd0aDI-lkp@intel.com> (raw)

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   04fe99a8d936d46a310ca61b8b63dc270962bf01
commit: 7a6cfe28ae3ef6a78774fd1e21e3b76c90937112 [3307/5418] brcmfmac: Configure keep-alive packet on suspend
config: microblaze-randconfig-s031-20211207 (https://download.01.org/0day-ci/archive/20211208/202112080339.rKLd0aDI-lkp(a)intel.com/config)
compiler: microblaze-linux-gcc (GCC) 11.2.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # apt-get install sparse
        # sparse version: v0.6.4-dirty
        # https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=7a6cfe28ae3ef6a78774fd1e21e3b76c90937112
        git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
        git fetch --no-tags linux-next master
        git checkout 7a6cfe28ae3ef6a78774fd1e21e3b76c90937112
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=microblaze SHELL=/bin/bash drivers/net/wireless/broadcom/brcm80211/brcmfmac/

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


sparse warnings: (new ones prefixed by >>)
>> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3911:28: sparse: sparse: incorrect type in assignment (different base types) @@     expected restricted __le32 [assigned] [usertype] period_msec @@     got restricted __le16 [usertype] @@
   drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3911:28: sparse:     expected restricted __le32 [assigned] [usertype] period_msec
   drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3911:28: sparse:     got restricted __le16 [usertype]
>> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3913:30: sparse: sparse: incorrect type in assignment (different base types) @@     expected unsigned char [assigned] [usertype] keep_alive_id @@     got restricted __le16 [usertype] @@
   drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3913:30: sparse:     expected unsigned char [assigned] [usertype] keep_alive_id
   drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3913:30: sparse:     got restricted __le16 [usertype]

vim +3911 drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c

  3903	
  3904	static int brcmf_keepalive_start(struct brcmf_if *ifp, unsigned int interval)
  3905	{
  3906		struct brcmf_mkeep_alive_pkt_le kalive = {0};
  3907		int ret = 0;
  3908	
  3909		/* Configure Null function/data keepalive */
  3910		kalive.version = cpu_to_le16(1);
> 3911		kalive.period_msec = cpu_to_le16(interval * MSEC_PER_SEC);
  3912		kalive.len_bytes = cpu_to_le16(0);
> 3913		kalive.keep_alive_id = cpu_to_le16(0);
  3914	
  3915		ret = brcmf_fil_iovar_data_set(ifp, "mkeep_alive", &kalive, sizeof(kalive));
  3916		if (ret)
  3917			brcmf_err("keep-alive packet config failed, ret=%d\n", ret);
  3918	
  3919		return ret;
  3920	}
  3921	

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Loic Poulain <loic.poulain@linaro.org>
Cc: kbuild-all@lists.01.org,
	Linux Memory Management List <linux-mm@kvack.org>,
	Kalle Valo <kvalo@codeaurora.org>
Subject: [linux-next:master 3307/5418] drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3911:28: sparse: sparse: incorrect type in assignment (different base types)
Date: Wed, 8 Dec 2021 03:24:25 +0800	[thread overview]
Message-ID: <202112080339.rKLd0aDI-lkp@intel.com> (raw)

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   04fe99a8d936d46a310ca61b8b63dc270962bf01
commit: 7a6cfe28ae3ef6a78774fd1e21e3b76c90937112 [3307/5418] brcmfmac: Configure keep-alive packet on suspend
config: microblaze-randconfig-s031-20211207 (https://download.01.org/0day-ci/archive/20211208/202112080339.rKLd0aDI-lkp@intel.com/config)
compiler: microblaze-linux-gcc (GCC) 11.2.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # apt-get install sparse
        # sparse version: v0.6.4-dirty
        # https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=7a6cfe28ae3ef6a78774fd1e21e3b76c90937112
        git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
        git fetch --no-tags linux-next master
        git checkout 7a6cfe28ae3ef6a78774fd1e21e3b76c90937112
        # save the config file to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=microblaze SHELL=/bin/bash drivers/net/wireless/broadcom/brcm80211/brcmfmac/

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


sparse warnings: (new ones prefixed by >>)
>> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3911:28: sparse: sparse: incorrect type in assignment (different base types) @@     expected restricted __le32 [assigned] [usertype] period_msec @@     got restricted __le16 [usertype] @@
   drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3911:28: sparse:     expected restricted __le32 [assigned] [usertype] period_msec
   drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3911:28: sparse:     got restricted __le16 [usertype]
>> drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3913:30: sparse: sparse: incorrect type in assignment (different base types) @@     expected unsigned char [assigned] [usertype] keep_alive_id @@     got restricted __le16 [usertype] @@
   drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3913:30: sparse:     expected unsigned char [assigned] [usertype] keep_alive_id
   drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3913:30: sparse:     got restricted __le16 [usertype]

vim +3911 drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c

  3903	
  3904	static int brcmf_keepalive_start(struct brcmf_if *ifp, unsigned int interval)
  3905	{
  3906		struct brcmf_mkeep_alive_pkt_le kalive = {0};
  3907		int ret = 0;
  3908	
  3909		/* Configure Null function/data keepalive */
  3910		kalive.version = cpu_to_le16(1);
> 3911		kalive.period_msec = cpu_to_le16(interval * MSEC_PER_SEC);
  3912		kalive.len_bytes = cpu_to_le16(0);
> 3913		kalive.keep_alive_id = cpu_to_le16(0);
  3914	
  3915		ret = brcmf_fil_iovar_data_set(ifp, "mkeep_alive", &kalive, sizeof(kalive));
  3916		if (ret)
  3917			brcmf_err("keep-alive packet config failed, ret=%d\n", ret);
  3918	
  3919		return ret;
  3920	}
  3921	

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


             reply	other threads:[~2021-12-07 19:24 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-07 19:24 kernel test robot [this message]
2021-12-07 19:24 ` [linux-next:master 3307/5418] drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c:3911:28: sparse: sparse: incorrect type in assignment (different base types) kernel test robot
2021-12-08  6:38 ` Kalle Valo
2021-12-08  6:38   ` Kalle Valo

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=202112080339.rKLd0aDI-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.