Re: [PATCH] staging: rtl8712: switch to common ieee80211 headers

2020-06-02 Thread kbuild test robot
Hi Pascal,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on staging/staging-testing]
[also build test ERROR on next-20200602]
[cannot apply to v5.7]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Pascal-Terjan/staging-rtl8712-switch-to-common-ieee80211-headers/20200602-042517
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
77f55d1305c11fb729b88f2c3f7881ba0831fa6f
config: i386-randconfig-a011-20200602 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-13) 9.3.0
reproduce (this is a W=1 build):
# save the attached .config to linux build tree
make W=1 ARCH=i386 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All errors (new ones prefixed by >>, old ones prefixed by <<):

ld: drivers/staging/rtl8712/rtl8712_recv.o: in function `amsdu_to_msdu':
>> drivers/staging/rtl8712/rtl8712_recv.c:377: undefined reference to 
>> `bridge_tunnel_header'
>> ld: drivers/staging/rtl8712/rtl8712_recv.c:375: undefined reference to 
>> `rfc1042_header'
>> ld: drivers/staging/rtl8712/rtl8712_recv.c:377: undefined reference to 
>> `bridge_tunnel_header'
>> ld: drivers/staging/rtl8712/rtl8712_recv.c:375: undefined reference to 
>> `rfc1042_header'
ld: drivers/staging/rtl8712/rtl871x_recv.o: in function 
`r8712_wlanhdr_to_ethhdr':
>> drivers/staging/rtl8712/rtl871x_recv.c:603: undefined reference to 
>> `rfc1042_header'
>> ld: drivers/staging/rtl8712/rtl871x_recv.c:606: undefined reference to 
>> `bridge_tunnel_header'
>> ld: drivers/staging/rtl8712/rtl871x_recv.c:603: undefined reference to 
>> `rfc1042_header'
>> ld: drivers/staging/rtl8712/rtl871x_recv.c:606: undefined reference to 
>> `bridge_tunnel_header'

vim +377 drivers/staging/rtl8712/rtl8712_recv.c

2865d42c78a912 Larry Finger2010-08-20  314  
fc898688aa37c0 Nishka Dasgupta 2019-08-08  315  static void 
amsdu_to_msdu(struct _adapter *padapter, union recv_frame *prframe)
2865d42c78a912 Larry Finger2010-08-20  316  {
2865d42c78a912 Larry Finger2010-08-20  317  int a_len, 
padding_len;
2865d42c78a912 Larry Finger2010-08-20  318  u16 eth_type, 
nSubframe_Length;
2865d42c78a912 Larry Finger2010-08-20  319  u8  nr_subframes, i;
b952f4dff27512 yuan linyu  2017-06-18  320  unsigned char *pdata;
2865d42c78a912 Larry Finger2010-08-20  321  struct rx_pkt_attrib 
*pattrib;
2865d42c78a912 Larry Finger2010-08-20  322  _pkt *sub_skb, 
*subframes[MAX_SUBFRAME_COUNT];
2865d42c78a912 Larry Finger2010-08-20  323  struct recv_priv 
*precvpriv = >recvpriv;
2865d42c78a912 Larry Finger2010-08-20  324  struct  __queue 
*pfree_recv_queue = &(precvpriv->free_recv_queue);
2865d42c78a912 Larry Finger2010-08-20  325  
2865d42c78a912 Larry Finger2010-08-20  326  nr_subframes = 0;
2865d42c78a912 Larry Finger2010-08-20  327  pattrib = 
>u.hdr.attrib;
2865d42c78a912 Larry Finger2010-08-20  328  recvframe_pull(prframe, 
prframe->u.hdr.attrib.hdrlen);
2865d42c78a912 Larry Finger2010-08-20  329  if 
(prframe->u.hdr.attrib.iv_len > 0)
2865d42c78a912 Larry Finger2010-08-20  330  
recvframe_pull(prframe, prframe->u.hdr.attrib.iv_len);
2865d42c78a912 Larry Finger2010-08-20  331  a_len = 
prframe->u.hdr.len;
2865d42c78a912 Larry Finger2010-08-20  332  pdata = 
prframe->u.hdr.rx_data;
2865d42c78a912 Larry Finger2010-08-20  333  while (a_len > 
ETH_HLEN) {
2865d42c78a912 Larry Finger2010-08-20  334  /* Offset 12 
denote 2 mac address */
2865d42c78a912 Larry Finger2010-08-20  335  
nSubframe_Length = *((u16 *)(pdata + 12));
2865d42c78a912 Larry Finger2010-08-20  336  /*==m==>change 
the length order*/
2865d42c78a912 Larry Finger2010-08-20  337  
nSubframe_Length = (nSubframe_Length >> 8) +
2865d42c78a912 Larry Finger2010-08-20  338  
   (nSubframe_Length << 8);
2865d42c78a912 Larry Finger2010-08-20  339  if (a_len < 
(ETHERNET_HEADER_SIZE + nSubframe_Length)) {
87a573ada017b4 Przemo Firszt   2012-12-10  340  
netdev_warn(padapter->pnetdev, "r8712u: nRemain_Length is %d and 
nSubframe_Length is: %d\n",
2865d42c78a912 Larry Finger2010-08-20  341  
a_len, nSubframe_Length);
2865d42c78a912 Larry Finger2010-08-20  342  goto 
ex

[driver-core:debugfs_cleanup] BUILD SUCCESS ffba49a91bd0f50ced6bde4746301519880289b5

2020-05-31 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_cleanup
branch HEAD: ffba49a91bd0f50ced6bde4746301519880289b5  debugfs: remove return 
value of debugfs_create_devm_seqfile()

elapsed time: 5360m

configs tested: 79
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
m68k allyesconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
sparcallyesconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
umallnoconfig
um  defconfig
um   allmodconfig
um   allyesconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[driver-core:readfile] BUILD SUCCESS fcc5337507797b60284d349f00dda426aa053f1f

2020-05-31 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  readfile
branch HEAD: fcc5337507797b60284d349f00dda426aa053f1f  selftests: add 
readfile(2) selftests

elapsed time: 3734m

configs tested: 142
configs skipped: 7

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm  pxa3xx_defconfig
arm palmz72_defconfig
shshmin_defconfig
ia64zx1_defconfig
riscv  rv32_defconfig
um   x86_64_defconfig
m68k   m5249evb_defconfig
sh   sh7770_generic_defconfig
arm vf610m4_defconfig
armtrizeps4_defconfig
powerpc  pasemi_defconfig
sparc   sparc64_defconfig
mips  decstation_64_defconfig
mips  ath79_defconfig
shsh7763rdp_defconfig
s390  allnoconfig
mips tb0226_defconfig
m68k  multi_defconfig
h8300allyesconfig
sh sh03_defconfig
sh   se7343_defconfig
arm  badge4_defconfig
sh   se7780_defconfig
sh  rsk7269_defconfig
ia64generic_defconfig
mips allyesconfig
xtensa   allyesconfig
sh  sdk7780_defconfig
mipsjmr3927_defconfig
riscv   defconfig
sh   cayman_defconfig
arm ebsa110_defconfig
armlart_defconfig
sh microdev_defconfig
x86_64  defconfig
armoxnas_v6_defconfig
powerpcadder875_defconfig
mipsar7_defconfig
ia64  allnoconfig
armkeystone_defconfig
arm   viper_defconfig
armpleb_defconfig
sh espt_defconfig
arm   omap1_defconfig
arm   spear13xx_defconfig
sparc64  allyesconfig
microblazenommu_defconfig
arc  axs101_defconfig
powerpc   maple_defconfig
nds32 allnoconfig
sh   allmodconfig
powerpc defconfig
arc   tb10x_defconfig
armmvebu_v7_defconfig
powerpcmpc7448_hpc2_defconfig
xtensa  defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
m68k allyesconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
h8300allmodconfig
arc defconfig
arc  allyesconfig
shallnoconfig
microblazeallnoconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig

[staging:staging-testing] BUILD SUCCESS 77f55d1305c11fb729b88f2c3f7881ba0831fa6f

2020-05-31 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 77f55d1305c11fb729b88f2c3f7881ba0831fa6f  staging: rtl8723bs: Use 
common packet header constants

i386-tinyconfig vmlinux size:

+---+-+--+
| DELTA |   SYMBOL|COMMIT   
 |
+---+-+--+
|  +507 | TOTAL   | 8f3d9f354286..77f55d1305c1 (ALL 
COMMITS) |
|  +172 | TOTAL   | c2312ff575fc Merge 5.7-rc7 into 
staging-next |
|  +430 | TEXT| 8f3d9f354286..77f55d1305c1 (ALL 
COMMITS) |
|  +172 | TEXT| c2312ff575fc Merge 5.7-rc7 into 
staging-next |
|   +72 | DATA| 8f3d9f354286..77f55d1305c1 (ALL 
COMMITS) |
|  +240 | free_irq()  | 8f3d9f354286..77f55d1305c1 (ALL 
COMMITS) |
|   +72 | copy_clone_args_from_user() | 8f3d9f354286..77f55d1305c1 (ALL 
COMMITS) |
|   +64 | noop_backing_dev_info   | 8f3d9f354286..77f55d1305c1 (ALL 
COMMITS) |
|   -86 | setup_irq() | 8f3d9f354286..77f55d1305c1 (ALL 
COMMITS) |
|  -253 | __free_irq()| 8f3d9f354286..77f55d1305c1 (ALL 
COMMITS) |
+---+-+--+

elapsed time: 3827m

configs tested: 164
configs skipped: 11

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm  pxa3xx_defconfig
arm palmz72_defconfig
shshmin_defconfig
ia64zx1_defconfig
riscv  rv32_defconfig
powerpc  pasemi_defconfig
sparc   sparc64_defconfig
mips  decstation_64_defconfig
mips  ath79_defconfig
mipsqi_lb60_defconfig
shmigor_defconfig
sh magicpanelr2_defconfig
mips   sb1250_swarm_defconfig
h8300allyesconfig
sh sh03_defconfig
sh   se7343_defconfig
arm  badge4_defconfig
sh   se7780_defconfig
sh  rsk7269_defconfig
ia64generic_defconfig
mips allyesconfig
arm   mainstone_defconfig
armhisi_defconfig
powerpc mpc83xx_defconfig
m68k  multi_defconfig
m68k allyesconfig
xtensa   allyesconfig
sh  sdk7780_defconfig
mipsjmr3927_defconfig
riscv   defconfig
sh   cayman_defconfig
arm ebsa110_defconfig
armlart_defconfig
sh microdev_defconfig
x86_64  defconfig
armoxnas_v6_defconfig
powerpc pseries_defconfig
armdove_defconfig
h8300alldefconfig
armpleb_defconfig
sh espt_defconfig
arm   omap1_defconfig
arm   spear13xx_defconfig
sparc64  allyesconfig
microblazenommu_defconfig
arc  axs101_defconfig
powerpc   maple_defconfig
nds32 allnoconfig
sh   allmodconfig
powerpc defconfig
arc   tb10x_defconfig
armmvebu_v7_defconfig
powerpcmpc7448_hpc2_defconfig
xtensa  defconfig
c6x dsk6455_defconfig
riscvnommu_virt_defconfig
shapsh4ad0a_defconfig
powerpc  mpc885_ads_defconfig
arm socfpga_defconfig
pariscallnoconfig
csky alldefconfig
arm  ep93xx_defconfig
openriscdefconfig
mips  rb532_defconfig
arm assabet_defconfig
arc 

[staging:staging-next 391/415] drivers/staging/wfx/sta.c:203:5: warning: no previous prototype for 'wfx_get_ps_timeout'

2020-05-28 Thread kbuild test robot
tree:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
staging-next
head:   36cf583eaff3458abbfac144c5e4d417a23fa1a1
commit: 398999dabc8cfc51c7274639cb87e2a316138859 [391/415] staging: wfx: split 
wfx_get_ps_timeout() from wfx_update_pm()
config: nds32-allyesconfig (attached as .config)
compiler: nds32le-linux-gcc (GCC) 9.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
git checkout 398999dabc8cfc51c7274639cb87e2a316138859
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross 
ARCH=nds32 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>, old ones prefixed by <<):

In file included from ./arch/nds32/include/generated/asm/bug.h:1,
from include/linux/bug.h:5,
from include/linux/thread_info.h:12,
from include/asm-generic/preempt.h:5,
from ./arch/nds32/include/generated/asm/preempt.h:1,
from include/linux/preempt.h:78,
from include/linux/spinlock.h:51,
from include/linux/seqlock.h:36,
from include/linux/time.h:6,
from include/linux/skbuff.h:15,
from include/linux/if_ether.h:19,
from include/linux/etherdevice.h:20,
from drivers/staging/wfx/sta.c:8:
include/linux/dma-mapping.h: In function 'dma_map_resource':
arch/nds32/include/asm/memory.h:82:32: warning: comparison of unsigned 
expression >= 0 is always true [-Wtype-limits]
82 | #define pfn_valid(pfn)  ((pfn) >= PHYS_PFN_OFFSET && (pfn) < 
(PHYS_PFN_OFFSET + max_mapnr))
|^~
include/asm-generic/bug.h:139:27: note: in definition of macro 'WARN_ON_ONCE'
139 |  int __ret_warn_once = !!(condition);|
   ^
include/linux/dma-mapping.h:352:19: note: in expansion of macro 'pfn_valid'
352 |  if (WARN_ON_ONCE(pfn_valid(PHYS_PFN(phys_addr
|   ^
drivers/staging/wfx/sta.c: At top level:
>> drivers/staging/wfx/sta.c:203:5: warning: no previous prototype for 
>> 'wfx_get_ps_timeout' [-Wmissing-prototypes]
203 | int wfx_get_ps_timeout(struct wfx_vif *wvif, bool *enable_ps)
| ^~
drivers/staging/wfx/sta.c:233:5: warning: no previous prototype for 
'wfx_update_pm' [-Wmissing-prototypes]
233 | int wfx_update_pm(struct wfx_vif *wvif)
| ^

vim +/wfx_get_ps_timeout +203 drivers/staging/wfx/sta.c

   202  
 > 203  int wfx_get_ps_timeout(struct wfx_vif *wvif, bool *enable_ps)
   204  {
   205  struct ieee80211_channel *chan0 = NULL, *chan1 = NULL;
   206  struct ieee80211_conf *conf = >wdev->hw->conf;
   207  
   208  WARN(!wvif->vif->bss_conf.assoc && enable_ps,
   209   "enable_ps is reliable only if associated");
   210  if (wdev_to_wvif(wvif->wdev, 0))
   211  chan0 = wdev_to_wvif(wvif->wdev, 
0)->vif->bss_conf.chandef.chan;
   212  if (wdev_to_wvif(wvif->wdev, 1))
   213  chan1 = wdev_to_wvif(wvif->wdev, 
1)->vif->bss_conf.chandef.chan;
   214  if (chan0 && chan1 && chan0->hw_value != chan1->hw_value &&
   215  wvif->vif->type != NL80211_IFTYPE_AP) {
   216  // It is necessary to enable powersave if channels
   217  // are differents.
   218  if (enable_ps)
   219  *enable_ps = true;
   220  if (wvif->bss_not_support_ps_poll)
   221  return 30;
   222  else
   223  return 0;
   224  }
   225  if (enable_ps)
   226  *enable_ps = wvif->vif->bss_conf.ps;
   227  if (wvif->vif->bss_conf.assoc && wvif->vif->bss_conf.ps)
   228  return conf->dynamic_ps_timeout;
   229  else
   230  return -1;
   231  }
   232  

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


.config.gz
Description: application/gzip
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[staging:staging-next] BUILD SUCCESS 36cf583eaff3458abbfac144c5e4d417a23fa1a1

2020-05-28 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-next
branch HEAD: 36cf583eaff3458abbfac144c5e4d417a23fa1a1  staging: vchiq: Get rid 
of VCHIQ_SERVICE_OPENEND callback reason

elapsed time: 2204m

configs tested: 117
configs skipped: 3

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm   allnoconfig
arm  allmodconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sh   se7724_defconfig
armmmp2_defconfig
mipsmaltaup_defconfig
armrealview_defconfig
arm  footbridge_defconfig
arm  jornada720_defconfig
m68kmac_defconfig
arc nsimosci_hs_defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64  allnoconfig
ia64defconfig
ia64 allmodconfig
ia64 allyesconfig
m68k  allnoconfig
m68k allmodconfig
m68k   sun3_defconfig
m68kdefconfig
m68k allyesconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
arc  allyesconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
x86_64   randconfig-a006-20200527
x86_64   randconfig-a002-20200527
x86_64   randconfig-a005-20200527
x86_64   randconfig-a003-20200527
x86_64   randconfig-a004-20200527
x86_64   randconfig-a001-20200527
i386 randconfig-a001-20200527
i386 randconfig-a004-20200527
i386 randconfig-a003-20200527
i386 randconfig-a006-20200527
i386 randconfig-a002-20200527
i386 randconfig-a005-20200527
x86_64   randconfig-a013-20200528
x86_64   randconfig-a015-20200528
x86_64   randconfig-a012-20200528
x86_64   randconfig-a016-20200528
x86_64   randconfig-a014-20200528
x86_64   randconfig-a011-20200528
i386 randconfig-a013-20200528
i386 randconfig-a011-20200528
i386 randconfig-a012-20200528
i386 randconfig-a015-20200528
i386 randconfig-a016-20200528
i386 randconfig-a014-20200528
i386 randconfig-a013-20200527
i386 randconfig-a015-20200527
i386 randconfig-a012-20200527
i386 randconfig-a011-20200527
i386 randconfig-a016-20200527
i386 randconfig-a014-20200527
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
riscvallyesconfig
s390  allnoconfig
s390defconfig
s390 allyesconfig
s390 allmodconfig
sparc

[driver-core:driver-core-testing] BUILD SUCCESS 8c3e315d4296421cd26b3300ee0ac117f0877f20

2020-05-28 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: 8c3e315d4296421cd26b3300ee0ac117f0877f20  driver core: Update 
device link status correctly for SYNC_STATE_ONLY links

elapsed time: 1224m

configs tested: 85
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64  allnoconfig
ia64 allmodconfig
ia64defconfig
ia64 allyesconfig
m68k  allnoconfig
m68k allmodconfig
m68k   sun3_defconfig
m68kdefconfig
m68k allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
nios2allyesconfig
openrisc allyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
nios2   defconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a001-20200527
i386 randconfig-a004-20200527
i386 randconfig-a003-20200527
i386 randconfig-a006-20200527
i386 randconfig-a002-20200527
i386 randconfig-a005-20200527
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
riscvallyesconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
sparcallyesconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
umallnoconfig
um   allyesconfig
um   allmodconfig
um  defconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[staging:staging-testing 391/415] drivers/staging/wfx/sta.c:203:5: warning: no previous prototype for function 'wfx_get_ps_timeout'

2020-05-27 Thread kbuild test robot
tree:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
staging-testing
head:   36cf583eaff3458abbfac144c5e4d417a23fa1a1
commit: 398999dabc8cfc51c7274639cb87e2a316138859 [391/415] staging: wfx: split 
wfx_get_ps_timeout() from wfx_update_pm()
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 
3393cc4cebf9969db94dc424b7a2b6195589c33b)
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 x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
git checkout 398999dabc8cfc51c7274639cb87e2a316138859
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/staging/wfx/sta.c:203:5: warning: no previous prototype for function 
>> 'wfx_get_ps_timeout' [-Wmissing-prototypes]
int wfx_get_ps_timeout(struct wfx_vif *wvif, bool *enable_ps)
^
drivers/staging/wfx/sta.c:203:1: note: declare 'static' if the function is not 
intended to be used outside of this translation unit
int wfx_get_ps_timeout(struct wfx_vif *wvif, bool *enable_ps)
^
static
>> drivers/staging/wfx/sta.c:233:5: warning: no previous prototype for function 
>> 'wfx_update_pm' [-Wmissing-prototypes]
int wfx_update_pm(struct wfx_vif *wvif)
^
drivers/staging/wfx/sta.c:233:1: note: declare 'static' if the function is not 
intended to be used outside of this translation unit
int wfx_update_pm(struct wfx_vif *wvif)
^
static
2 warnings generated.

vim +/wfx_get_ps_timeout +203 drivers/staging/wfx/sta.c

   202  
 > 203  int wfx_get_ps_timeout(struct wfx_vif *wvif, bool *enable_ps)
   204  {
   205  struct ieee80211_channel *chan0 = NULL, *chan1 = NULL;
   206  struct ieee80211_conf *conf = >wdev->hw->conf;
   207  
   208  WARN(!wvif->vif->bss_conf.assoc && enable_ps,
   209   "enable_ps is reliable only if associated");
   210  if (wdev_to_wvif(wvif->wdev, 0))
   211  chan0 = wdev_to_wvif(wvif->wdev, 
0)->vif->bss_conf.chandef.chan;
   212  if (wdev_to_wvif(wvif->wdev, 1))
   213  chan1 = wdev_to_wvif(wvif->wdev, 
1)->vif->bss_conf.chandef.chan;
   214  if (chan0 && chan1 && chan0->hw_value != chan1->hw_value &&
   215  wvif->vif->type != NL80211_IFTYPE_AP) {
   216  // It is necessary to enable powersave if channels
   217  // are differents.
   218  if (enable_ps)
   219  *enable_ps = true;
   220  if (wvif->bss_not_support_ps_poll)
   221  return 30;
   222  else
   223  return 0;
   224  }
   225  if (enable_ps)
   226  *enable_ps = wvif->vif->bss_conf.ps;
   227  if (wvif->vif->bss_conf.assoc && wvif->vif->bss_conf.ps)
   228  return conf->dynamic_ps_timeout;
   229  else
   230  return -1;
   231  }
   232  
 > 233  int wfx_update_pm(struct wfx_vif *wvif)
   234  {
   235  int ps_timeout;
   236  bool ps;
   237  
   238  if (!wvif->vif->bss_conf.assoc)
   239  return 0;
   240  ps_timeout = wfx_get_ps_timeout(wvif, );
   241  if (!ps)
   242  ps_timeout = 0;
   243  WARN_ON(ps_timeout < 0);
   244  if (wvif->uapsd_mask)
   245  ps_timeout = 0;
   246  
   247  if (!wait_for_completion_timeout(>set_pm_mode_complete,
   248   TU_TO_JIFFIES(512)))
   249  dev_warn(wvif->wdev->dev,
   250   "timeout while waiting of 
set_pm_mode_complete\n");
   251  return hif_set_pm(wvif, ps, ps_timeout);
   252  }
   253  

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


.config.gz
Description: application/gzip
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[driver-core:driver-core-next] BUILD SUCCESS 46d26819a5056f4831649c5887ad5c71a16d86f7

2020-05-27 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-next
branch HEAD: 46d26819a5056f4831649c5887ad5c71a16d86f7  software node: implement 
software_node_unregister()

elapsed time: 1524m

configs tested: 90
configs skipped: 2

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm  allyesconfig
sh   se7724_defconfig
armmmp2_defconfig
mipsmaltaup_defconfig
armrealview_defconfig
arm  footbridge_defconfig
arm  jornada720_defconfig
mips loongson1c_defconfig
mipsmaltaup_xpa_defconfig
arm   tegra_defconfig
mipse55_defconfig
arc nsimosci_hs_defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
m68k allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa  defconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
arc defconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
arc  allyesconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
powerpc defconfig
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390  allnoconfig
s390defconfig
s390 allyesconfig
s390 allmodconfig
sparcallyesconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
umallnoconfig
um   allmodconfig
um   allyesconfig
um  defconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[driver-core:readfile] BUILD SUCCESS 7a5125bbbabf1d3655640e59db556fb2aefaec6a

2020-05-27 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  readfile
branch HEAD: 7a5125bbbabf1d3655640e59db556fb2aefaec6a  readfile: add 
test_readfile

elapsed time: 1188m

configs tested: 102
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm   allnoconfig
arm  allyesconfig
arm  allmodconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
mipsmalta_kvm_guest_defconfig
arm socfpga_defconfig
nds32 allnoconfig
mips  malta_defconfig
arc  alldefconfig
arm orion5x_defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64defconfig
ia64  allnoconfig
ia64 allmodconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
m68k allyesconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
nds32   defconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa  defconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
openrisc allyesconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
powerpc defconfig
x86_64   randconfig-a006-20200527
x86_64   randconfig-a002-20200527
x86_64   randconfig-a005-20200527
x86_64   randconfig-a003-20200527
x86_64   randconfig-a004-20200527
x86_64   randconfig-a001-20200527
i386 randconfig-a001-20200527
i386 randconfig-a004-20200527
i386 randconfig-a003-20200527
i386 randconfig-a006-20200527
i386 randconfig-a002-20200527
i386 randconfig-a005-20200527
i386 randconfig-a013-20200527
i386 randconfig-a015-20200527
i386 randconfig-a012-20200527
i386 randconfig-a011-20200527
i386 randconfig-a016-20200527
i386 randconfig-a014-20200527
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390  allnoconfig
s390defconfig
s390 allyesconfig
s390 allmodconfig
sparcallyesconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
umallnoconfig
um  defconfig
um   allyesconfig
um   allmodconfig
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64   rhel
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  

Re: [PATCH 01/11] media: atomisp: get rid of hmm_vm.c

2020-05-27 Thread kbuild test robot
Hi Mauro,

I love your patch! Yet something to improve:

[auto build test ERROR on linuxtv-media/master]
[also build test ERROR on next-20200526]
[cannot apply to staging/staging-testing v5.7-rc7]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Mauro-Carvalho-Chehab/Some-fixes-and-cleanups-for-atomisp-driver/20200525-150001
base:   git://linuxtv.org/media_tree.git master
config: x86_64-allmodconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 
3393cc4cebf9969db94dc424b7a2b6195589c33b)
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 x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All errors (new ones prefixed by >>, old ones prefixed by <<):

>> make[5]: *** No rule to make target 
>> 'drivers/staging/media/atomisp/pci/hmm/hmm_dynamic_pool.o', needed by 
>> 'drivers/staging/media/atomisp/atomisp.o'.
make[5]: Target '__build' not remade because of errors.

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


.config.gz
Description: application/gzip
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[driver-core:driver-core-next] BUILD SUCCESS 0e5596c54aa2fbfd22842096d3ebb6753b2a220a

2020-05-26 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-next
branch HEAD: 0e5596c54aa2fbfd22842096d3ebb6753b2a220a  kobject: send 
KOBJ_REMOVE uevent when the object is removed from sysfs

elapsed time: 2271m

configs tested: 103
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
sh   se7722_defconfig
arcvdk_hs38_defconfig
arm  gemini_defconfig
sh  sdk7786_defconfig
powerpc  ppc64e_defconfig
h8300   defconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
i386  allnoconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
m68k allyesconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
arc  allyesconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a001-20200526
i386 randconfig-a004-20200526
i386 randconfig-a003-20200526
i386 randconfig-a006-20200526
i386 randconfig-a002-20200526
i386 randconfig-a005-20200526
x86_64   randconfig-a015-20200526
x86_64   randconfig-a013-20200526
x86_64   randconfig-a016-20200526
x86_64   randconfig-a012-20200526
x86_64   randconfig-a014-20200526
x86_64   randconfig-a011-20200526
i386 randconfig-a013-20200526
i386 randconfig-a015-20200526
i386 randconfig-a012-20200526
i386 randconfig-a011-20200526
i386 randconfig-a016-20200526
i386 randconfig-a014-20200526
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
sparcallyesconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
um   allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear

[driver-core:swnode_unregister] BUILD SUCCESS 144ac3cd7f1ca04abfeb4527a7ae66c33b2ed12a

2020-05-26 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
swnode_unregister
branch HEAD: 144ac3cd7f1ca04abfeb4527a7ae66c33b2ed12a  kobject: send 
KOBJ_REMOVE uevent when the object is removed from sysfs

elapsed time: 3164m

configs tested: 107
configs skipped: 3

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arc nps_defconfig
arc   tb10x_defconfig
armneponset_defconfig
mips  ath79_defconfig
sh   se7722_defconfig
arcvdk_hs38_defconfig
arm  gemini_defconfig
sh  sdk7786_defconfig
powerpc  ppc64e_defconfig
h8300   defconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
i386  allnoconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
m68k allyesconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
arc  allyesconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a001-20200526
i386 randconfig-a004-20200526
i386 randconfig-a003-20200526
i386 randconfig-a006-20200526
i386 randconfig-a002-20200526
i386 randconfig-a005-20200526
x86_64   randconfig-a015-20200526
x86_64   randconfig-a013-20200526
x86_64   randconfig-a016-20200526
x86_64   randconfig-a012-20200526
x86_64   randconfig-a014-20200526
x86_64   randconfig-a011-20200526
i386 randconfig-a013-20200526
i386 randconfig-a015-20200526
i386 randconfig-a012-20200526
i386 randconfig-a011-20200526
i386 randconfig-a016-20200526
i386 randconfig-a014-20200526
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
sparcallyesconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
um   allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig

[staging:staging-next] BUILD SUCCESS c2312ff575fcaed96889d5bb5392afcc604c9442

2020-05-26 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-next
branch HEAD: c2312ff575fcaed96889d5bb5392afcc604c9442  Merge 5.7-rc7 into 
staging-next

elapsed time: 1833m

configs tested: 91
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
sh   se7722_defconfig
arcvdk_hs38_defconfig
arm  gemini_defconfig
sh  sdk7786_defconfig
powerpc  ppc64e_defconfig
h8300   defconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
i386  allnoconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
m68k allyesconfig
nios2   defconfig
openriscdefconfig
openrisc allyesconfig
nios2allyesconfig
c6x  allyesconfig
c6x   allnoconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a001-20200526
i386 randconfig-a004-20200526
i386 randconfig-a003-20200526
i386 randconfig-a006-20200526
i386 randconfig-a002-20200526
i386 randconfig-a005-20200526
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
sparcallyesconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
um   allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[staging:staging-testing 319/378] drivers/staging/vt6656/rxtx.c:42:18: warning: unused variable 'vnt_frame_time'

2020-05-24 Thread kbuild test robot
tree:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
staging-testing
head:   a3975dea1696b7c81319dc4b66e3c378dd47ccfb
commit: 61bb798767e4a55165ab0cdaf72dd7459ebab0cc [319/378] staging: vt6656: 
vnt_get_rtscts_rsvtime_le replace with rts/cts duration.
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 
3393cc4cebf9969db94dc424b7a2b6195589c33b)
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 x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
git checkout 61bb798767e4a55165ab0cdaf72dd7459ebab0cc
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/staging/vt6656/rxtx.c:42:18: warning: unused variable 
>> 'vnt_frame_time' [-Wunused-const-variable]
static const u16 vnt_frame_time[MAX_RATE] = {
^
1 warning generated.

vim +/vnt_frame_time +42 drivers/staging/vt6656/rxtx.c

92b96797118e58 Forest Bond   2009-06-13  41  
3436accadc3f17 Malcolm Priestley 2020-04-19 @42  static const u16 
vnt_frame_time[MAX_RATE] = {
3436accadc3f17 Malcolm Priestley 2020-04-19  43 10, 20, 55, 110, 24, 
36, 48, 72, 96, 144, 192, 216
3436accadc3f17 Malcolm Priestley 2020-04-19  44  };
3436accadc3f17 Malcolm Priestley 2020-04-19  45  

:: The code at line 42 was first introduced by commit
:: 3436accadc3f179a108071df552a6b82542523b1 staging: vt6656: Move 
vnt_get_frame_time and vnt_get_phy_field to rxtx

:: TO: Malcolm Priestley 
:: CC: Greg Kroah-Hartman 

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


.config.gz
Description: application/gzip
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[staging:staging-next] BUILD SUCCESS bf04362fc3e41d0887090ce174a8373653811a7c

2020-05-23 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-next
branch HEAD: bf04362fc3e41d0887090ce174a8373653811a7c  staging: rtl8192e: Using 
comparison to true is error prone

elapsed time: 3803m

configs tested: 132
configs skipped: 2

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sparcallyesconfig
mips allyesconfig
m68k allyesconfig
arm eseries_pxa_defconfig
riscvnommu_virt_defconfig
powerpc mpc83xx_defconfig
arm  imote2_defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa  defconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
arc defconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
arc  allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a001-20200521
i386 randconfig-a004-20200521
i386 randconfig-a006-20200521
i386 randconfig-a003-20200521
i386 randconfig-a002-20200521
i386 randconfig-a005-20200521
i386 randconfig-a001-20200523
i386 randconfig-a004-20200523
i386 randconfig-a003-20200523
i386 randconfig-a006-20200523
i386 randconfig-a002-20200523
i386 randconfig-a005-20200523
x86_64   randconfig-a015-20200522
x86_64   randconfig-a013-20200522
x86_64   randconfig-a016-20200522
x86_64   randconfig-a012-20200522
x86_64   randconfig-a014-20200522
x86_64   randconfig-a011-20200522
x86_64   randconfig-a013-20200520
x86_64   randconfig-a015-20200520
x86_64   randconfig-a016-20200520
x86_64   randconfig-a012-20200520
x86_64   randconfig-a014-20200520
x86_64   randconfig-a011-20200520
x86_64   randconfig-a002-20200521
x86_64   randconfig-a006-20200521
x86_64   randconfig-a005-20200521
x86_64   randconfig-a004-20200521
x86_64   randconfig-a003-20200521
x86_64   randconfig-a001-20200521
i386 randconfig-a013-20200522
i386 randconfig-a012-20200522
i386 randconfig-a015-20200522
i386 randconfig-a011-20200522
i386 randconfig-a016-20200522
i386 randconfig-a014-20200522
i386 randconfig-a013-20200521
i386 randconfig-a012-20200521
i386 randconfig-a015-20200521
i386 randconfig-a011-20200521
i386 randconfig-a016-20200521
i386 

[driver-core:driver-core-linus] BUILD SUCCESS 4ef12f7198023c09ad6d25b652bd8748c965c7fa

2020-05-22 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-linus
branch HEAD: 4ef12f7198023c09ad6d25b652bd8748c965c7fa  kobject: Make sure the 
parent does not get released before its children

elapsed time: 1454m

configs tested: 86
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sparcallyesconfig
mips allyesconfig
m68k allyesconfig
i386  allnoconfig
i386defconfig
i386  debian-10.3
i386 allyesconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
x86_64   randconfig-a013-20200520
x86_64   randconfig-a015-20200520
x86_64   randconfig-a016-20200520
x86_64   randconfig-a012-20200520
x86_64   randconfig-a014-20200520
x86_64   randconfig-a011-20200520
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
x86_64  defconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig
um   allmodconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[driver-core:driver-core-testing] BUILD SUCCESS 2cd38fd15e4ebcfe917a443734820269f8b5ba2b

2020-05-22 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: 2cd38fd15e4ebcfe917a443734820269f8b5ba2b  driver core: Remove 
unnecessary is_fwnode_dev variable in device_add()

elapsed time: 1454m

configs tested: 86
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sparcallyesconfig
mips allyesconfig
m68k allyesconfig
i386  allnoconfig
i386defconfig
i386  debian-10.3
i386 allyesconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
x86_64   randconfig-a013-20200520
x86_64   randconfig-a015-20200520
x86_64   randconfig-a016-20200520
x86_64   randconfig-a012-20200520
x86_64   randconfig-a014-20200520
x86_64   randconfig-a011-20200520
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
x86_64  defconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig
um   allmodconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH] media: staging: tegra-vde: fix runtime pm imbalance on error

2020-05-20 Thread kbuild test robot
Hi Dinghao,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on staging/staging-testing]
[also build test WARNING on linuxtv-media/master v5.7-rc6 next-20200519]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Dinghao-Liu/media-staging-tegra-vde-fix-runtime-pm-imbalance-on-error/20200521-010315
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
8da047603bbcfddda6eb6ebbee0dc52c34badc6e
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 
e6658079aca6d971b4e9d7137a3a2ecbc9c34aec)
reproduce:
wget 
https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O 
~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/staging/media/tegra-vde/vde.c:847:1: warning: unused label 'unlock' 
>> [-Wunused-label]
unlock:
^~~
1 warning generated.

vim +/unlock +847 drivers/staging/media/tegra-vde/vde.c

cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  691  
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  692  static int tegra_vde_ioctl_decode_h264(struct tegra_vde *vde,
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  693 unsigned long vaddr)
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  694  {
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  695  struct device *dev = vde->miscdev.parent;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  696  struct tegra_vde_h264_decoder_ctx ctx;
b1b9b7bee370b5 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2019-06-02  697  struct tegra_vde_h264_frame *frames;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  698  struct tegra_vde_h264_frame __user *frames_user;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  699  struct video_frame *dpb_frames;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  700  struct dma_buf_attachment 
*bitstream_data_dmabuf_attachment;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  701  enum dma_data_direction dma_dir;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  702  dma_addr_t bitstream_data_addr;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  703  dma_addr_t bsev_ptr;
3830e4f2a907ca drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2018-03-17  704  size_t lsize, csize;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  705  size_t bitstream_data_size;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  706  unsigned int macroblocks_nb;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  707  unsigned int read_bytes;
3830e4f2a907ca drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2018-03-17  708  unsigned int cstride;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  709  unsigned int i;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  710  long timeout;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  711  int ret, err;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  712  
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  713  if (copy_from_user(, (void __user *)vaddr, 
sizeof(ctx)))
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  714  return -EFAULT;
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  715  
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  716  ret = tegra_vde_validate_h264_ctx(dev, );
cd6c56feb591f6 drivers/staging/media/tegra-vde/tegra-vde.c Dmitry Osipenko 
2017-12-11  717  if (

[driver-core:driver-core-linus] BUILD SUCCESS 21c27f06587d2c18150d27ca2382a509ec55c482

2020-05-20 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-linus
branch HEAD: 21c27f06587d2c18150d27ca2382a509ec55c482  driver core: Fix 
SYNC_STATE_ONLY device link implementation

elapsed time: 484m

configs tested: 98
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sparcallyesconfig
mips allyesconfig
m68k allyesconfig
i386  allnoconfig
i386defconfig
i386  debian-10.3
i386 allyesconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a006-20200519
i386 randconfig-a005-20200519
i386 randconfig-a001-20200519
i386 randconfig-a003-20200519
i386 randconfig-a004-20200519
i386 randconfig-a002-20200519
x86_64   randconfig-a003-20200519
x86_64   randconfig-a005-20200519
x86_64   randconfig-a004-20200519
x86_64   randconfig-a006-20200519
x86_64   randconfig-a002-20200519
x86_64   randconfig-a001-20200519
i386 randconfig-a012-20200519
i386 randconfig-a014-20200519
i386 randconfig-a016-20200519
i386 randconfig-a011-20200519
i386 randconfig-a015-20200519
i386 randconfig-a013-20200519
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
x86_64  defconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
um   allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation

[driver-core:driver-core-testing] BUILD SUCCESS fefcfc968723caf93318613a08e1f3ad07a6154f

2020-05-20 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: fefcfc968723caf93318613a08e1f3ad07a6154f  driver core: Remove 
check in driver_deferred_probe_force_trigger()

elapsed time: 483m

configs tested: 92
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
mips allyesconfig
m68k allyesconfig
sparcallyesconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a006-20200519
i386 randconfig-a005-20200519
i386 randconfig-a001-20200519
i386 randconfig-a003-20200519
i386 randconfig-a004-20200519
i386 randconfig-a002-20200519
x86_64   randconfig-a003-20200519
x86_64   randconfig-a005-20200519
x86_64   randconfig-a004-20200519
x86_64   randconfig-a006-20200519
x86_64   randconfig-a002-20200519
x86_64   randconfig-a001-20200519
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
x86_64  defconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
umallnoconfig
um  defconfig
um   allmodconfig
um   allyesconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[staging:staging-testing] BUILD SUCCESS 8da047603bbcfddda6eb6ebbee0dc52c34badc6e

2020-05-19 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 8da047603bbcfddda6eb6ebbee0dc52c34badc6e  staging: rtl8192u: Merge 
almost duplicate code

elapsed time: 486m

configs tested: 92
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sparcallyesconfig
mips allyesconfig
m68k allyesconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
powerpc defconfig
i386 randconfig-a006-20200519
i386 randconfig-a005-20200519
i386 randconfig-a001-20200519
i386 randconfig-a003-20200519
i386 randconfig-a004-20200519
i386 randconfig-a002-20200519
x86_64   randconfig-a003-20200519
x86_64   randconfig-a005-20200519
x86_64   randconfig-a004-20200519
x86_64   randconfig-a006-20200519
x86_64   randconfig-a002-20200519
x86_64   randconfig-a001-20200519
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
x86_64  defconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
umallnoconfig
um  defconfig
um   allmodconfig
um   allyesconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


Re: [PATCH V1 6/6] staging: greybus: audio: Enable GB codec, audio module compilation.

2020-05-19 Thread kbuild test robot
Hi Vaibhav,

I love your patch! Perhaps something to improve:

[auto build test WARNING on staging/staging-testing]
[also build test WARNING on v5.7-rc6 next-20200519]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Vaibhav-Agarwal/Enable-Greybus-Audio-codec-driver/20200518-012023
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
cef077e6aa4c7dbe2f23e1201cf705f9540ec467
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 
135b877874fae96b4372c8a3fbfaa8ff44ff86e3)
reproduce:
wget 
https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O 
~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/staging/greybus/audio_helper.c:59:5: warning: no previous prototype 
>> for function 'gbaudio_dapm_link_component_dai_widgets' [-Wmissing-prototypes]
int gbaudio_dapm_link_component_dai_widgets(struct snd_soc_card *card,
^
drivers/staging/greybus/audio_helper.c:59:1: note: declare 'static' if the 
function is not intended to be used outside of this translation unit
int gbaudio_dapm_link_component_dai_widgets(struct snd_soc_card *card,
^
static
>> drivers/staging/greybus/audio_helper.c:112:5: warning: no previous prototype 
>> for function 'gbaudio_dapm_free_controls' [-Wmissing-prototypes]
int gbaudio_dapm_free_controls(struct snd_soc_dapm_context *dapm,
^
drivers/staging/greybus/audio_helper.c:112:1: note: declare 'static' if the 
function is not intended to be used outside of this translation unit
int gbaudio_dapm_free_controls(struct snd_soc_dapm_context *dapm,
^
static
>> drivers/staging/greybus/audio_helper.c:189:5: warning: no previous prototype 
>> for function 'gbaudio_remove_component_controls' [-Wmissing-prototypes]
int gbaudio_remove_component_controls(struct snd_soc_component *component,
^
drivers/staging/greybus/audio_helper.c:189:1: note: declare 'static' if the 
function is not intended to be used outside of this translation unit
int gbaudio_remove_component_controls(struct snd_soc_component *component,
^
static
3 warnings generated.

vim +/gbaudio_dapm_link_component_dai_widgets +59 
drivers/staging/greybus/audio_helper.c

94b08a33fd1bca Vaibhav Agarwal 2020-05-17   58  
94b08a33fd1bca Vaibhav Agarwal 2020-05-17  @59  int 
gbaudio_dapm_link_component_dai_widgets(struct snd_soc_card *card,
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   60  
struct snd_soc_dapm_context *dapm)
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   61  {
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   62  struct 
snd_soc_dapm_widget *dai_w;
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   63  
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   64  /* For each DAI 
widget... */
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   65  
list_for_each_entry(dai_w, >widgets, list) {
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   66  if (dai_w->dapm 
!= dapm)
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   67  
continue;
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   68  switch 
(dai_w->id) {
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   69  case 
snd_soc_dapm_dai_in:
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   70  case 
snd_soc_dapm_dai_out:
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   71  break;
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   72  default:
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   73  
continue;
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   74  }
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   75  
gbaudio_dapm_link_dai_widget(dai_w, card);
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   76  }
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   77  
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   78  return 0;
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   79  }
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   80  
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   81  static void 
gbaudio_dapm_free_path(struct snd_soc_dapm_path *path)
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   82  {
94b08a33fd1bca Vaibhav Agarwal 2020-05-17   83  
list_del(>list_node[SND_SOC_DAPM_DIR_IN]);
94b08a33fd1bca V

Re: [PATCH V1 6/6] staging: greybus: audio: Enable GB codec, audio module compilation.

2020-05-19 Thread kbuild test robot
Hi Vaibhav,

I love your patch! Perhaps something to improve:

[auto build test WARNING on staging/staging-testing]
[also build test WARNING on v5.7-rc6 next-20200518]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Vaibhav-Agarwal/Enable-Greybus-Audio-codec-driver/20200518-012023
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
cef077e6aa4c7dbe2f23e1201cf705f9540ec467
config: nds32-allyesconfig (attached as .config)
compiler: nds32le-linux-gcc (GCC) 9.3.0
reproduce:
wget 
https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O 
~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross 
ARCH=nds32 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/staging/greybus/audio_helper.c:59:5: warning: no previous prototype 
>> for 'gbaudio_dapm_link_component_dai_widgets' [-Wmissing-prototypes]
59 | int gbaudio_dapm_link_component_dai_widgets(struct snd_soc_card *card,
| ^~~
>> drivers/staging/greybus/audio_helper.c:112:5: warning: no previous prototype 
>> for 'gbaudio_dapm_free_controls' [-Wmissing-prototypes]
112 | int gbaudio_dapm_free_controls(struct snd_soc_dapm_context *dapm,
| ^~
>> drivers/staging/greybus/audio_helper.c:189:5: warning: no previous prototype 
>> for 'gbaudio_remove_component_controls' [-Wmissing-prototypes]
189 | int gbaudio_remove_component_controls(struct snd_soc_component *component,
| ^
--
drivers/staging/greybus/audio_topology.c: In function 'find_gb_module':
>> drivers/staging/greybus/audio_topology.c:31:14: warning: variable 'ret' set 
>> but not used [-Wunused-but-set-variable]
31 |  int dev_id, ret;
|  ^~~
drivers/staging/greybus/audio_topology.c: In function 
'gbcodec_mixer_dapm_ctl_get':
>> drivers/staging/greybus/audio_topology.c:380:33: warning: variable 'info' 
>> set but not used [-Wunused-but-set-variable]
380 |  struct gb_audio_ctl_elem_info *info;
| ^~~~

vim +/gbaudio_dapm_link_component_dai_widgets +59 
drivers/staging/greybus/audio_helper.c

94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   58  
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17  @59  int 
gbaudio_dapm_link_component_dai_widgets(struct snd_soc_card *card,
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   60 
struct snd_soc_dapm_context *dapm)
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   61  {
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   62 struct 
snd_soc_dapm_widget *dai_w;
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   63  
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   64 /* For each DAI 
widget... */
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   65 
list_for_each_entry(dai_w, >widgets, list) {
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   66 if (dai_w->dapm 
!= dapm)
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   67 
continue;
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   68 switch 
(dai_w->id) {
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   69 case 
snd_soc_dapm_dai_in:
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   70 case 
snd_soc_dapm_dai_out:
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   71 break;
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   72 default:
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   73 
continue;
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   74 }
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   75 
gbaudio_dapm_link_dai_widget(dai_w, card);
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   76 }
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   77  
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   78 return 0;
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   79  }
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   80  
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   81  static void 
gbaudio_dapm_free_path(struct snd_soc_dapm_path *path)
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   82  {
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   83 
list_del(>list_node[SND_SOC_DAPM_DIR_IN]);
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   84 
list_del(>list_node[SND_SOC_DAPM_DIR_OUT]);
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   85 
list_del(>list_kcontrol);
94b08a33fd1bcaa Vaibhav Agarwal 2020-05-17   86  

Re: [PATCH V1 6/6] staging: greybus: audio: Enable GB codec, audio module compilation.

2020-05-17 Thread kbuild test robot
Hi Vaibhav,

I love your patch! Perhaps something to improve:

[auto build test WARNING on staging/staging-testing]
[also build test WARNING on v5.7-rc5 next-20200515]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Vaibhav-Agarwal/Enable-Greybus-Audio-codec-driver/20200518-012023
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
cef077e6aa4c7dbe2f23e1201cf705f9540ec467
config: i386-allyesconfig (attached as .config)
reproduce:
# apt-get install sparse
# sparse version: v0.6.1-193-gb8fad4bc-dirty
# save the attached .config to linux build tree
make C=1 ARCH=i386 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__'

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 


sparse warnings: (new ones prefixed by >>)

>> drivers/staging/greybus/audio_codec.c:691:36: sparse: sparse: incorrect type 
>> in initializer (different base types) @@expected unsigned long long 
>> [usertype] formats @@got restricteunsigned long long [usertype] formats 
>> @@
>> drivers/staging/greybus/audio_codec.c:691:36: sparse:expected unsigned 
>> long long [usertype] formats
>> drivers/staging/greybus/audio_codec.c:691:36: sparse:got restricted 
>> snd_pcm_format_t [usertype]
   drivers/staging/greybus/audio_codec.c:701:36: sparse: sparse: incorrect type 
in initializer (different base types) @@expected unsigned long long 
[usertype] formats @@got restricteunsigned long long [usertype] formats @@
   drivers/staging/greybus/audio_codec.c:701:36: sparse:expected unsigned 
long long [usertype] formats
   drivers/staging/greybus/audio_codec.c:701:36: sparse:got restricted 
snd_pcm_format_t [usertype]
--
>> drivers/staging/greybus/audio_module.c:223:25: sparse: sparse: incorrect 
>> type in assignment (different base types) @@expected restricted __le16 
>> [usertype] data_cport @@got tricted __le16 [usertype] data_cport @@
>> drivers/staging/greybus/audio_module.c:223:25: sparse:expected 
>> restricted __le16 [usertype] data_cport
>> drivers/staging/greybus/audio_module.c:223:25: sparse:got unsigned short 
>> [usertype] intf_cport_id
--
>> drivers/staging/greybus/audio_topology.c:183:24: sparse: sparse: cast to 
>> restricted snd_ctl_elem_type_t
>> drivers/staging/greybus/audio_topology.c:460:40: sparse: sparse: restricted 
>> __le32 degrades to integer
>> drivers/staging/greybus/audio_topology.c:691:41: sparse: sparse: incorrect 
>> type in assignment (different base types) @@expected unsigned int access 
>> @@got restricted __le3unsigned int access @@
>> drivers/staging/greybus/audio_topology.c:691:41: sparse:expected 
>> unsigned int access
>> drivers/staging/greybus/audio_topology.c:691:41: sparse:got restricted 
>> __le32 [usertype] access
>> drivers/staging/greybus/audio_topology.c:678:14: sparse: sparse: restricted 
>> snd_ctl_elem_iface_t degrades to integer
>> drivers/staging/greybus/audio_topology.c:746:44: sparse: sparse: incorrect 
>> type in assignment (different base types) @@expected unsigned int @@
>> got restrunsigned int @@
>> drivers/staging/greybus/audio_topology.c:746:44: sparse:expected 
>> unsigned int
>> drivers/staging/greybus/audio_topology.c:746:44: sparse:got restricted 
>> __le32
   drivers/staging/greybus/audio_topology.c:748:52: sparse: sparse: incorrect 
type in assignment (different base types) @@expected unsigned int @@got 
restrunsigned int @@
   drivers/staging/greybus/audio_topology.c:748:52: sparse:expected 
unsigned int
   drivers/staging/greybus/audio_topology.c:748:52: sparse:got restricted 
__le32
   drivers/staging/greybus/audio_topology.c:803:42: sparse: sparse: restricted 
__le32 degrades to integer
>> drivers/staging/greybus/audio_topology.c:806:50: sparse: sparse: incorrect 
>> type in assignment (different base types) @@expected restricted __le32 
>> @@got icted __le32 @@
>> drivers/staging/greybus/audio_topology.c:806:50: sparse:expected 
>> restricted __le32
>> drivers/staging/greybus/audio_topology.c:806:50: sparse:got unsigned int
   drivers/staging/greybus/audio_topology.c:815:50: sparse: sparse: restricted 
__le32 degrades to integer
   drivers/staging/greybus/audio_topology.c:818:58: sparse: sparse: incorrect 
type in assignment (different base types) @@expected restricted __le32 @@   
 got icted __le32 @@
   drivers/staging/greybus/audio_topology.c:818:58: sparse:expected 
restricted _

Re: [PATCH] staging: rtl8192u: Merge almost duplicate code

2020-05-17 Thread kbuild test robot
Hi Pascal,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on staging/staging-testing]
[also build test WARNING on v5.7-rc5 next-20200515]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Pascal-Terjan/staging-rtl8192u-Merge-almost-duplicate-code/20200518-005912
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
cef077e6aa4c7dbe2f23e1201cf705f9540ec467
config: i386-allyesconfig (attached as .config)
reproduce:
# apt-get install sparse
# sparse version: v0.6.1-193-gb8fad4bc-dirty
# save the attached .config to linux build tree
make C=1 ARCH=i386 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__'

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 


sparse warnings: (new ones prefixed by >>)

   /usr/lib/gcc/x86_64-linux-gnu/7/include/stddef.h:417:9: sparse: sparse: 
preprocessor token offsetof redefined
   include/linux/stddef.h:17:9: sparse: this was the original definition
>> drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c:523:6: sparse: sparse: 
>> symbol 'indicate_packets' was not declared. Should it be static?

Please review and possibly fold the followup patch.

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


.config.gz
Description: application/gzip
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[RFC PATCH] staging: rtl8192u: indicate_packets() can be static

2020-05-17 Thread kbuild test robot


Signed-off-by: kbuild test robot 
---
 ieee80211_rx.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c 
b/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c
index 3309f64be4c94..bceff1ba3d7d4 100644
--- a/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c
+++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c
@@ -520,7 +520,7 @@ static bool AddReorderEntry(struct rx_ts_record *pTS, 
struct rx_reorder_entry *p
return true;
 }
 
-void indicate_packets(struct ieee80211_device *ieee, struct ieee80211_rxb *rxb)
+static void indicate_packets(struct ieee80211_device *ieee, struct 
ieee80211_rxb *rxb)
 {
struct net_device_stats *stats = >stats;
struct net_device *dev = ieee->dev;
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[driver-core:driver-core-testing] BUILD SUCCESS 93d2e4322aa74c1ad1e8c2160608eb9a960d69ff

2020-05-15 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: 93d2e4322aa74c1ad1e8c2160608eb9a960d69ff  of: platform: Batch 
fwnode parsing when adding all top level devices

elapsed time: 483m

configs tested: 101
configs skipped: 3

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sparcallyesconfig
m68k allyesconfig
mips allyesconfig
powerpc pq2fads_defconfig
c6xevmc6678_defconfig
parisc  defconfig
armu300_defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a006-20200515
i386 randconfig-a005-20200515
i386 randconfig-a003-20200515
i386 randconfig-a001-20200515
i386 randconfig-a004-20200515
i386 randconfig-a002-20200515
i386 randconfig-a012-20200515
i386 randconfig-a016-20200515
i386 randconfig-a014-20200515
i386 randconfig-a011-20200515
i386 randconfig-a013-20200515
i386 randconfig-a015-20200515
x86_64   randconfig-a005-20200515
x86_64   randconfig-a003-20200515
x86_64   randconfig-a006-20200515
x86_64   randconfig-a004-20200515
x86_64   randconfig-a001-20200515
x86_64   randconfig-a002-20200515
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
x86_64  defconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
um   allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25

[staging:staging-testing] BUILD SUCCESS cef077e6aa4c7dbe2f23e1201cf705f9540ec467

2020-05-15 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: cef077e6aa4c7dbe2f23e1201cf705f9540ec467  Merge tag 'iio-for-5.8b' 
of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-next

elapsed time: 483m

configs tested: 107
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sparcallyesconfig
mips allyesconfig
m68k allyesconfig
h8300   h8s-sim_defconfig
arm   sama5_defconfig
m68k  amiga_defconfig
mips  pistachio_defconfig
armmps2_defconfig
sh   cayman_defconfig
arc defconfig
armshmobile_defconfig
m68k   m5208evb_defconfig
parisc  defconfig
sparc64  allmodconfig
mips  lasat_defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a006-20200515
i386 randconfig-a005-20200515
i386 randconfig-a003-20200515
i386 randconfig-a001-20200515
i386 randconfig-a004-20200515
i386 randconfig-a002-20200515
i386 randconfig-a012-20200515
i386 randconfig-a016-20200515
i386 randconfig-a014-20200515
i386 randconfig-a013-20200515
i386 randconfig-a011-20200515
i386 randconfig-a015-20200515
x86_64   randconfig-a005-20200515
x86_64   randconfig-a003-20200515
x86_64   randconfig-a006-20200515
x86_64   randconfig-a004-20200515
x86_64   randconfig-a001-20200515
x86_64   randconfig-a002-20200515
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
x86_64  defconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
um   allmodconfig
umallnoconfig
um   allyesconfig
um  

[staging:staging-linus] BUILD SUCCESS bcb392871813ef9e233645557d6dd85bb1a6f41a

2020-05-15 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-linus
branch HEAD: bcb392871813ef9e233645557d6dd85bb1a6f41a  Merge tag 
'iio-fixes-for-5.7b' of 
https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-linus

elapsed time: 484m

configs tested: 101
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
mips allyesconfig
m68k allyesconfig
sparcallyesconfig
arc defconfig
armshmobile_defconfig
m68k   m5208evb_defconfig
parisc  defconfig
sparc64  allmodconfig
mips  lasat_defconfig
i386  allnoconfig
i386defconfig
i386  debian-10.3
i386 allyesconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a006-20200515
i386 randconfig-a005-20200515
i386 randconfig-a003-20200515
i386 randconfig-a001-20200515
i386 randconfig-a004-20200515
i386 randconfig-a002-20200515
i386 randconfig-a012-20200515
i386 randconfig-a016-20200515
i386 randconfig-a014-20200515
i386 randconfig-a011-20200515
i386 randconfig-a013-20200515
i386 randconfig-a015-20200515
x86_64   randconfig-a005-20200515
x86_64   randconfig-a003-20200515
x86_64   randconfig-a006-20200515
x86_64   randconfig-a004-20200515
x86_64   randconfig-a001-20200515
x86_64   randconfig-a002-20200515
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
x86_64  defconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
um   allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  

Re: [PATCH v2 3/7] staging: most: usb: check number of reported endpoints

2020-05-14 Thread kbuild test robot
Hi Christian,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on staging/staging-testing]
[also build test WARNING on usb/usb-testing linus/master v5.7-rc5 next-20200514]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Christian-Gromm/staging-most-usb-fix-issues-found-in-code-audit/20200514-232235
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
8a01032e02c8a0fb3e9f33791023b62dee73cc03
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 
a52f10b5a382c040e7ad1ce933cda6c07a4b3a8d)
reproduce:
wget 
https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O 
~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/staging/most/usb/usb.c:1010:6: warning: variable 'ret' is used 
>> uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized]
if (!mdev->busy_urbs)
^~~~
drivers/staging/most/usb/usb.c:1092:9: note: uninitialized use occurs here
return ret;
^~~
drivers/staging/most/usb/usb.c:1010:2: note: remove the 'if' if its condition 
is always false
if (!mdev->busy_urbs)
^
drivers/staging/most/usb/usb.c:1005:6: warning: variable 'ret' is used 
uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized]
if (!mdev->ep_address)
^
drivers/staging/most/usb/usb.c:1092:9: note: uninitialized use occurs here
return ret;
^~~
drivers/staging/most/usb/usb.c:1005:2: note: remove the 'if' if its condition 
is always false
if (!mdev->ep_address)
^~
drivers/staging/most/usb/usb.c:999:6: warning: variable 'ret' is used 
uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized]
if (!mdev->cap)
^~
drivers/staging/most/usb/usb.c:1092:9: note: uninitialized use occurs here
return ret;
^~~
drivers/staging/most/usb/usb.c:999:2: note: remove the 'if' if its condition is 
always false
if (!mdev->cap)
^~~
drivers/staging/most/usb/usb.c:995:6: warning: variable 'ret' is used 
uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized]
if (!mdev->conf)
^~~
drivers/staging/most/usb/usb.c:1092:9: note: uninitialized use occurs here
return ret;
^~~
drivers/staging/most/usb/usb.c:995:2: note: remove the 'if' if its condition is 
always false
if (!mdev->conf)
^~~~
drivers/staging/most/usb/usb.c:953:9: note: initialize the variable 'ret' to 
silence this warning
int ret;
^
= 0
4 warnings generated.

vim +1010 drivers/staging/most/usb/usb.c

869d3acd488c28 drivers/staging/most/usb/usb.c Christian Gromm 
2018-09-28   923  
723de0f9171eeb drivers/staging/most/usb/usb.c Christian Gromm 
2020-01-23   924  static void release_mdev(struct device *dev)
723de0f9171eeb drivers/staging/most/usb/usb.c Christian Gromm 
2020-01-23   925  {
723de0f9171eeb drivers/staging/most/usb/usb.c Christian Gromm 
2020-01-23   926  struct most_dev *mdev = to_mdev_from_dev(dev);
723de0f9171eeb drivers/staging/most/usb/usb.c Christian Gromm 
2020-01-23   927  
723de0f9171eeb drivers/staging/most/usb/usb.c Christian Gromm 
2020-01-23   928  kfree(mdev);
723de0f9171eeb drivers/staging/most/usb/usb.c Christian Gromm 
2020-01-23   929  }
a4198cdf0c3460 drivers/staging/most/hdm-usb/hdm_usb.c Christian Gromm 
2015-07-24   930  /**
a4198cdf0c3460 drivers/staging/most/hdm-usb/hdm_usb.c Christian Gromm 
2015-07-24   931   * hdm_probe - probe function of USB device driver
a4198cdf0c3460 drivers/staging/most/hdm-usb/hdm_usb.c Christian Gromm 
2015-07-24   932   * @interface: Interface of the attached USB device
a4198cdf0c3460 drivers/staging/most/hdm-usb/hdm_usb.c Christian Gromm 
2015-07-24   933   * @id: Pointer to the USB ID table.
a4198cdf0c3460 drivers/staging/most/hdm-usb/hdm_usb.c Christian Gromm 
2015-07-24   934   *
a4198cdf0c3460 drivers/staging/most/hdm-usb/hdm_usb.c Christian Gromm 
2015-07-24   935   * This allocates and initializes the device instance, adds 
the new
a4198cdf0c3460 drivers/staging/most/hdm-usb/hdm_usb.c Christian Gromm 
2015-07-24   936   * entry to the internal list, scans the USB descriptors and 
registers
a4198cdf0c3460 drivers/staging/most/hdm-usb/hdm_usb.c Chr

Re: [PATCH v2 4/8] drivers: most: usb: check number of reported endpoints

2020-05-14 Thread kbuild test robot
Hi Christian,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on staging/staging-testing]
[also build test WARNING on usb/usb-testing linus/master v5.7-rc5 next-20200514]
[cannot apply to balbi-usb/next peter.chen-usb/ci-for-usb-next]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Christian-Gromm/staging-most-move-USB-adapter-driver-to-stable-branch/20200514-183525
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
8a01032e02c8a0fb3e9f33791023b62dee73cc03
config: x86_64-allyesconfig (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 
a52f10b5a382c040e7ad1ce933cda6c07a4b3a8d)
reproduce:
wget 
https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O 
~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/most/most_usb.c:1104:6: warning: variable 'ret' is used 
>> uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized]
if (!mdev->busy_urbs)
^~~~
drivers/most/most_usb.c:1186:9: note: uninitialized use occurs here
return ret;
^~~
drivers/most/most_usb.c:1104:2: note: remove the 'if' if its condition is 
always false
if (!mdev->busy_urbs)
^
drivers/most/most_usb.c:1099:6: warning: variable 'ret' is used uninitialized 
whenever 'if' condition is true [-Wsometimes-uninitialized]
if (!mdev->ep_address)
^
drivers/most/most_usb.c:1186:9: note: uninitialized use occurs here
return ret;
^~~
drivers/most/most_usb.c:1099:2: note: remove the 'if' if its condition is 
always false
if (!mdev->ep_address)
^~
drivers/most/most_usb.c:1093:6: warning: variable 'ret' is used uninitialized 
whenever 'if' condition is true [-Wsometimes-uninitialized]
if (!mdev->cap)
^~
drivers/most/most_usb.c:1186:9: note: uninitialized use occurs here
return ret;
^~~
drivers/most/most_usb.c:1093:2: note: remove the 'if' if its condition is 
always false
if (!mdev->cap)
^~~
drivers/most/most_usb.c:1089:6: warning: variable 'ret' is used uninitialized 
whenever 'if' condition is true [-Wsometimes-uninitialized]
if (!mdev->conf)
^~~
drivers/most/most_usb.c:1186:9: note: uninitialized use occurs here
return ret;
^~~
drivers/most/most_usb.c:1089:2: note: remove the 'if' if its condition is 
always false
if (!mdev->conf)
^~~~
drivers/most/most_usb.c:1047:9: note: initialize the variable 'ret' to silence 
this warning
int ret;
^
= 0
4 warnings generated.

vim +1104 drivers/most/most_usb.c

56c7d34c835125c6 Christian Gromm 2020-05-14  1017  
56c7d34c835125c6 Christian Gromm 2020-05-14  1018  static void 
release_mdev(struct device *dev)
56c7d34c835125c6 Christian Gromm 2020-05-14  1019  {
56c7d34c835125c6 Christian Gromm 2020-05-14  1020   struct most_dev *mdev = 
to_mdev_from_dev(dev);
56c7d34c835125c6 Christian Gromm 2020-05-14  1021  
56c7d34c835125c6 Christian Gromm 2020-05-14  1022   kfree(mdev);
56c7d34c835125c6 Christian Gromm 2020-05-14  1023  }
56c7d34c835125c6 Christian Gromm 2020-05-14  1024  /**
56c7d34c835125c6 Christian Gromm 2020-05-14  1025   * hdm_probe - probe 
function of USB device driver
56c7d34c835125c6 Christian Gromm 2020-05-14  1026   * @interface: Interface of 
the attached USB device
56c7d34c835125c6 Christian Gromm 2020-05-14  1027   * @id: Pointer to the USB 
ID table.
56c7d34c835125c6 Christian Gromm 2020-05-14  1028   *
56c7d34c835125c6 Christian Gromm 2020-05-14  1029   * This allocates and 
initializes the device instance, adds the new
56c7d34c835125c6 Christian Gromm 2020-05-14  1030   * entry to the internal 
list, scans the USB descriptors and registers
56c7d34c835125c6 Christian Gromm 2020-05-14  1031   * the interface with the 
core.
56c7d34c835125c6 Christian Gromm 2020-05-14  1032   * Additionally, the DCI 
objects are created and the hardware is sync'd.
56c7d34c835125c6 Christian Gromm 2020-05-14  1033   *
56c7d34c835125c6 Christian Gromm 2020-05-14  1034   * Return 0 on success. In 
case of an error a negative number is returned.
56c7d34c835125c6 Christian Gromm 2020-05-14  1035   */
56c7d34c835125c6 Christian Gromm 2020-05-14  1036  static int
56c7d34c835125c6 Christian Gromm 2020-05-14  1037  hdm_probe(struct 
usb_interface *interface, const struct usb_device_

[staging:staging-testing] BUILD SUCCESS 8a01032e02c8a0fb3e9f33791023b62dee73cc03

2020-05-13 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 8a01032e02c8a0fb3e9f33791023b62dee73cc03  staging: vt6656: Remove 
logically dead code

elapsed time: 485m

configs tested: 138
configs skipped: 9

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
m68k allyesconfig
sparcallyesconfig
h8300 edosk2674_defconfig
mips decstation_defconfig
sh  rsk7201_defconfig
mips  rm200_defconfig
riscvnommu_virt_defconfig
mips  pistachio_defconfig
xtensa   alldefconfig
sh   se7722_defconfig
openrisc alldefconfig
armcerfcube_defconfig
arm assabet_defconfig
arm davinci_all_defconfig
arc  axs101_defconfig
m68kmvme16x_defconfig
arc  alldefconfig
s390   zfcpdump_defconfig
m68k   m5249evb_defconfig
m68k  sun3x_defconfig
sh   se7619_defconfig
shecovec24-romimage_defconfig
archsdk_defconfig
arm  iop32x_defconfig
riscv allnoconfig
armshmobile_defconfig
powerpcgamecube_defconfig
sh   se7343_defconfig
m68k   m5475evb_defconfig
arm s3c2410_defconfig
sh   rts7751r2dplus_defconfig
arm shannon_defconfig
nios2alldefconfig
arm   corgi_defconfig
arm lpc32xx_defconfig
mips  loongson3_defconfig
mips loongson1c_defconfig
c6xevmc6472_defconfig
um   alldefconfig
armclps711x_defconfig
powerpcadder875_defconfig
pariscgeneric-64bit_defconfig
armvexpress_defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a006-20200513
i386 randconfig-a005-20200513
i386 randconfig-a003-20200513
i386 randconfig-a001-20200513
i386 

[staging:staging-linus] BUILD SUCCESS f0b9d875faa4499afe3381404c3795e9da84bc00

2020-05-13 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-linus
branch HEAD: f0b9d875faa4499afe3381404c3795e9da84bc00  staging: wfx: unlock on 
error path

elapsed time: 480m

configs tested: 142
configs skipped: 10

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
sparcallyesconfig
m68k allyesconfig
h8300 edosk2674_defconfig
mips decstation_defconfig
sh  rsk7201_defconfig
mips  rm200_defconfig
riscvnommu_virt_defconfig
mips  pistachio_defconfig
xtensa   alldefconfig
sh   se7722_defconfig
openrisc alldefconfig
armcerfcube_defconfig
arm assabet_defconfig
arm davinci_all_defconfig
arc  axs101_defconfig
m68kmvme16x_defconfig
arc  alldefconfig
sh  sdk7786_defconfig
armhisi_defconfig
arm  exynos_defconfig
armmps2_defconfig
s390   zfcpdump_defconfig
m68k   m5249evb_defconfig
m68k  sun3x_defconfig
sh   se7619_defconfig
shecovec24-romimage_defconfig
archsdk_defconfig
arm  iop32x_defconfig
riscv allnoconfig
arm  moxart_defconfig
sh   allmodconfig
sh espt_defconfig
armxcep_defconfig
microblaze  defconfig
arm orion5x_defconfig
armshmobile_defconfig
powerpcgamecube_defconfig
sh   se7343_defconfig
m68k   m5475evb_defconfig
arm s3c2410_defconfig
sh   rts7751r2dplus_defconfig
mips loongson1c_defconfig
c6xevmc6472_defconfig
um   alldefconfig
armclps711x_defconfig
powerpcadder875_defconfig
pariscgeneric-64bit_defconfig
armvexpress_defconfig
i386  allnoconfig
i386defconfig
i386  debian-10.3
i386 allyesconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
shallnoconfig
microblazeallnoconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a006-20200513

Re: [PATCH] staging: android: ashmem: Fixed a issue related to file_operations

2020-05-13 Thread kbuild test robot
Hi Anmol,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on staging/staging-testing]
[also build test ERROR on v5.7-rc5 next-20200512]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Anmol/staging-android-ashmem-Fixed-a-issue-related-to-file_operations/20200513-194410
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
1ff4388a06eb001efbc272754ef750c0b97817cb
config: um-allmodconfig (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce:
# save the attached .config to linux build tree
make ARCH=um 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All errors (new ones prefixed by >>):

drivers/staging/android/ashmem.c: In function 'ashmem_mmap':
>> drivers/staging/android/ashmem.c:418:16: error: assignment of read-only 
>> variable 'vmfile_fops'
vmfile_fops = *vmfile->f_op;
^
>> drivers/staging/android/ashmem.c:419:21: error: assignment of member 'mmap' 
>> in read-only object
vmfile_fops.mmap = ashmem_vmfile_mmap;
^
>> drivers/staging/android/ashmem.c:420:34: error: assignment of member 
>> 'get_unmapped_area' in read-only object
vmfile_fops.get_unmapped_area =
^

vim +/vmfile_fops +418 drivers/staging/android/ashmem.c

6d67b0290b4b84 Suren Baghdasaryan 2020-01-27  367  
11980c2ac4ccfa Robert Love2011-12-20  368  static int 
ashmem_mmap(struct file *file, struct vm_area_struct *vma)
11980c2ac4ccfa Robert Love2011-12-20  369  {
823a00202dabb1 Anmol  2020-05-13  370   static const struct 
file_operations vmfile_fops;
11980c2ac4ccfa Robert Love2011-12-20  371   struct ashmem_area 
*asma = file->private_data;
11980c2ac4ccfa Robert Love2011-12-20  372   int ret = 0;
11980c2ac4ccfa Robert Love2011-12-20  373  
11980c2ac4ccfa Robert Love2011-12-20  374   
mutex_lock(_mutex);
11980c2ac4ccfa Robert Love2011-12-20  375  
11980c2ac4ccfa Robert Love2011-12-20  376   /* user needs to 
SET_SIZE before mapping */
59848d6aded59a Alistair Strachan  2018-06-19  377   if (!asma->size) {
11980c2ac4ccfa Robert Love2011-12-20  378   ret = -EINVAL;
11980c2ac4ccfa Robert Love2011-12-20  379   goto out;
11980c2ac4ccfa Robert Love2011-12-20  380   }
11980c2ac4ccfa Robert Love2011-12-20  381  
8632c614565d0c Alistair Strachan  2018-06-19  382   /* requested mapping 
size larger than object size */
8632c614565d0c Alistair Strachan  2018-06-19  383   if (vma->vm_end - 
vma->vm_start > PAGE_ALIGN(asma->size)) {
11980c2ac4ccfa Robert Love2011-12-20  384   ret = -EINVAL;
11980c2ac4ccfa Robert Love2011-12-20  385   goto out;
11980c2ac4ccfa Robert Love2011-12-20  386   }
11980c2ac4ccfa Robert Love2011-12-20  387  
11980c2ac4ccfa Robert Love2011-12-20  388   /* requested protection 
bits must match our allowed protection mask */
59848d6aded59a Alistair Strachan  2018-06-19  389   if ((vma->vm_flags & 
~calc_vm_prot_bits(asma->prot_mask, 0)) &
59848d6aded59a Alistair Strachan  2018-06-19  390   
calc_vm_prot_bits(PROT_MASK, 0)) {
11980c2ac4ccfa Robert Love2011-12-20  391   ret = -EPERM;
11980c2ac4ccfa Robert Love2011-12-20  392   goto out;
11980c2ac4ccfa Robert Love2011-12-20  393   }
56f76fc68492af Arve Hjønnevåg 2011-12-20  394   vma->vm_flags &= 
~calc_vm_may_flags(~asma->prot_mask);
11980c2ac4ccfa Robert Love2011-12-20  395  
11980c2ac4ccfa Robert Love2011-12-20  396   if (!asma->file) {
11980c2ac4ccfa Robert Love2011-12-20  397   char *name = 
ASHMEM_NAME_DEF;
11980c2ac4ccfa Robert Love2011-12-20  398   struct file 
*vmfile;
11980c2ac4ccfa Robert Love2011-12-20  399  
11980c2ac4ccfa Robert Love2011-12-20  400   if 
(asma->name[ASHMEM_NAME_PREFIX_LEN] != '\0')
11980c2ac4ccfa Robert Love2011-12-20  401   name = 
asma->name;
11980c2ac4ccfa Robert Love2011-12-20  402  
11980c2ac4ccfa Robert Love2011-12-20  403   /* ... and 
allocate the backing shmem file */
11980c2ac4ccfa Robert Love2011-12-20  404   vmfile = 
shmem_file_setup(name, asma->size, vma->vm_flags);
7f44cb0ba88b40 Viresh Kumar   2015-07-31  405   if 
(IS_ERR(vmfile)) {
11980c2ac4ccfa Robert Love2011-12-20  406   ret = 
PTR_ERR(vmfile);
11980c2ac4ccfa Robert Love

Re: [PATCH 13/17] staging: wfx: fix endianness of the field 'len'

2020-05-11 Thread kbuild test robot
Hi Jerome,

I love your patch! Perhaps something to improve:

[auto build test WARNING on staging/staging-testing]
[also build test WARNING on next-20200511]
[cannot apply to v5.7-rc5]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/Jerome-Pouiller/staging-wfx-fix-support-for-big-endian-hosts/20200512-031750
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
ae73e7784871ebe2c43da619b4a1e2c9ff81508d
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 9.3.0
reproduce:
wget 
https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O 
~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day GCC_VERSION=9.3.0 make.cross ARCH=m68k 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>):

   In file included from include/linux/byteorder/big_endian.h:5,
from arch/m68k/include/uapi/asm/byteorder.h:5,
from include/asm-generic/bitops/le.h:6,
from arch/m68k/include/asm/bitops.h:528,
from include/linux/bitops.h:29,
from include/linux/kernel.h:12,
from include/asm-generic/bug.h:19,
from arch/m68k/include/asm/bug.h:32,
from include/linux/bug.h:5,
from include/linux/gpio/consumer.h:6,
from drivers/staging/wfx/bh.c:8:
   drivers/staging/wfx/bh.c: In function 'tx_helper':
>> drivers/staging/wfx/bh.c:202:39: warning: passing argument 1 of '__swab16s' 
>> makes pointer from integer without a cast [-Wint-conversion]
 202 |  cpu_to_le16s(((struct hif_msg *)data)->len);
   include/uapi/linux/byteorder/big_endian.h:96:38: note: in definition of 
macro '__cpu_to_le16s'
  96 | #define __cpu_to_le16s(x) __swab16s((x))
 |  ^
>> drivers/staging/wfx/bh.c:202:2: note: in expansion of macro 'cpu_to_le16s'
 202 |  cpu_to_le16s(((struct hif_msg *)data)->len);
 |  ^~~~
   In file included from include/linux/swab.h:5,
from include/uapi/linux/byteorder/big_endian.h:13,
from include/linux/byteorder/big_endian.h:5,
from arch/m68k/include/uapi/asm/byteorder.h:5,
from include/asm-generic/bitops/le.h:6,
from arch/m68k/include/asm/bitops.h:528,
from include/linux/bitops.h:29,
from include/linux/kernel.h:12,
from include/asm-generic/bug.h:19,
from arch/m68k/include/asm/bug.h:32,
from include/linux/bug.h:5,
from include/linux/gpio/consumer.h:6,
from drivers/staging/wfx/bh.c:8:
   include/uapi/linux/swab.h:240:37: note: expected '__u16 *' {aka 'short 
unsigned int *'} but argument is of type 'u16' {aka 'short unsigned int'}
 240 | static inline void __swab16s(__u16 *p)
 |  ~~~^

vim +/__swab16s +202 drivers/staging/wfx/bh.c

   169  
   170  static void tx_helper(struct wfx_dev *wdev, struct hif_msg *hif)
   171  {
   172  int ret;
   173  void *data;
   174  bool is_encrypted = false;
   175  size_t len = hif->len;
   176  
   177  WARN(len < sizeof(*hif), "try to send corrupted data");
   178  
   179  hif->seqnum = wdev->hif.tx_seqnum;
   180  wdev->hif.tx_seqnum = (wdev->hif.tx_seqnum + 1) % 
(HIF_COUNTER_MAX + 1);
   181  
   182  if (wfx_is_secure_command(wdev, hif->id)) {
   183  len = round_up(len - sizeof(hif->len), 16) + 
sizeof(hif->len) +
   184  sizeof(struct hif_sl_msg_hdr) +
   185  sizeof(struct hif_sl_tag);
   186  // AES support encryption in-place. However, mac80211 
access to
   187  // 802.11 header after frame was sent (to get MAC 
addresses).
   188  // So, keep origin buffer clear.
   189  data = kmalloc(len, GFP_KERNEL);
   190  if (!data)
   191  goto end;
   192  is_encrypted = true;
   193  ret = wfx_sl_encode(wdev, hif, data);
   194  if (ret)
   195  goto end;
   196  } else {
   197  data = hif;
   198  }
   199  WARN(len > wdev->hw_caps.size_inp_ch_buf,
   200   "%s: 

[staging:staging-next] BUILD SUCCESS ae73e7784871ebe2c43da619b4a1e2c9ff81508d

2020-05-11 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-next
branch HEAD: ae73e7784871ebe2c43da619b4a1e2c9ff81508d  Merge 5.7-rc5 into 
staging-next

elapsed time: 486m

configs tested: 100
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sparcallyesconfig
m68k allyesconfig
parisc   allyesconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a006-20200511
i386 randconfig-a005-20200511
i386 randconfig-a003-20200511
i386 randconfig-a001-20200511
i386 randconfig-a004-20200511
i386 randconfig-a002-20200511
x86_64   randconfig-a016-20200511
x86_64   randconfig-a012-20200511
x86_64   randconfig-a014-20200511
x86_64   randconfig-a005-20200511
x86_64   randconfig-a003-20200511
x86_64   randconfig-a006-20200511
x86_64   randconfig-a004-20200511
x86_64   randconfig-a001-20200511
x86_64   randconfig-a002-20200511
i386 randconfig-a012-20200511
i386 randconfig-a016-20200511
i386 randconfig-a014-20200511
i386 randconfig-a011-20200511
i386 randconfig-a013-20200511
i386 randconfig-a015-20200511
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
sparc   defconfig
sparc64   allnoconfig
sparc64  allmodconfig
sparc64 defconfig
sparc64  allyesconfig
um   allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, Intel Corporation

[driver-core:driver-core-testing] BUILD SUCCESS c8be6af9ef16cf44d690fc227a0d2dd7a526ef05

2020-05-11 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: c8be6af9ef16cf44d690fc227a0d2dd7a526ef05  Merge v5.7-rc5 into 
driver-core-next

elapsed time: 485m

configs tested: 100
configs skipped: 1

The following configs have been built successfully.
More configs may be tested in the coming days.

arm defconfig
arm  allyesconfig
arm  allmodconfig
arm   allnoconfig
arm64allyesconfig
arm64   defconfig
arm64allmodconfig
arm64 allnoconfig
sparcallyesconfig
m68k allyesconfig
i386 allyesconfig
i386defconfig
i386  debian-10.3
i386  allnoconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
m68k allmodconfig
m68k  allnoconfig
m68k   sun3_defconfig
m68kdefconfig
nios2   defconfig
nios2allyesconfig
openriscdefconfig
c6x  allyesconfig
c6x   allnoconfig
openrisc allyesconfig
nds32   defconfig
nds32 allnoconfig
csky allyesconfig
cskydefconfig
alpha   defconfig
alphaallyesconfig
xtensa   allyesconfig
h8300allyesconfig
h8300allmodconfig
xtensa  defconfig
arc defconfig
arc  allyesconfig
sh   allmodconfig
shallnoconfig
microblazeallnoconfig
mips allyesconfig
mips  allnoconfig
mips allmodconfig
pariscallnoconfig
parisc  defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc defconfig
powerpc  allyesconfig
powerpc  rhel-kconfig
powerpc  allmodconfig
powerpc   allnoconfig
i386 randconfig-a006-20200511
i386 randconfig-a005-20200511
i386 randconfig-a003-20200511
i386 randconfig-a001-20200511
i386 randconfig-a004-20200511
i386 randconfig-a002-20200511
x86_64   randconfig-a016-20200511
x86_64   randconfig-a012-20200511
x86_64   randconfig-a014-20200511
i386 randconfig-a012-20200511
i386 randconfig-a016-20200511
i386 randconfig-a014-20200511
i386 randconfig-a011-20200511
i386 randconfig-a013-20200511
i386 randconfig-a015-20200511
x86_64   randconfig-a005-20200511
x86_64   randconfig-a003-20200511
x86_64   randconfig-a006-20200511
x86_64   randconfig-a004-20200511
x86_64   randconfig-a001-20200511
x86_64   randconfig-a002-20200511
riscvallyesconfig
riscv allnoconfig
riscv   defconfig
riscvallmodconfig
s390 allyesconfig
s390  allnoconfig
s390 allmodconfig
s390defconfig
sparc   defconfig
sparc64 defconfig
sparc64   allnoconfig
sparc64  allyesconfig
sparc64  allmodconfig
um   allmodconfig
umallnoconfig
um   allyesconfig
um  defconfig
x86_64   rhel
x86_64   rhel-7.6
x86_64rhel-7.6-kselftests
x86_64 rhel-7.2-clear
x86_64lkp
x86_64  fedora-25
x86_64  kexec

---
0-DAY CI Kernel Test Service, 

[driver-core:driver-core-testing] BUILD SUCCESS c78c31b374a68be79cb4a03ef5b6c187f034e903

2020-05-05 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: c78c31b374a68be79cb4a03ef5b6c187f034e903  Revert "Revert "driver 
core: Set fw_devlink to "permissive" behavior by default""

elapsed time: 671m

configs tested: 203
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
sparcallyesconfig
pariscallnoconfig
powerpc defconfig
powerpc   defconfig-4
powerpc   defconfig-5
powerpc   defconfig-3
microblazenommu_defconfig
i386defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   bvme6000_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
c6x  allyesconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
xtensa  iss_defconfig
h8300h8300h-sim_defconfig
xtensa   common_defconfig
arc defconfig
arc  allyesconfig
microblaze  mmu_defconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
mips allmodconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  chrp32_defconfig
powerpc   holly_defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
powerpc   allnoconfig
powerpc  mpc866_ads_defconfig
powerpcamigaone_defconfig
powerpcadder875_defconfig
powerpc ep8248e_defconfig
powerpc  g5_defconfig
powerpc mpc512x_defconfig
m68k randconfig-a001-20200505
mips randconfig-a001-20200505
m68k randconfig-a001-20200503
mips randconfig-a001-20200503
nds32randconfig-a001-20200503
alpharandconfig-a001-20200503
parisc   randconfig-a001-20200503
riscvrandconfig-a001-20200503
nds32randconfig-a001-20200505
parisc   randconfig-a001-20200505
alpharandconfig-a001-20200505
riscv

[staging:staging-testing] BUILD SUCCESS 2e11cc1ab790ccbc7c7f6ed74c0f40b85c561dc7

2020-05-05 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 2e11cc1ab790ccbc7c7f6ed74c0f40b85c561dc7  staging: vt6656: Use 
const for read only data

elapsed time: 692m

configs tested: 198
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
sparcallyesconfig
mips allmodconfig
h8300   h8s-sim_defconfig
um   x86_64_defconfig
m68k   sun3_defconfig
microblazenommu_defconfig
powerpcadder875_defconfig
shtitan_defconfig
i386defconfig
mips  loongson3_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   bvme6000_defconfig
m68k  multi_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
c6x  allyesconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
xtensa  iss_defconfig
h8300h8300h-sim_defconfig
xtensa   common_defconfig
arc defconfig
arc  allyesconfig
microblaze  mmu_defconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  chrp32_defconfig
powerpc defconfig
powerpc   holly_defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
powerpc   allnoconfig
powerpc  mpc866_ads_defconfig
powerpcamigaone_defconfig
powerpc ep8248e_defconfig
powerpc  g5_defconfig
powerpc mpc512x_defconfig
m68k randconfig-a001-20200505
mips randconfig-a001-20200505
nds32randconfig-a001-20200505
parisc   randconfig-a001-20200505
alpharandconfig-a001-20200505
riscvrandconfig-a001-20200505
m68k randconfig-a001-20200503
mips randconfig-a001-20200503
nds32randconfig-a001-20200503
alpharandconfig-a001-20200503
parisc   randconfig-a001-20200503
riscvrandconfig-a001-20200503
h8300randconfig-a001-20200503
nios2

[staging:staging-linus] BUILD SUCCESS 769acc3656d93aaacada814939743361d284fd87

2020-05-05 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-linus
branch HEAD: 769acc3656d93aaacada814939743361d284fd87  staging: gasket: Check 
the return value of gasket_get_bar_index()

elapsed time: 482m

configs tested: 229
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
mips allmodconfig
s390 allyesconfig
h8300   h8s-sim_defconfig
um   x86_64_defconfig
m68k   sun3_defconfig
mips  loongson3_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   bvme6000_defconfig
m68k  multi_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
c6x  allyesconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
xtensa  iss_defconfig
h8300h8300h-sim_defconfig
xtensa   common_defconfig
arc defconfig
arc  allyesconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  chrp32_defconfig
powerpc defconfig
powerpc   holly_defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
powerpc   allnoconfig
powerpc  mpc866_ads_defconfig
powerpcamigaone_defconfig
powerpcadder875_defconfig
powerpc ep8248e_defconfig
powerpc  g5_defconfig
powerpc mpc512x_defconfig
m68k randconfig-a001-20200505
mips randconfig-a001-20200505
nds32randconfig-a001-20200505
parisc   randconfig-a001-20200505
alpharandconfig-a001-20200505
riscvrandconfig-a001-20200505
m68k randconfig-a001-20200503
mips randconfig-a001-20200503
nds32randconfig-a001-20200503
alpharandconfig-a001-20200503
parisc   randconfig-a001-20200503
riscvrandconfig-a001-20200503
h8300randconfig-a001-20200503
nios2   

[driver-core:driver-core-linus] BUILD SUCCESS 2a15483b401c0b07e44b43b95414e36f32c02f32

2020-04-29 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-linus
branch HEAD: 2a15483b401c0b07e44b43b95414e36f32c02f32  regulator: Revert "Use 
driver_deferred_probe_timeout for regulator_init_complete_work"

elapsed time: 486m

configs tested: 195
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
sparcallyesconfig
i386defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   bvme6000_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
c6x  allyesconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
xtensa  iss_defconfig
h8300h8300h-sim_defconfig
xtensa   common_defconfig
arc defconfig
arc  allyesconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  chrp32_defconfig
powerpc defconfig
powerpc   holly_defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
powerpc   allnoconfig
powerpc  mpc866_ads_defconfig
powerpcamigaone_defconfig
powerpcadder875_defconfig
powerpc ep8248e_defconfig
powerpc  g5_defconfig
powerpc mpc512x_defconfig
parisc   randconfig-a001-20200429
m68k randconfig-a001-20200429
alpharandconfig-a001-20200429
mips randconfig-a001-20200429
nds32randconfig-a001-20200429
riscvrandconfig-a001-20200429
parisc   randconfig-a001-20200430
mips randconfig-a001-20200430
m68k randconfig-a001-20200430
riscvrandconfig-a001-20200430
alpharandconfig-a001-20200430
nds32randconfig-a001-20200430
nios2randconfig-a001-20200429
h8300randconfig-a001-20200429
c6x  

[driver-core:debugfs_cleanup] BUILD SUCCESS 4fd0626707deb3e0c37ecf41c743a091998f1ba1

2020-04-29 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_cleanup
branch HEAD: 4fd0626707deb3e0c37ecf41c743a091998f1ba1  debugfs: remove return 
value of debugfs_create_devm_seqfile()

elapsed time: 711m

configs tested: 201
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
sparcallyesconfig
s390defconfig
ia64  allnoconfig
ia64defconfig
i386defconfig
ia64generic_defconfig
m68k  multi_defconfig
h8300 edosk2674_defconfig
sh  sh7785lcr_32bit_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386  debian-10.3
ia64 allmodconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   bvme6000_defconfig
m68k   sun3_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
c6x  allyesconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
xtensa  iss_defconfig
h8300h8300h-sim_defconfig
xtensa   common_defconfig
arc defconfig
arc  allyesconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  chrp32_defconfig
powerpc defconfig
powerpc   holly_defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
powerpc   allnoconfig
powerpc  mpc866_ads_defconfig
powerpcamigaone_defconfig
powerpcadder875_defconfig
powerpc ep8248e_defconfig
powerpc  g5_defconfig
powerpc mpc512x_defconfig
parisc   randconfig-a001-20200429
m68k randconfig-a001-20200429
alpharandconfig-a001-20200429
mips randconfig-a001-20200429
nds32randconfig-a001-20200429
riscvrandconfig-a001-20200429
parisc   randconfig-a001-20200430
mips randconfig-a001-20200430
m68k randconfig-a001-20200430
riscvrandconfig-a001-20200430
alpharandconfig-a001-20200430
nds32randconfig-a001-20200430
nios2randconfig-a001-20200429
h8300

[staging:staging-linus] BUILD SUCCESS 0c1d3f2c9a0dc49d96754148b74a44eaa37bfbd8

2020-04-29 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-linus
branch HEAD: 0c1d3f2c9a0dc49d96754148b74a44eaa37bfbd8  MAINTAINERS: remove 
entry after hp100 driver removal

elapsed time: 625m

configs tested: 173
configs skipped: 7

The following configs have been built successfully.
More configs may be tested in the coming days.

arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
sparcallyesconfig
mips  fuloong2e_defconfig
xtensa  iss_defconfig
parisc   allmodconfig
s390  debug_defconfig
s390defconfig
sh  sh7785lcr_32bit_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   bvme6000_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
c6x  allyesconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
xtensa   common_defconfig
arc defconfig
arc  allyesconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
powerpc  chrp32_defconfig
powerpc defconfig
powerpc   holly_defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
powerpc   allnoconfig
powerpc  mpc866_ads_defconfig
powerpcamigaone_defconfig
powerpcadder875_defconfig
powerpc ep8248e_defconfig
powerpc  g5_defconfig
powerpc mpc512x_defconfig
parisc   randconfig-a001-20200429
m68k randconfig-a001-20200429
alpharandconfig-a001-20200429
mips randconfig-a001-20200429
nds32randconfig-a001-20200429
riscvrandconfig-a001-20200429
nios2randconfig-a001-20200429
h8300randconfig-a001-20200429
c6x  randconfig-a001-20200429
sparc64  randconfig-a001-20200429
microblaze   randconfig-a001-20200429
sh   randconfig-a001-20200429
csky 

[driver-core:driver-core-testing] BUILD SUCCESS 48ebea5026d692c5ab0a7d303f0fe1f8ba046e0f

2020-04-29 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: 48ebea5026d692c5ab0a7d303f0fe1f8ba046e0f  firmware_loader: move 
fw_fallback_config to a private kernel symbol namespace

elapsed time: 724m

configs tested: 191
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
powerpcadder875_defconfig
openriscor1ksim_defconfig
riscv   defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   bvme6000_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  mpc866_ads_defconfig
powerpcamigaone_defconfig
powerpc ep8248e_defconfig
powerpc  g5_defconfig
powerpc mpc512x_defconfig
powerpc  chrp32_defconfig
powerpc   holly_defconfig
parisc   randconfig-a001-20200428
m68k randconfig-a001-20200428
alpharandconfig-a001-20200428
nds32randconfig-a001-20200428
riscvrandconfig-a001-20200428
parisc   randconfig-a001-20200429
m68k randconfig-a001-20200429
alpharandconfig-a001-20200429
mips randconfig-a001-20200429
nds32randconfig-a001-20200429
riscvrandconfig-a001-20200429
nios2randconfig-a001-20200428
h8300randconfig-a001-20200428
c6x  

[driver-core:debugfs_cleanup] BUILD SUCCESS 2754c1b2291245ccfd27cce0c7a50d40a155d8ed

2020-04-28 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_cleanup
branch HEAD: 2754c1b2291245ccfd27cce0c7a50d40a155d8ed  debugfs: remove return 
value of debugfs_create_devm_seqfile()

elapsed time: 544m

configs tested: 158
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
sparcallyesconfig
h8300   h8s-sim_defconfig
mips   ip32_defconfig
powerpcadder875_defconfig
openriscor1ksim_defconfig
riscv   defconfig
i386  allnoconfig
arc defconfig
um i386_defconfig
um  defconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64generic_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
ia64  tiger_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   bvme6000_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
powerpc  mpc866_ads_defconfig
powerpcamigaone_defconfig
powerpc ep8248e_defconfig
powerpc  g5_defconfig
powerpc mpc512x_defconfig
powerpc  chrp32_defconfig
powerpc   holly_defconfig
parisc   randconfig-a001-20200428
m68k randconfig-a001-20200428
alpharandconfig-a001-20200428
nds32randconfig-a001-20200428
riscvrandconfig-a001-20200428
nios2randconfig-a001-20200428
h8300randconfig-a001-20200428
c6x  randconfig-a001-20200428
sparc64  randconfig-a001-20200428
microblaze   randconfig-a001-20200428
sh   randconfig-a001-20200428
csky randconfig-a001-20200428
s390 

[driver-core:driver-core-linus] BUILD SUCCESS 35a672363ab3e8dfe4ebcadb4dd0b2d06bb85ebe

2020-04-28 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-linus
branch HEAD: 35a672363ab3e8dfe4ebcadb4dd0b2d06bb85ebe  driver core: Ensure 
wait_for_device_probe() waits until the deferred_probe_timeout fires

elapsed time: 486m

configs tested: 161
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
arm64allmodconfig
sparcallyesconfig
um i386_defconfig
m68k allmodconfig
mips   capcella_defconfig
microblaze  mmu_defconfig
ia64defconfig
mips allyesconfig
h8300h8300h-sim_defconfig
i386 allyesconfig
ia64  allnoconfig
i386  allnoconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
parisc   randconfig-a001-20200428
m68k randconfig-a001-20200428
alpharandconfig-a001-20200428
nds32randconfig-a001-20200428
riscvrandconfig-a001-20200428
nios2randconfig-a001-20200428
h8300randconfig-a001-20200428
c6x  randconfig-a001-20200428
sparc64  randconfig-a001-20200428
microblaze   randconfig-a001-20200428
sh   randconfig-a001-20200428
csky randconfig-a001-20200428
s390 randconfig-a001-20200428
xtensa   randconfig-a001-20200428
openrisc randconfig-a001-20200428
i386 randconfig-c002-20200428
i386 randconfig-c001-20200428
x86_64   randconfig-c001-20200428
i386 randconfig-c003-20200428
x86_64   randconfig-c003-20200428
x86_64   randconfig-d001-20200428
i386 randconfig-d002-20200428
i386 

[staging:staging-testing] BUILD SUCCESS d97a9d7aea04574959178557fa4c34efed64655a

2020-04-28 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: d97a9d7aea04574959178557fa4c34efed64655a  staging/speakup: Add 
inflection synth parameter

elapsed time: 480m

configs tested: 163
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
cskydefconfig
sparc64  allyesconfig
um i386_defconfig
m68k allmodconfig
sparc64  allmodconfig
mips tb0287_defconfig
ia64 allmodconfig
microblaze  mmu_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64defconfig
ia64  allnoconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
parisc   randconfig-a001-20200428
m68k randconfig-a001-20200428
alpharandconfig-a001-20200428
nds32randconfig-a001-20200428
riscvrandconfig-a001-20200428
nios2randconfig-a001-20200428
h8300randconfig-a001-20200428
c6x  randconfig-a001-20200428
sparc64  randconfig-a001-20200428
microblaze   randconfig-a001-20200428
sh   randconfig-a001-20200428
csky randconfig-a001-20200428
s390 randconfig-a001-20200428
xtensa   randconfig-a001-20200428
openrisc randconfig-a001-20200428
x86_64   randconfig-a001-20200428
i386 randconfig-a003-20200428
x86_64   randconfig-a003-20200428
i386 randconfig-a002-20200428
i386 randconfig-a001-20200428
x86_64   randconfig-a002-20200428
i386 

[driver-core:debugfs_cleanup 1/1] drivers/gpu/drm/drm_debugfs.c:232:5: error: conflicting types for 'drm_debugfs_remove_files'

2020-04-28 Thread kbuild test robot
tree:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git 
debugfs_cleanup
head:   44bb83b556b01215b8d22a1f5a6f2dff0a394ad3
commit: 44bb83b556b01215b8d22a1f5a6f2dff0a394ad3 [1/1] drm: make .debugfs_init 
and drm_debugfs_create_files() return void
config: x86_64-defconfig (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce:
git checkout 44bb83b556b01215b8d22a1f5a6f2dff0a394ad3
# save the attached .config to linux build tree
make ARCH=x86_64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All error/warnings (new ones prefixed by >>):

>> drivers/gpu/drm/drm_debugfs.c:232:5: error: conflicting types for 
>> 'drm_debugfs_remove_files'
int drm_debugfs_remove_files(const struct drm_info_list *files, int count,
^~~~
   In file included from drivers/gpu/drm/drm_debugfs.c:35:0:
   include/drm/drm_debugfs.h:86:6: note: previous declaration of 
'drm_debugfs_remove_files' was here
void drm_debugfs_remove_files(const struct drm_info_list *files,
 ^~~~
   In file included from include/linux/linkage.h:7:0,
from include/linux/fs.h:5,
from include/linux/debugfs.h:15,
from drivers/gpu/drm/drm_debugfs.c:26:
   drivers/gpu/drm/drm_debugfs.c:253:15: error: conflicting types for 
'drm_debugfs_remove_files'
EXPORT_SYMBOL(drm_debugfs_remove_files);
  ^
   include/linux/export.h:98:21: note: in definition of macro '___EXPORT_SYMBOL'
 extern typeof(sym) sym;   \
^~~
   include/linux/export.h:155:34: note: in expansion of macro '__EXPORT_SYMBOL'
#define _EXPORT_SYMBOL(sym, sec) __EXPORT_SYMBOL(sym, sec, "")
 ^~~
   include/linux/export.h:158:29: note: in expansion of macro '_EXPORT_SYMBOL'
#define EXPORT_SYMBOL(sym)  _EXPORT_SYMBOL(sym, "")
^~
>> drivers/gpu/drm/drm_debugfs.c:253:1: note: in expansion of macro 
>> 'EXPORT_SYMBOL'
EXPORT_SYMBOL(drm_debugfs_remove_files);
^
   In file included from drivers/gpu/drm/drm_debugfs.c:35:0:
   include/drm/drm_debugfs.h:86:6: note: previous declaration of 
'drm_debugfs_remove_files' was here
void drm_debugfs_remove_files(const struct drm_info_list *files,
 ^~~~
--
>> drivers/gpu/drm/i915/i915_debugfs.c:2179:6: error: conflicting types for 
>> 'i915_debugfs_register'
void i915_debugfs_register(struct drm_i915_private *dev_priv)
 ^
   In file included from drivers/gpu/drm/i915/i915_debugfs.c:42:0:
   drivers/gpu/drm/i915/i915_debugfs.h:15:5: note: previous declaration of 
'i915_debugfs_register' was here
int i915_debugfs_register(struct drm_i915_private *dev_priv);
^
--
   drivers/gpu/drm/i915/display/intel_display_debugfs.c: In function 
'intel_display_debugfs_register':
>> drivers/gpu/drm/i915/display/intel_display_debugfs.c:1943:9: error: void 
>> value not ignored as it ought to be
 return drm_debugfs_create_files(intel_display_debugfs_list,
^~~~
 ARRAY_SIZE(intel_display_debugfs_list),
 ~~~
 minor->debugfs_root, minor);
 ~~~
>> drivers/gpu/drm/i915/display/intel_display_debugfs.c:1946:1: warning: 
>> control reaches end of non-void function [-Wreturn-type]
}
^

vim +/drm_debugfs_remove_files +232 drivers/gpu/drm/drm_debugfs.c

28a62277e06f93 Ben Gamari  2009-02-17  230  
28a62277e06f93 Ben Gamari  2009-02-17  231  
7d74795b740135 Lespiau, Damien 2013-10-17 @232  int 
drm_debugfs_remove_files(const struct drm_info_list *files, int count,
28a62277e06f93 Ben Gamari  2009-02-17  233   
struct drm_minor *minor)
28a62277e06f93 Ben Gamari  2009-02-17  234  {
28a62277e06f93 Ben Gamari  2009-02-17  235  struct list_head *pos, 
*q;
28a62277e06f93 Ben Gamari  2009-02-17  236  struct drm_info_node 
*tmp;
28a62277e06f93 Ben Gamari  2009-02-17  237  int i;
28a62277e06f93 Ben Gamari  2009-02-17  238  
b3e067c0b27619 Marcin Slusarz  2011-11-09  239  
mutex_lock(>debugfs_lock);
28a62277e06f93 Ben Gamari  2009-02-17  240  for (i = 0; i < count; 
i++) {
b3e067c0b27619 Marcin Slusarz  2011-11-09  241  
list_for_each_safe(pos, q, >debugfs_list) {
28a62277e06f93 Ben Gamari  2009-02-17  242  tmp = 
list_entry(pos, struct drm_info_node, list);
28a62277e06f93 Ben Gamari  2009-02-17  243  if 
(tmp->info_ent == [i]) {
28a62277e06f93 Ben Gamari  2009-02-17  244   

[staging:staging-next] BUILD SUCCESS e8014d83f60479d3981baeaa3a21c993ff832f3f

2020-04-27 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-next
branch HEAD: e8014d83f60479d3981baeaa3a21c993ff832f3f  Merge 5.7-rc3 into 
staging-next

elapsed time: 803m

configs tested: 201
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
powerpc defconfig
ia64defconfig
i386 alldefconfig
h8300h8300h-sim_defconfig
riscv allnoconfig
riscv  rv32_defconfig
i386defconfig
nios2 3c120_defconfig
ia64 bigsur_defconfig
i386  allnoconfig
i386  debian-10.3
i386 allyesconfig
ia64 allmodconfig
ia64  allnoconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
c6x  allyesconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
xtensa  iss_defconfig
xtensa   common_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips  loongson3_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
parisc   randconfig-a001-20200428
m68k randconfig-a001-20200428
alpharandconfig-a001-20200428
nds32randconfig-a001-20200428
riscvrandconfig-a001-20200428
parisc   randconfig-a001-20200427
alpharandconfig-a001-20200427
mips randconfig-a001-20200427
m68k randconfig-a001-20200427
riscvrandconfig-a001-20200427
nds32randconfig-a001-20200427
nios2randconfig-a001-20200427
c6x  randconfig-a001-20200427
h8300randconfig-a001-20200427
sparc64  randconfig-a001-20200427
microblaze   randconfig-a001-20200427
nios2randconfig-a001-20200428
h8300randconfig-a001-20200428
c6x  randconfig-a001-20200428
sparc64  randconfig-a001-20200428
microblaze   randconfig-a001-20200428
sh   randconfig-a001-20200427
csky randconfig-a001-20200427
xtensa   

[driver-core:driver-core-testing] BUILD SUCCESS 96fa72ffb2155dba9ba8c5d282a1ff19ed32f177

2020-04-27 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: 96fa72ffb2155dba9ba8c5d282a1ff19ed32f177  Merge 5.7-rc3 into 
driver-core-next

elapsed time: 932m

configs tested: 169
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm64   defconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
h8300h8300h-sim_defconfig
c6x  allyesconfig
ia64  allnoconfig
openrisc simple_smp_defconfig
mips  decstation_64_defconfig
pariscgeneric-32bit_defconfig
riscvallyesconfig
um i386_defconfig
microblaze  mmu_defconfig
riscv allnoconfig
mips  allnoconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
xtensa   common_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips  loongson3_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
parisc   randconfig-a001-20200427
alpharandconfig-a001-20200427
mips randconfig-a001-20200427
m68k randconfig-a001-20200427
riscvrandconfig-a001-20200427
nds32randconfig-a001-20200427
nios2randconfig-a001-20200427
c6x  randconfig-a001-20200427
h8300randconfig-a001-20200427
sparc64  randconfig-a001-20200427
microblaze   randconfig-a001-20200427
sh   randconfig-a001-20200427
csky randconfig-a001-20200427
xtensa   randconfig-a001-20200427
openrisc randconfig-a001-20200427
i386 randconfig-b002-20200427
x86_64   randconfig-b001-20200427
i386 randconfig-b001-20200427
i386 randconfig-b003-20200427
x86_64   randconfig-b002-20200427
x86_64   randconfig-b003-20200427
i386 randconfig-a003-20200427
i386 

[driver-core:driver-core-testing] BUILD SUCCESS fbc35b45f9f6a971341b9462c6e94c257e779fb5

2020-04-25 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: fbc35b45f9f6a971341b9462c6e94c257e779fb5  Add documentation on 
meaning of -EPROBE_DEFER

elapsed time: 3279m

configs tested: 166
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
sparcallyesconfig
m68k  multi_defconfig
arc  allyesconfig
mips allyesconfig
microblaze  mmu_defconfig
mips   ip32_defconfig
h8300   h8s-sim_defconfig
riscvnommu_virt_defconfig
powerpc defconfig
ia64defconfig
parisc   allyesconfig
ia64 allyesconfig
pariscallnoconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64  allnoconfig
ia64generic_defconfig
ia64  tiger_defconfig
ia64 bigsur_defconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
m68k   sun3_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
arc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allmodconfig
parisc   randconfig-a001-20200426
mips randconfig-a001-20200426
alpharandconfig-a001-20200426
m68k randconfig-a001-20200426
nds32randconfig-a001-20200426
nios2randconfig-a001-20200426
c6x  randconfig-a001-20200426
h8300randconfig-a001-20200426
sparc64  randconfig-a001-20200426
microblaze   randconfig-a001-20200426
nios2randconfig-a001-20200425
c6x  randconfig-a001-20200425
h8300randconfig-a001-20200425
sparc64  randconfig-a001-20200425
microblaze   randconfig-a001-20200425
sh   randconfig-a001-20200426
csky randconfig-a001-20200426
s390 randconfig-a001-20200426
xtensa   randconfig-a001-20200426
openrisc randconfig-a001-20200426
sh   randconfig-a001-20200424
csky randconfig-a001-20200424
s390 randconfig-a001-20200424
xtensa   

[staging:staging-testing] BUILD SUCCESS 41aef04524d3dc8c2a5d9652cccc1f567356b5fd

2020-04-25 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 41aef04524d3dc8c2a5d96521f567356b5fd  Staging: rtl8188eu: 
core: rtw_pwrctrl: fixed a coding style issue

elapsed time: 665m

configs tested: 188
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
arc  allyesconfig
um   x86_64_defconfig
mips   ip32_defconfig
h8300   h8s-sim_defconfig
riscvnommu_virt_defconfig
ia64  allnoconfig
riscvallyesconfig
xtensa   common_defconfig
powerpc defconfig
ia64defconfig
ia64 allyesconfig
ia64  tiger_defconfig
pariscallnoconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64generic_defconfig
ia64 bigsur_defconfig
ia64 alldefconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
arc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
parisc   randconfig-a001-20200426
mips randconfig-a001-20200426
alpharandconfig-a001-20200426
m68k randconfig-a001-20200426
nds32randconfig-a001-20200426
nios2randconfig-a001-20200426
c6x  randconfig-a001-20200426
h8300randconfig-a001-20200426
sparc64  randconfig-a001-20200426
microblaze   randconfig-a001-20200426
nios2randconfig-a001-20200425
c6x  randconfig-a001-20200425
h8300randconfig-a001-20200425
sparc64  randconfig-a001-20200425
microblaze   randconfig-a001-20200425
sh   randconfig-a001-20200426
csky randconfig-a001-20200426
s390 randconfig-a001-20200426
xtensa   randconfig-a001-20200426
openrisc randconfig-a001-20200426
sh   randconfig-a001-20200425
csky  

[staging:staging-linus] BUILD SUCCESS 664ba5180234593b4b8517530e8198bf2f7359e2

2020-04-25 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-linus
branch HEAD: 664ba5180234593b4b8517530e8198bf2f7359e2  staging: vt6656: Fix 
calling conditions of vnt_set_bss_mode

elapsed time: 3557m

configs tested: 203
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
sparc   defconfig
ia64  tiger_defconfig
powerpc defconfig
ia64defconfig
m68k  multi_defconfig
arc  allyesconfig
sparc64  allmodconfig
mips allyesconfig
microblaze  mmu_defconfig
sparc64 defconfig
shtitan_defconfig
m68k   sun3_defconfig
powerpc   ppc64_defconfig
shallnoconfig
c6x  allyesconfig
mips tb0287_defconfig
c6xevmc6678_defconfig
riscv  rv32_defconfig
riscv allnoconfig
nds32 allnoconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64  allnoconfig
ia64generic_defconfig
ia64 bigsur_defconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
xtensa  iss_defconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
arc defconfig
powerpc  rhel-kconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mipsmalta_kvm_guest_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
parisc   randconfig-a001-20200424
alpharandconfig-a001-20200424
m68k randconfig-a001-20200424
riscvrandconfig-a001-20200424
nds32randconfig-a001-20200424
nios2randconfig-a001-20200424
c6x  randconfig-a001-20200424
h8300randconfig-a001-20200424
sparc64  randconfig-a001-20200424
microblaze   randconfig-a001-20200424
nios2randconfig-a001-20200426
c6x  randconfig-a001-20200426
h8300randconfig-a001-20200426
sparc64  randconfig-a001-20200426
microblaze   randconfig-a001-20200426
nios2randconfig-a001-20200423
h8300randconfig-a001-20200423
c6x  

[staging:staging-next] BUILD SUCCESS bf42304b55f59af5e71c86e46291705023dce62e

2020-04-25 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-next
branch HEAD: bf42304b55f59af5e71c86e46291705023dce62e  staging: vt6656: Use fls 
instead of for loop in vnt_update_top_rates

elapsed time: 3555m

configs tested: 240
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
ia64defconfig
arc  allyesconfig
ia64 bigsur_defconfig
mips  fuloong2e_defconfig
sparc64 defconfig
m68k   m5475evb_defconfig
sh  sh7785lcr_32bit_defconfig
um   x86_64_defconfig
mips   ip32_defconfig
h8300   h8s-sim_defconfig
riscvnommu_virt_defconfig
ia64  allnoconfig
m68k   sun3_defconfig
pariscgeneric-32bit_defconfig
riscv   defconfig
mips  allnoconfig
s390  allnoconfig
ia64  tiger_defconfig
riscv  rv32_defconfig
riscvallyesconfig
xtensa   common_defconfig
powerpc defconfig
mipsmalta_kvm_guest_defconfig
nios2 10m50_defconfig
powerpc   ppc64_defconfig
riscv allnoconfig
parisc   allyesconfig
ia64 allyesconfig
pariscallnoconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64generic_defconfig
ia64 alldefconfig
nios2 3c120_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k  multi_defconfig
arc defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips   32r2_defconfig
mips allmodconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscgeneric-64bit_defconfig
parisc   allmodconfig
parisc   randconfig-a001-20200424
alpharandconfig-a001-20200424
m68k randconfig-a001-20200424
riscvrandconfig-a001-20200424
nds32randconfig-a001-20200424
parisc   randconfig-a001-20200426
mips randconfig-a001-20200426
alpharandconfig-a001-20200426
m68k randconfig-a001-20200426
nds32randconfig-a001-20200426
nios2randconfig-a001-20200424
c6x  randconfig-a001-20200424
h8300randconfig-a001-20200424
sparc64  randconfig-a001-20200424
microblaze   randconfig-a001-20200424
nios2

[driver-core:driver-core-linus] BUILD SUCCESS 2b07021a940ce1cdec736ec0cacad6af77717afc

2020-04-24 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-linus
branch HEAD: 2b07021a940ce1cdec736ec0cacad6af77717afc  debugfs: remove return 
value of debugfs_create_u32()

elapsed time: 6837m

configs tested: 326
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64 allnoconfig
arm   allnoconfig
arm64allmodconfig
arm  allmodconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
ia64  tiger_defconfig
arc defconfig
ia64defconfig
ia64  allnoconfig
microblaze  mmu_defconfig
mipsmalta_kvm_guest_defconfig
ia64 alldefconfig
i386  allnoconfig
s390 allmodconfig
sh  sh7785lcr_32bit_defconfig
ia64generic_defconfig
um   x86_64_defconfig
riscvallmodconfig
pariscallnoconfig
s390   zfcpdump_defconfig
nds32   defconfig
powerpc   allnoconfig
nds32 allnoconfig
riscvnommu_virt_defconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64 bigsur_defconfig
ia64 allyesconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblazenommu_defconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mipsar7_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mips tb0287_defconfig
mips   capcella_defconfig
mips   ip32_defconfig
mips  decstation_64_defconfig
mips  loongson3_defconfig
mips  ath79_defconfig
mipsbcm63xx_defconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
parisc   allmodconfig
parisc   randconfig-a001-20200422
mips randconfig-a001-20200422
alpharandconfig-a001-20200422
m68k randconfig-a001-20200422
riscvrandconfig-a001-20200422
nds32randconfig-a001-20200422
parisc   randconfig-a001-20200421
alpharandconfig-a001-20200421
mips randconfig-a001-20200421
m68k randconfig-a001-20200421
riscvrandconfig-a001-20200421
nds32randconfig-a001-20200421
parisc   randconfig-a001-20200424
alpharandconfig-a001-20200424
m68k randconfig-a001-20200424
riscvrandconfig-a001-20200424
nds32randconfig-a001-20200424
parisc   randconfig-a001-20200423
alpha

[staging:staging-next 127/127] drivers/staging/wfx/bh.c:88:32: sparse: warning: restricted __le16 degrades to integer

2020-04-14 Thread kbuild test robot
tree:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
staging-next
head:   ce920326663b3df22c94ade99a8b234baa6ccaa5
commit: ce920326663b3df22c94ade99a8b234baa6ccaa5 [127/127] staging: vt6656: 
formulate rspinf values into tables
reproduce:
# apt-get install sparse
# sparse version: 
git checkout ce920326663b3df22c94ade99a8b234baa6ccaa5
make ARCH=x86_64 allmodconfig
make C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__'

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All warnings (new ones prefixed by >>):

   drivers/staging/wfx/bh.c:73:35: sparse: warning: incorrect type in argument 
1 (different base types)
   drivers/staging/wfx/bh.c:73:35: sparse:expected restricted __le16 const 
[usertype] *p
   drivers/staging/wfx/bh.c:73:35: sparse:got unsigned short [usertype] *
>> drivers/staging/wfx/bh.c:88:32: sparse: warning: restricted __le16 degrades 
>> to integer
>> drivers/staging/wfx/bh.c:88:32: sparse: warning: restricted __le16 degrades 
>> to integer
   drivers/staging/wfx/bh.c:93:32: sparse: warning: restricted __le16 degrades 
to integer
   drivers/staging/wfx/bh.c:93:32: sparse: warning: cast to restricted __le16
   drivers/staging/wfx/bh.c:93:32: sparse: warning: restricted __le16 degrades 
to integer
   drivers/staging/wfx/bh.c:121:25: sparse: warning: incorrect type in argument 
2 (different base types)
   drivers/staging/wfx/bh.c:121:25: sparse:expected unsigned int len
   drivers/staging/wfx/bh.c:121:25: sparse:got restricted __le16 [usertype] 
len
   drivers/staging/wfx/bh.c:199:9: sparse: warning: restricted __le16 degrades 
to integer
   drivers/staging/wfx/bh.c:221:62: sparse: warning: restricted __le16 degrades 
to integer
--
>> drivers/staging/wfx/hif_tx_mib.c:35:38: sparse: warning: incorrect type in 
>> initializer (different base types)
   drivers/staging/wfx/hif_tx_mib.c:35:38: sparse:expected unsigned char 
[usertype] wakeup_period_max
   drivers/staging/wfx/hif_tx_mib.c:35:38: sparse:got restricted __le16 
[usertype]
--
>> drivers/staging/wfx/hif_tx.c:189:36: sparse: warning: restricted __le16 
>> degrades to integer
>> drivers/staging/wfx/hif_tx.c:199:17: sparse: warning: incorrect type in 
>> argument 3 (different base types)
   drivers/staging/wfx/hif_tx.c:199:17: sparse:expected unsigned long 
[usertype] len
   drivers/staging/wfx/hif_tx.c:199:17: sparse:got restricted __le16 
[usertype] length
--
>> drivers/staging/wfx/hif_rx.c:27:22: sparse: warning: restricted __le16 
>> degrades to integer
>> drivers/staging/wfx/hif_rx.c:83:9: sparse: warning: restricted __le32 
>> degrades to integer
   drivers/staging/wfx/hif_rx.c:88:29: sparse: warning: restricted __le32 
degrades to integer
   drivers/staging/wfx/hif_rx.c:130:33: sparse: warning: restricted __le32 
degrades to integer
   drivers/staging/wfx/hif_rx.c:244:21: sparse: warning: restricted __le32 
degrades to integer
   drivers/staging/wfx/hif_rx.c:244:21: sparse: warning: restricted __le32 
degrades to integer
   drivers/staging/wfx/hif_rx.c:244:21: sparse: warning: restricted __le32 
degrades to integer
   drivers/staging/wfx/hif_rx.c:244:21: sparse: warning: restricted __le32 
degrades to integer
   drivers/staging/wfx/hif_rx.c:244:21: sparse: warning: restricted __le32 
degrades to integer
   drivers/staging/wfx/hif_rx.c:282:21: sparse: warning: restricted __le32 
degrades to integer
   drivers/staging/wfx/hif_rx.c:282:21: sparse: warning: restricted __le32 
degrades to integer
   drivers/staging/wfx/hif_rx.c:310:25: sparse: warning: restricted __le16 
degrades to integer
--
>> drivers/staging/wfx/queue.c:191:24: sparse: warning: restricted __le32 
>> degrades to integer
>> drivers/staging/wfx/queue.c:274:51: sparse: warning: incorrect type in 
>> assignment (different base types)
   drivers/staging/wfx/queue.c:274:51: sparse:expected unsigned int 
[usertype] bss_loss_confirm_id
   drivers/staging/wfx/queue.c:274:51: sparse:got restricted __le32 
[usertype] packet_id
--
>> drivers/staging/wfx/data_tx.c:383:43: sparse: warning: restricted __le16 
>> degrades to integer
   drivers/staging/wfx/data_tx.c:395:24: sparse: warning: incorrect type in 
assignment (different base types)
   drivers/staging/wfx/data_tx.c:395:24: sparse:expected restricted __le32 
[usertype] packet_id
   drivers/staging/wfx/data_tx.c:395:24: sparse:got int
>> drivers/staging/wfx/data_tx.c:497:46: sparse: warning: incorrect type in 
>> argument 2 (different base types)
   drivers/staging/wfx/data_tx.c:497:46: sparse:expected unsigned int 
[usertype] packet_id
   drivers/staging/wfx/data_tx.c:497:46: sparse:got restricted __le32 const 
[usertype] packet_id
>> drivers/staging/wfx/data_tx.c:518:24: sparse: warning: restricted __le32 
>> degrad

[staging:staging-linus] BUILD SUCCESS ed87d33ddbcd9a1c3b5ae87995da34e6f51a862c

2020-04-13 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-linus
branch HEAD: ed87d33ddbcd9a1c3b5ae87995da34e6f51a862c  staging: comedi: dt2815: 
fix writing hi byte of analog output

elapsed time: 480m

configs tested: 166
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
um i386_defconfig
i386 allyesconfig
openrisc simple_smp_defconfig
i386  allnoconfig
i386 alldefconfig
i386  debian-10.3
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200413
x86_64   randconfig-a002-20200413
x86_64   randconfig-a003-20200413
i386 randconfig-a001-20200413
i386 randconfig-a002-20200413
i386 randconfig-a003-20200413
alpharandconfig-a001-20200413
m68k randconfig-a001-20200413
mips randconfig-a001-20200413
nds32randconfig-a001-20200413
parisc   randconfig-a001-20200413
riscvrandconfig-a001-20200413
c6x  randconfig-a001-20200413
h8300randconfig-a001-20200413
microblaze   randconfig-a001-20200413
nios2randconfig-a001-20200413
sparc64  randconfig-a001-20200413
s390 randconfig-a001-20200413
xtensa   randconfig-a001-20200413
sh   randconfig-a001-20200413
openrisc randconfig-a001-20200413
csky randconfig-a001-20200413
x86_64   randconfig-b001-20200413
x86_64   randconfig-b002-20200413
x86_64   randconfig-b003-20200413
i386 randconfig-b001-20200413
i386 randconfig-b002-20200413
i386 randconfig-b003-20200413
x86_64   randconfig-c001-20200413
x86_64   randconfig-c002-20200413
x86_64   randconfig-c003-20200413
i386 randconfig-c001-20200413
i386 randconfig-c002-20200413
i386 randconfig-c003-20200413
x86_64   randconfig-d001-20200413
x86_64   randconfig-d002-20200413
x86_64   

[staging:staging-testing] BUILD SUCCESS ce920326663b3df22c94ade99a8b234baa6ccaa5

2020-04-13 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: ce920326663b3df22c94ade99a8b234baa6ccaa5  staging: vt6656: 
formulate rspinf values into tables

elapsed time: 480m

configs tested: 166
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
ia64  allnoconfig
pariscgeneric-32bit_defconfig
sparc   defconfig
i386 allyesconfig
ia64defconfig
powerpc defconfig
sh   allmodconfig
i386  allnoconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64 allyesconfig
ia64 alldefconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
parisc   allyesconfig
x86_64   randconfig-a001-20200413
x86_64   randconfig-a002-20200413
x86_64   randconfig-a003-20200413
i386 randconfig-a001-20200413
i386 randconfig-a002-20200413
i386 randconfig-a003-20200413
alpharandconfig-a001-20200413
m68k randconfig-a001-20200413
mips randconfig-a001-20200413
nds32randconfig-a001-20200413
parisc   randconfig-a001-20200413
riscvrandconfig-a001-20200413
c6x  randconfig-a001-20200413
h8300randconfig-a001-20200413
microblaze   randconfig-a001-20200413
nios2randconfig-a001-20200413
sparc64  randconfig-a001-20200413
s390 randconfig-a001-20200413
xtensa   randconfig-a001-20200413
sh   randconfig-a001-20200413
openrisc randconfig-a001-20200413
csky randconfig-a001-20200413
x86_64   randconfig-b002-20200413
i386 randconfig-b001-20200413
x86_64   randconfig-b001-20200413
x86_64   randconfig-b003-20200413
i386 randconfig-b003-20200413
i386 randconfig-b002-20200413
x86_64   randconfig-c003-20200413
i386 randconfig-c003-20200413
i386 randconfig-c002-20200413
x86_64   randconfig-c002-20200413
i386 randconfig-c001-20200413
x86_64   randconfig-c001-20200413
i386 randconfig-d002-20200413
x86_64   

[driver-core:debugfs_remove_return_value] BUILD SUCCESS d8691ced73b1fb17a5308bd4e5c4fc73e9ed7e95

2020-04-13 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_remove_return_value
branch HEAD: d8691ced73b1fb17a5308bd4e5c4fc73e9ed7e95  debugfs: remove return 
value of debugfs_create_u32()

elapsed time: 484m

configs tested: 161
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64 allnoconfig
arm   allnoconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
h8300h8300h-sim_defconfig
sparc64  allmodconfig
pariscgeneric-32bit_defconfig
cskydefconfig
ia64defconfig
powerpc defconfig
pariscallnoconfig
shallnoconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
i386  debian-10.3
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
arm  allmodconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscgeneric-64bit_defconfig
parisc   allyesconfig
i386 randconfig-a002-20200413
x86_64   randconfig-a002-20200413
i386 randconfig-a003-20200413
i386 randconfig-a001-20200413
mips randconfig-a001-20200413
nds32randconfig-a001-20200413
riscvrandconfig-a001-20200413
m68k randconfig-a001-20200413
parisc   randconfig-a001-20200413
alpharandconfig-a001-20200413
c6x  randconfig-a001-20200413
h8300randconfig-a001-20200413
microblaze   randconfig-a001-20200413
nios2randconfig-a001-20200413
sparc64  randconfig-a001-20200413
s390 randconfig-a001-20200413
xtensa   randconfig-a001-20200413
sh   randconfig-a001-20200413
openrisc randconfig-a001-20200413
csky randconfig-a001-20200413
x86_64   randconfig-b002-20200413
i386 randconfig-b001-20200413
x86_64   randconfig-b001-20200413
x86_64   randconfig-b003-20200413
i386 randconfig-b003-20200413
i386 randconfig-b002-20200413
x86_64   randconfig-c003-20200413
i386 randconfig-c003-20200413
i386 randconfig-c002-20200413
x86_64   randconfig-c002-20200413
i386 randconfig-c001-20200413
x86_64   randconfig-c001-20200413
i386 randconfig-d002-20200413
x86_64   randconfig-d003-20200413
x86_64   randconfig-d001-20200413
i386 randconfig-d003-20200413
i386 randconfig-d001-20200413
x86_64   randconfig-d002-20200413
x86_64

[staging:staging-next] BUILD SUCCESS 73a6e90041ce80d5683f62bee0eaf7226ce73392

2020-04-13 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-next
branch HEAD: 73a6e90041ce80d5683f62bee0eaf7226ce73392  staging: rtl8723bs: hal: 
Correct misspelled symbolic name

elapsed time: 508m

configs tested: 166
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
openriscor1ksim_defconfig
powerpc   ppc64_defconfig
h8300h8300h-sim_defconfig
sparc64  allmodconfig
pariscgeneric-32bit_defconfig
cskydefconfig
pariscgeneric-64bit_defconfig
ia64defconfig
powerpc defconfig
pariscallnoconfig
shallnoconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc  rhel-kconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
parisc   allyesconfig
x86_64   randconfig-a001-20200413
x86_64   randconfig-a002-20200413
x86_64   randconfig-a003-20200413
i386 randconfig-a001-20200413
i386 randconfig-a002-20200413
i386 randconfig-a003-20200413
mips randconfig-a001-20200413
nds32randconfig-a001-20200413
m68k randconfig-a001-20200413
parisc   randconfig-a001-20200413
alpharandconfig-a001-20200413
riscvrandconfig-a001-20200413
c6x  randconfig-a001-20200413
h8300randconfig-a001-20200413
microblaze   randconfig-a001-20200413
nios2randconfig-a001-20200413
sparc64  randconfig-a001-20200413
s390 randconfig-a001-20200413
xtensa   randconfig-a001-20200413
sh   randconfig-a001-20200413
openrisc randconfig-a001-20200413
csky randconfig-a001-20200413
x86_64   randconfig-b002-20200413
i386 randconfig-b001-20200413
x86_64   randconfig-b001-20200413
x86_64   randconfig-b003-20200413
i386 randconfig-b003-20200413
i386 randconfig-b002-20200413
x86_64   randconfig-c003-20200413
i386 randconfig-c003-20200413
i386 randconfig-c002-20200413
x86_64   randconfig-c002-20200413
i386 randconfig-c001-20200413
x86_64   randconfig-c001-20200413
x86_64   randconfig-d001-20200413
x86_64   

[staging:staging-testing] BUILD SUCCESS f4f7714f055fa662cf2f27dd0809a8781538e780

2020-04-12 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: f4f7714f055fa662cf2f27dd0809a8781538e780  staging: rtl8723bs: hal: 
Correct misspelled symbolic name

elapsed time: 480m

configs tested: 162
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
i386 randconfig-a002-20200412
x86_64   randconfig-a001-20200412
x86_64   randconfig-a002-20200412
i386 randconfig-a003-20200412
x86_64   randconfig-a003-20200412
i386 randconfig-a001-20200412
mips randconfig-a001-20200412
nds32randconfig-a001-20200412
riscvrandconfig-a001-20200412
m68k randconfig-a001-20200412
parisc   randconfig-a001-20200412
alpharandconfig-a001-20200412
h8300randconfig-a001-20200412
nios2randconfig-a001-20200412
c6x  randconfig-a001-20200412
sparc64  randconfig-a001-20200412
s390 randconfig-a001-20200412
xtensa   randconfig-a001-20200412
sh   randconfig-a001-20200412
openrisc randconfig-a001-20200412
csky randconfig-a001-20200412
x86_64   randconfig-b002-20200412
i386 randconfig-b001-20200412
x86_64   randconfig-b001-20200412
x86_64   randconfig-b003-20200412
i386 randconfig-b003-20200412
i386 randconfig-b002-20200412
x86_64   randconfig-c003-20200412
i386 randconfig-c003-20200412
i386 randconfig-c002-20200412
x86_64   randconfig-c002-20200412
i386 randconfig-c001-20200412
i386 randconfig-d002-20200412
x86_64   randconfig-d003-20200412
i386 randconfig-d003-20200412
i386 randconfig-d001-20200412
x86_64   randconfig-d002-20200412
x86_64   

Re: [PATCH] Staging: comedi: drivers: jr3_pci: fixed two warnings

2020-04-12 Thread kbuild test robot
Hi,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on staging/staging-testing]
[also build test ERROR on v5.6 next-20200412]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/carlosteniswarrior-gmail-com/Staging-comedi-drivers-jr3_pci-fixed-two-warnings/20200412-234205
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
f4f7714f055fa662cf2f27dd0809a8781538e780
config: alpha-allmodconfig (attached as .config)
compiler: alpha-linux-gcc (GCC) 9.3.0
reproduce:
wget 
https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O 
~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=9.3.0 make.cross ARCH=alpha 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All error/warnings (new ones prefixed by >>):

>> drivers/staging/comedi/drivers/jr3_pci.c:94:8: error: unknown type name 
>> 'comedi_lrange'
  94 |  const comedi_lrange l;
 |^
   In file included from :
   drivers/staging/comedi/drivers/jr3_pci.c:95:32: error: unknown type name 
'comedi_lrange'
  95 |  char _reserved[offsetof(const comedi_lrange, range[1])];
 |^
   include/linux/compiler_types.h:129:54: note: in definition of macro 
'__compiler_offsetof'
 129 | #define __compiler_offsetof(a, b) __builtin_offsetof(a, b)
 |  ^
>> drivers/staging/comedi/drivers/jr3_pci.c:95:17: note: in expansion of macro 
>> 'offsetof'
  95 |  char _reserved[offsetof(const comedi_lrange, range[1])];
 | ^~~~
   drivers/staging/comedi/drivers/jr3_pci.c: In function 
'jr3_pci_poll_subdevice':
>> drivers/staging/comedi/drivers/jr3_pci.c:527:10: error: request for member 
>> 'range' in something not a structure or union
 527 |r[0].l.range[0].min = -get_s16(>fx) * 1000;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:528:10: error: request for member 
'range' in something not a structure or union
 528 |r[0].l.range[0].max = get_s16(>fx) * 1000;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:529:10: error: request for member 
'range' in something not a structure or union
 529 |r[1].l.range[0].min = -get_s16(>fy) * 1000;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:530:10: error: request for member 
'range' in something not a structure or union
 530 |r[1].l.range[0].max = get_s16(>fy) * 1000;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:531:10: error: request for member 
'range' in something not a structure or union
 531 |r[2].l.range[0].min = -get_s16(>fz) * 1000;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:532:10: error: request for member 
'range' in something not a structure or union
 532 |r[2].l.range[0].max = get_s16(>fz) * 1000;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:533:10: error: request for member 
'range' in something not a structure or union
 533 |r[3].l.range[0].min = -get_s16(>mx) * 100;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:534:10: error: request for member 
'range' in something not a structure or union
 534 |r[3].l.range[0].max = get_s16(>mx) * 100;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:535:10: error: request for member 
'range' in something not a structure or union
 535 |r[4].l.range[0].min = -get_s16(>my) * 100;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:536:10: error: request for member 
'range' in something not a structure or union
 536 |r[4].l.range[0].max = get_s16(>my) * 100;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:537:10: error: request for member 
'range' in something not a structure or union
 537 |r[5].l.range[0].min = -get_s16(>mz) * 100;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:539:10: error: request for member 
'range' in something not a structure or union
 539 |r[5].l.range[0].max = get_s16(>mz) * 100;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:540:10: error: request for member 
'range' in something not a structure or union
 540 |r[6].l.range[0].min = -get_s16(>v1) * 100;
 |  ^
   drivers/staging/comedi/drivers/jr3_pci.c:541:10: error: request for member 
'range' in something not a structure or union
 541 |r[6].l.range[0].max = get_s16(>v1) * 100;
 | 

Re: [PATCH] taging: android: ashmem: Declared const key

2020-04-11 Thread kbuild test robot
Hi MugilRaj,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on staging/staging-testing]
[also build test ERROR on v5.6 next-20200411]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/MugilRaj/taging-android-ashmem-Declared-const-key/20200412-033150
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
134c0700a05174f2520d51ba4dd95698ffa779de
config: alpha-allmodconfig (attached as .config)
compiler: alpha-linux-gcc (GCC) 9.3.0
reproduce:
wget 
https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O 
~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=9.3.0 make.cross ARCH=alpha 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All errors (new ones prefixed by >>):

   drivers/staging/android/ashmem.c: In function 'ashmem_mmap':
>> drivers/staging/android/ashmem.c:418:16: error: assignment of read-only 
>> variable 'vmfile_fops'
 418 |vmfile_fops = *vmfile->f_op;
 |^
>> drivers/staging/android/ashmem.c:419:21: error: assignment of member 'mmap' 
>> in read-only object
 419 |vmfile_fops.mmap = ashmem_vmfile_mmap;
 | ^
>> drivers/staging/android/ashmem.c:420:34: error: assignment of member 
>> 'get_unmapped_area' in read-only object
 420 |vmfile_fops.get_unmapped_area =
 |  ^

vim +/vmfile_fops +418 drivers/staging/android/ashmem.c

6d67b0290b4b84 Suren Baghdasaryan 2020-01-27  367  
11980c2ac4ccfa Robert Love2011-12-20  368  static int 
ashmem_mmap(struct file *file, struct vm_area_struct *vma)
11980c2ac4ccfa Robert Love2011-12-20  369  {
d5d1ae9cc69f62 mugil2301  2020-04-12  370   static const  struct 
file_operations vmfile_fops;
11980c2ac4ccfa Robert Love2011-12-20  371   struct ashmem_area 
*asma = file->private_data;
11980c2ac4ccfa Robert Love2011-12-20  372   int ret = 0;
11980c2ac4ccfa Robert Love2011-12-20  373  
11980c2ac4ccfa Robert Love2011-12-20  374   
mutex_lock(_mutex);
11980c2ac4ccfa Robert Love2011-12-20  375  
11980c2ac4ccfa Robert Love2011-12-20  376   /* user needs to 
SET_SIZE before mapping */
59848d6aded59a Alistair Strachan  2018-06-19  377   if (!asma->size) {
11980c2ac4ccfa Robert Love2011-12-20  378   ret = -EINVAL;
11980c2ac4ccfa Robert Love2011-12-20  379   goto out;
11980c2ac4ccfa Robert Love2011-12-20  380   }
11980c2ac4ccfa Robert Love2011-12-20  381  
8632c614565d0c Alistair Strachan  2018-06-19  382   /* requested mapping 
size larger than object size */
8632c614565d0c Alistair Strachan  2018-06-19  383   if (vma->vm_end - 
vma->vm_start > PAGE_ALIGN(asma->size)) {
11980c2ac4ccfa Robert Love2011-12-20  384   ret = -EINVAL;
11980c2ac4ccfa Robert Love2011-12-20  385   goto out;
11980c2ac4ccfa Robert Love2011-12-20  386   }
11980c2ac4ccfa Robert Love2011-12-20  387  
11980c2ac4ccfa Robert Love2011-12-20  388   /* requested protection 
bits must match our allowed protection mask */
59848d6aded59a Alistair Strachan  2018-06-19  389   if ((vma->vm_flags & 
~calc_vm_prot_bits(asma->prot_mask, 0)) &
59848d6aded59a Alistair Strachan  2018-06-19  390   
calc_vm_prot_bits(PROT_MASK, 0)) {
11980c2ac4ccfa Robert Love2011-12-20  391   ret = -EPERM;
11980c2ac4ccfa Robert Love2011-12-20  392   goto out;
11980c2ac4ccfa Robert Love2011-12-20  393   }
56f76fc68492af Arve Hjønnevåg 2011-12-20  394   vma->vm_flags &= 
~calc_vm_may_flags(~asma->prot_mask);
11980c2ac4ccfa Robert Love2011-12-20  395  
11980c2ac4ccfa Robert Love2011-12-20  396   if (!asma->file) {
11980c2ac4ccfa Robert Love2011-12-20  397   char *name = 
ASHMEM_NAME_DEF;
11980c2ac4ccfa Robert Love2011-12-20  398   struct file 
*vmfile;
11980c2ac4ccfa Robert Love2011-12-20  399  
11980c2ac4ccfa Robert Love2011-12-20  400   if 
(asma->name[ASHMEM_NAME_PREFIX_LEN] != '\0')
11980c2ac4ccfa Robert Love2011-12-20  401   name = 
asma->name;
11980c2ac4ccfa Robert Love2011-12-20  402  
11980c2ac4ccfa Robert Love2011-12-20  403   /* ... and 
allocate the backing shmem file */
11980c2ac4ccfa Robert Love2011-12-20  404   vmfile = 
shme

[staging:staging-testing] BUILD SUCCESS 134c0700a05174f2520d51ba4dd95698ffa779de

2020-04-11 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 134c0700a05174f2520d51ba4dd95698ffa779de  staging: rtl8723bs: hal: 
Correct misspelled symbolic name

elapsed time: 484m

configs tested: 166
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
ia64defconfig
powerpc defconfig
powerpc   allnoconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
x86_64   randconfig-a001-20200410
x86_64   randconfig-a002-20200410
x86_64   randconfig-a003-20200410
i386 randconfig-a001-20200410
i386 randconfig-a002-20200410
i386 randconfig-a003-20200410
alpharandconfig-a001-20200410
m68k randconfig-a001-20200410
mips randconfig-a001-20200410
nds32randconfig-a001-20200410
parisc   randconfig-a001-20200410
riscvrandconfig-a001-20200410
c6x  randconfig-a001-20200410
h8300randconfig-a001-20200410
microblaze   randconfig-a001-20200410
nios2randconfig-a001-20200410
sparc64  randconfig-a001-20200410
c6x  randconfig-a001-20200412
h8300randconfig-a001-20200412
microblaze   randconfig-a001-20200412
nios2randconfig-a001-20200412
sparc64  randconfig-a001-20200412
s390 randconfig-a001-20200411
xtensa   randconfig-a001-20200411
sh   randconfig-a001-20200411
openrisc randconfig-a001-20200411
csky randconfig-a001-20200411
x86_64   randconfig-b002-20200410
i386 randconfig-b001-20200410
x86_64   randconfig-b001-20200410
x86_64   randconfig-b003-20200410
i386 randconfig-b003-20200410
i386 randconfig-b002-20200410
x86_64   randconfig-c001-20200410
x86_64   randconfig-c002-20200410
x86_64   randconfig-c003-20200410
i386 randconfig-c001-20200410
i386 randconfig-c002-20200410
i386 randconfig-c003-20200410
x86_64   randconfig-d001-20200410
x86_64   

[staging:staging-testing] BUILD SUCCESS 597e9c3a8e339d8286376a615a3b18cdf3a07101

2020-04-08 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 597e9c3a8e339d8286376a615a3b18cdf3a07101  staging: rtl8723bs: hal: 
Correct misspelled symbolic name

elapsed time: 819m

configs tested: 192
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
ia64  allnoconfig
mips  malta_kvm_defconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
i386  debian-10.3
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64 allyesconfig
ia64defconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a003-20200408
i386 randconfig-a002-20200408
x86_64   randconfig-a001-20200408
x86_64   randconfig-a002-20200408
i386 randconfig-a003-20200408
i386 randconfig-a001-20200408
alpharandconfig-a001-20200408
m68k randconfig-a001-20200408
mips randconfig-a001-20200408
nds32randconfig-a001-20200408
parisc   randconfig-a001-20200408
riscvrandconfig-a001-20200408
c6x  randconfig-a001-20200408
h8300randconfig-a001-20200408
microblaze   randconfig-a001-20200408
nios2randconfig-a001-20200408
sparc64  randconfig-a001-20200408
sparc64  randconfig-a001-20200407
h8300randconfig-a001-20200407
nios2randconfig-a001-20200407
microblaze   randconfig-a001-20200407
c6x  randconfig-a001-20200407
s390 randconfig-a001-20200407
xtensa   randconfig-a001-20200407
csky randconfig-a001-20200407
openrisc randconfig-a001-20200407
sh   randconfig-a001-20200407
csky randconfig-a001-20200408
openrisc randconfig-a001-20200408
s390 randconfig-a001-20200408
sh   randconfig-a001-20200408
xtensa   randconfig-a001-20200408
x86_64   randconfig-b001-20200408
x86_64   randconfig-b002-20200408
x86_64   randconfig-b003-20200408
i386 randconfig-b001-20200408
i386 randconfig-b002-20200408
i386 

[driver-core:debugfs_cleanup] BUILD REGRESSION 6cdbeae3773b0bb611d8caf5e84650f58a02748b

2020-04-06 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_cleanup
branch HEAD: 6cdbeae3773b0bb611d8caf5e84650f58a02748b  nouveau: no need to 
check return value of debugfs_create functions

Error/Warning in current branch:

drivers/gpu/drm/drm_debugfs.c:232:5: error: conflicting types for 
'drm_debugfs_remove_files'
drivers/gpu/drm/drm_debugfs.c:253:1: note: in expansion of macro 'EXPORT_SYMBOL'
drivers/gpu/drm/i915/display/intel_display_debugfs.c:1943:9: error: void value 
not ignored as it ought to be
drivers/gpu/drm/i915/display/intel_display_debugfs.c:1946:1: warning: control 
reaches end of non-void function [-Wreturn-type]
drivers/gpu/drm/i915/i915_debugfs.c:2179:6: error: conflicting types for 
'i915_debugfs_register'

Error/Warning ids grouped by kconfigs:

recent_errors
|-- alpha-allyesconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- alpha-randconfig-a001-20200406
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arc-randconfig-a001-20200407
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-allmodconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-allyesconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-at91_dt_defconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-defconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-exynos_defconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-hisi_defconfig
|   `-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|-- arm-imx_v6_v7_defconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-multi_v5_defconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-multi_v7_defconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-omap2plus_defconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-randconfig-a001-20200406
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-randconfig-a001-20200407
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm-shmobile_defconfig
|   `-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|-- arm-sunxi_defconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm64-allmodconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm64-allyesconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm64-defconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- arm64-randconfig-a001-20200406
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- drivers-gpu-drm-drm_debugfs.c:note:in-expansion-of-macro-EXPORT_SYMBOL
|-- c6x-allyesconfig
|   |-- 
drivers-gpu-drm-drm_debugfs.c:error:conflicting-types-for-drm_debugfs_remove_files
|   `-- 

[driver-core:debugfs_remove_return_value] BUILD SUCCESS 5607303ec5411cf9e24005053ea4064f43f8911d

2020-04-06 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_remove_return_value
branch HEAD: 5607303ec5411cf9e24005053ea4064f43f8911d  debugfs: remove return 
value of debugfs_create_u32()

elapsed time: 484m

configs tested: 162
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
nios2 10m50_defconfig
riscv  rv32_defconfig
m68k  multi_defconfig
ia64defconfig
powerpc defconfig
m68k   m5475evb_defconfig
um   x86_64_defconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
i386  debian-10.3
i386defconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
arm64allmodconfig
nios2 3c120_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   sun3_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a003-20200406
i386 randconfig-a002-20200406
x86_64   randconfig-a002-20200406
x86_64   randconfig-a001-20200406
i386 randconfig-a001-20200406
i386 randconfig-a003-20200406
mips randconfig-a001-20200406
nds32randconfig-a001-20200406
m68k randconfig-a001-20200406
parisc   randconfig-a001-20200406
alpharandconfig-a001-20200406
riscvrandconfig-a001-20200406
sparc64  randconfig-a001-20200406
h8300randconfig-a001-20200406
nios2randconfig-a001-20200406
microblaze   randconfig-a001-20200406
c6x  randconfig-a001-20200406
s390 randconfig-a001-20200406
xtensa   randconfig-a001-20200406
csky randconfig-a001-20200406
openrisc randconfig-a001-20200406
sh   randconfig-a001-20200406
x86_64   randconfig-b001-20200406
x86_64   randconfig-b002-20200406
x86_64   randconfig-b003-20200406
i386 randconfig-b001-20200406
i386 randconfig-b002-20200406
i386 randconfig-b003-20200406
x86_64   randconfig-c001-20200406
x86_64   randconfig-c002-20200406
x86_64   randconfig-c003-20200406
i386 randconfig-c001-20200406
i386 randconfig-c002-20200406
i386 randconfig-c003-20200406
x86_64   randconfig-d003-20200406
x86_64   randconfig-d001-20200406
i386  

[staging:staging-testing] BUILD SUCCESS 28910cbdc813ef8d7fa14b78d220457388c05c61

2020-04-06 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 28910cbdc813ef8d7fa14b78d220457388c05c61  staging: wfx: remove 
hack about tx_rate policies

Error/Warning in current branch:

drivers/staging/vt6655/baseband.c:1711:15: warning: The scope of the variable 
'preamble' can be reduced. [variableScope]
drivers/staging/vt6655/baseband.c:1912:16: warning: The scope of the variable 
'by_value' can be reduced. [variableScope]
drivers/staging/wfx/queue.c:349:18: warning: The scope of the variable 'skb' 
can be reduced. [variableScope]
drivers/staging/wfx/queue.c:92:18: warning: The scope of the variable 'hif_msg' 
can be reduced. [variableScope]
struct hif_msg *hif_msg;
unsigned char by_value;

Error/Warning ids grouped by kconfigs:

recent_errors
|-- i386-allmodconfig
|   |-- 
drivers-staging-vt6655-baseband.c:warning:The-scope-of-the-variable-by_value-can-be-reduced.-variableScope
|   |-- 
drivers-staging-vt6655-baseband.c:warning:The-scope-of-the-variable-preamble-can-be-reduced.-variableScope
|   `-- unsigned-char-by_value
`-- x86_64-allyesconfig
|-- 
drivers-staging-vt6655-baseband.c:warning:The-scope-of-the-variable-by_value-can-be-reduced.-variableScope
|-- 
drivers-staging-vt6655-baseband.c:warning:The-scope-of-the-variable-preamble-can-be-reduced.-variableScope
|-- 
drivers-staging-wfx-queue.c:warning:The-scope-of-the-variable-hif_msg-can-be-reduced.-variableScope
|-- 
drivers-staging-wfx-queue.c:warning:The-scope-of-the-variable-skb-can-be-reduced.-variableScope
|-- struct-hif_msg-hif_msg
`-- unsigned-char-by_value

elapsed time: 483m

configs tested: 157
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
ia64defconfig
openrisc simple_smp_defconfig
nios2 10m50_defconfig
riscv  rv32_defconfig
m68k  multi_defconfig
powerpc defconfig
m68k   m5475evb_defconfig
um   x86_64_defconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
i386  debian-10.3
i386defconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a003-20200406
i386 randconfig-a002-20200406
x86_64   randconfig-a002-20200406
x86_64   randconfig-a001-20200406
i386 

[driver-core:debugfs_cleanup 1/3] drivers/gpu/drm/drm_debugfs.c:232:5: error: conflicting types for 'drm_debugfs_remove_files'

2020-04-06 Thread kbuild test robot
tree:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git 
debugfs_cleanup
head:   6cdbeae3773b0bb611d8caf5e84650f58a02748b
commit: a05adcf1157e64eb2bf411cb92896af1082a26b9 [1/3] drm: make .debugfs_init 
and drm_debugfs_create_files() return void
config: i386-allyesconfig (attached as .config)
compiler: gcc-7 (Ubuntu 7.5.0-6ubuntu2) 7.5.0
reproduce:
git checkout a05adcf1157e64eb2bf411cb92896af1082a26b9
# save the attached .config to linux build tree
make ARCH=i386 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 

All error/warnings (new ones prefixed by >>):

>> drivers/gpu/drm/drm_debugfs.c:232:5: error: conflicting types for 
>> 'drm_debugfs_remove_files'
int drm_debugfs_remove_files(const struct drm_info_list *files, int count,
^~~~
   In file included from drivers/gpu/drm/drm_debugfs.c:35:0:
   include/drm/drm_debugfs.h:86:6: note: previous declaration of 
'drm_debugfs_remove_files' was here
void drm_debugfs_remove_files(const struct drm_info_list *files,
 ^~~~
   In file included from include/linux/linkage.h:7:0,
from include/linux/fs.h:5,
from include/linux/debugfs.h:15,
from drivers/gpu/drm/drm_debugfs.c:26:
   drivers/gpu/drm/drm_debugfs.c:253:15: error: conflicting types for 
'drm_debugfs_remove_files'
EXPORT_SYMBOL(drm_debugfs_remove_files);
  ^
   include/linux/export.h:98:21: note: in definition of macro '___EXPORT_SYMBOL'
 extern typeof(sym) sym;   \
^~~
   include/linux/export.h:155:34: note: in expansion of macro '__EXPORT_SYMBOL'
#define _EXPORT_SYMBOL(sym, sec) __EXPORT_SYMBOL(sym, sec, "")
 ^~~
   include/linux/export.h:158:29: note: in expansion of macro '_EXPORT_SYMBOL'
#define EXPORT_SYMBOL(sym)  _EXPORT_SYMBOL(sym, "")
^~
>> drivers/gpu/drm/drm_debugfs.c:253:1: note: in expansion of macro 
>> 'EXPORT_SYMBOL'
EXPORT_SYMBOL(drm_debugfs_remove_files);
^
   In file included from drivers/gpu/drm/drm_debugfs.c:35:0:
   include/drm/drm_debugfs.h:86:6: note: previous declaration of 
'drm_debugfs_remove_files' was here
void drm_debugfs_remove_files(const struct drm_info_list *files,
 ^~~~
--
   drivers/gpu/drm/i915/display/intel_display_debugfs.c: In function 
'intel_display_debugfs_register':
>> drivers/gpu/drm/i915/display/intel_display_debugfs.c:1943:9: error: void 
>> value not ignored as it ought to be
 return drm_debugfs_create_files(intel_display_debugfs_list,
^~~~
 ARRAY_SIZE(intel_display_debugfs_list),
 ~~~
 minor->debugfs_root, minor);
 ~~~
>> drivers/gpu/drm/i915/display/intel_display_debugfs.c:1946:1: warning: 
>> control reaches end of non-void function [-Wreturn-type]
}
^
--
>> drivers/gpu/drm/i915/i915_debugfs.c:2179:6: error: conflicting types for 
>> 'i915_debugfs_register'
void i915_debugfs_register(struct drm_i915_private *dev_priv)
 ^
   In file included from drivers/gpu/drm/i915/i915_debugfs.c:42:0:
   drivers/gpu/drm/i915/i915_debugfs.h:15:5: note: previous declaration of 
'i915_debugfs_register' was here
int i915_debugfs_register(struct drm_i915_private *dev_priv);
^

vim +/drm_debugfs_remove_files +232 drivers/gpu/drm/drm_debugfs.c

28a62277e06f93 Ben Gamari  2009-02-17  230  
28a62277e06f93 Ben Gamari  2009-02-17  231  
7d74795b740135 Lespiau, Damien 2013-10-17 @232  int 
drm_debugfs_remove_files(const struct drm_info_list *files, int count,
28a62277e06f93 Ben Gamari  2009-02-17  233   
struct drm_minor *minor)
28a62277e06f93 Ben Gamari  2009-02-17  234  {
28a62277e06f93 Ben Gamari  2009-02-17  235  struct list_head *pos, 
*q;
28a62277e06f93 Ben Gamari  2009-02-17  236  struct drm_info_node 
*tmp;
28a62277e06f93 Ben Gamari  2009-02-17  237  int i;
28a62277e06f93 Ben Gamari  2009-02-17  238  
b3e067c0b27619 Marcin Slusarz  2011-11-09  239  
mutex_lock(>debugfs_lock);
28a62277e06f93 Ben Gamari  2009-02-17  240  for (i = 0; i < count; 
i++) {
b3e067c0b27619 Marcin Slusarz  2011-11-09  241  
list_for_each_safe(pos, q, >debugfs_list) {
28a62277e06f93 Ben Gamari  2009-02-17  242  tmp = 
list_entry(pos, struct drm_info_node, list);
28a62277e06f93 Ben Gamari  2009-02-17  243  if 
(tmp->info_ent == [i]) {
28a62277e06f93 Ben Gamari  2009-02-17  244   

[staging:staging-testing] BUILD SUCCESS e7b6875944e61bec586ede80b95727cd55381e1e

2020-04-05 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: e7b6875944e61bec586ede80b95727cd55381e1e  Staging: vt6655: Replace 
camel case variable names.

Error/Warning in current branch:

drivers/staging/vt6655/baseband.c:1711:15: warning: The scope of the variable 
'preamble' can be reduced. [variableScope]
drivers/staging/vt6655/baseband.c:1912:16: warning: The scope of the variable 
'by_value' can be reduced. [variableScope]
unsigned char by_value;

Error/Warning ids grouped by kconfigs:

recent_errors
`-- x86_64-allyesconfig
|-- 
drivers-staging-vt6655-baseband.c:warning:The-scope-of-the-variable-by_value-can-be-reduced.-variableScope
|-- 
drivers-staging-vt6655-baseband.c:warning:The-scope-of-the-variable-preamble-can-be-reduced.-variableScope
`-- unsigned-char-by_value

elapsed time: 484m

configs tested: 158
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
riscvallmodconfig
powerpc defconfig
m68k  multi_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
i386  debian-10.3
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
arc defconfig
arc  allyesconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
x86_64   randconfig-a003-20200405
i386 randconfig-a002-20200405
x86_64   randconfig-a002-20200405
x86_64   randconfig-a001-20200405
i386 randconfig-a001-20200405
i386 randconfig-a003-20200405
alpharandconfig-a001-20200405
m68k randconfig-a001-20200405
mips randconfig-a001-20200405
nds32randconfig-a001-20200405
parisc   randconfig-a001-20200405
riscvrandconfig-a001-20200405
sparc64  randconfig-a001-20200405
h8300randconfig-a001-20200405
nios2randconfig-a001-20200405
microblaze   randconfig-a001-20200405
c6x  randconfig-a001-20200405
s390 randconfig-a001-20200405
xtensa   randconfig-a001-20200405
csky randconfig-a001-20200405
openrisc randconfig-a001-20200405
sh   randconfig-a001-20200405
i386 

[staging:staging-testing 41/41] drivers/staging/vt6655/baseband.c:1711:15: warning: The scope of the variable 'preamble' can be reduced. [variableScope]

2020-04-05 Thread kbuild test robot
tree:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
staging-testing
head:   e7b6875944e61bec586ede80b95727cd55381e1e
commit: e7b6875944e61bec586ede80b95727cd55381e1e [41/41] Staging: vt6655: 
Replace camel case variable names.

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot 


cppcheck warnings: (new ones prefixed by >>)

>> drivers/staging/vt6655/baseband.c:1711:15: warning: The scope of the 
>> variable 'preamble' can be reduced. [variableScope]
unsigned int preamble;
 ^
>> drivers/staging/vt6655/baseband.c:1912:16: warning: The scope of the 
>> variable 'by_value' can be reduced. [variableScope]
>>  unsigned char by_value;
  ^
   drivers/staging/vt6655/baseband.c:1955:16: warning: The scope of the 
variable 'by_value' can be reduced. [variableScope]
>>  unsigned char by_value;
  ^

vim +/preamble +1711 drivers/staging/vt6655/baseband.c

  1689  
  1690  /*-  Export Variables  --*/
  1691  /*
  1692   * Description: Calculate data frame transmitting time
  1693   *
  1694   * Parameters:
  1695   *  In:
  1696   *  by_preamble_type  - Preamble Type
  1697   *  by_pkt_type- PK_TYPE_11A, PK_TYPE_11B, PK_TYPE_11GB, 
PK_TYPE_11GA
  1698   *  cb_frame_length   - Baseband Type
  1699   *  tx_rate   - Tx Rate
  1700   *  Out:
  1701   *
  1702   * Return Value: FrameTime
  1703   *
  1704   */
  1705  unsigned int bb_get_frame_time(unsigned char by_preamble_type,
  1706 unsigned char by_pkt_type,
  1707 unsigned int cb_frame_length,
  1708 unsigned short tx_rate)
  1709  {
  1710  unsigned int frame_time;
> 1711  unsigned int preamble;
  1712  unsigned int tmp;
  1713  unsigned int rate_idx = (unsigned int)tx_rate;
  1714  unsigned int rate = 0;
  1715  
  1716  if (rate_idx > RATE_54M)
  1717  return 0;
  1718  
  1719  rate = (unsigned int)awcFrameTime[rate_idx];
  1720  
  1721  if (rate_idx <= 3) {/* CCK mode */
  1722  if (by_preamble_type == 1) /* Short */
  1723  preamble = 96;
  1724  else
  1725  preamble = 192;
  1726  frame_time = (cb_frame_length * 80) / rate;  /* ? */
  1727  tmp = (frame_time * rate) / 80;
  1728  if (cb_frame_length != tmp)
  1729  frame_time++;
  1730  
  1731  return preamble + frame_time;
  1732  }
  1733  frame_time = (cb_frame_length * 8 + 22) / rate; /*  */
  1734  tmp = ((frame_time * rate) - 22) / 8;
  1735  if (cb_frame_length != tmp)
  1736  frame_time++;
  1737  
  1738  frame_time = frame_time * 4;/* ??? */
  1739  if (by_pkt_type != PK_TYPE_11A)
  1740  frame_time += 6; /* ?? */
  1741  
  1742  return 20 + frame_time; /* ?? */
  1743  }
  1744  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-...@lists.01.org
___
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel


[staging:staging-testing] BUILD SUCCESS 2577408b68c05a5b85d95d0e60f51509d4a1a674

2020-04-04 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 2577408b68c05a5b85d95d0e60f51509d4a1a674  staging: bcm2835-camera: 
reduce indentation in ctrl_set_image_effect

elapsed time: 846m

configs tested: 196
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
i386 alldefconfig
h8300   h8s-sim_defconfig
xtensa  iss_defconfig
ia64defconfig
powerpc defconfig
sh   allmodconfig
alpha   defconfig
m68k allmodconfig
sparc64   allnoconfig
h8300 edosk2674_defconfig
s390  debug_defconfig
riscv  rv32_defconfig
sh  rsk7269_defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
h8300h8300h-sim_defconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc defconfig
arc  allyesconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
mips allyesconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mips 64r6el_defconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
i386 randconfig-a002-20200404
x86_64   randconfig-a002-20200404
x86_64   randconfig-a001-20200404
i386 randconfig-a001-20200404
i386 randconfig-a003-20200404
x86_64   randconfig-a001-20200405
x86_64   randconfig-a002-20200405
x86_64   randconfig-a003-20200405
i386 randconfig-a001-20200405
i386 randconfig-a002-20200405
i386 randconfig-a003-20200405
alpharandconfig-a001-20200405
m68k randconfig-a001-20200405
mips randconfig-a001-20200405
nds32randconfig-a001-20200405
parisc   randconfig-a001-20200405
riscvrandconfig-a001-20200405
mips randconfig-a001-20200404
nds32randconfig-a001-20200404
m68k randconfig-a001-20200404
parisc   randconfig-a001-20200404
alpharandconfig-a001-20200404
riscvrandconfig-a001-20200404
c6x  randconfig-a001-20200405
h8300randconfig-a001-20200405
microblaze   randconfig-a001-20200405
nios2randconfig-a001-20200405
sparc64  randconfig-a001-20200405
sparc64  randconfig-a001-20200404
h8300randconfig-a001-20200404
nios2randconfig-a001-20200404
microblaze   randconfig-a001-20200404
c6x  randconfig-a001-20200404
s390   

[staging:staging-testing] BUILD SUCCESS e41d25a3f8a9d3d9a89527a77e687bd308a847a8

2020-04-03 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: e41d25a3f8a9d3d9a89527a77e687bd308a847a8  staging: bcm2835-camera: 
reduce indentation in ctrl_set_image_effect

elapsed time: 482m

configs tested: 163
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
i386defconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
powerpc  rhel-kconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc defconfig
powerpc   ppc64_defconfig
mips  fuloong2e_defconfig
mips allyesconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
mips 64r6el_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200403
x86_64   randconfig-a002-20200403
x86_64   randconfig-a003-20200403
i386 randconfig-a001-20200403
i386 randconfig-a002-20200403
i386 randconfig-a003-20200403
nds32randconfig-a001-20200403
m68k randconfig-a001-20200403
alpharandconfig-a001-20200403
parisc   randconfig-a001-20200403
riscvrandconfig-a001-20200403
sparc64  randconfig-a001-20200403
h8300randconfig-a001-20200403
nios2randconfig-a001-20200403
microblaze   randconfig-a001-20200403
c6x  randconfig-a001-20200403
s390 randconfig-a001-20200403
xtensa   randconfig-a001-20200403
csky randconfig-a001-20200403
openrisc randconfig-a001-20200403
sh   randconfig-a001-20200403
x86_64   randconfig-b001-20200403
x86_64   randconfig-b002-20200403
x86_64   randconfig-b003-20200403
i386 randconfig-b001-20200403
i386 randconfig-b002-20200403
i386 randconfig-b003-20200403
x86_64   randconfig-c001-20200403
x86_64   randconfig-c002-20200403
x86_64   randconfig-c003-20200403
i386 randconfig-c001-20200403
i386 randconfig-c002-20200403
i386 randconfig-c003-20200403
x86_64   randconfig-d001-20200403
x86_64   randconfig-d002-20200403
x86_64   randconfig-d003-20200403
i386 randconfig-d001-20200403
i386 randconfig-d002-20200403
i386   

[driver-core:debugfs_remove_return_value] BUILD SUCCESS bbf258a14f332b2432a57ade3d4d2d844aeb5db5

2020-04-03 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_remove_return_value
branch HEAD: bbf258a14f332b2432a57ade3d4d2d844aeb5db5  debugfs: remove return 
value of debugfs_create_u32()

elapsed time: 484m

configs tested: 152
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
i386defconfig
nds32   defconfig
s390   zfcpdump_defconfig
riscvallyesconfig
ia64 alldefconfig
ia64defconfig
powerpc defconfig
riscvnommu_virt_defconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
alpharandconfig-a001-20200403
m68k randconfig-a001-20200403
mips randconfig-a001-20200403
nds32randconfig-a001-20200403
parisc   randconfig-a001-20200403
riscvrandconfig-a001-20200403
sparc64  randconfig-a001-20200403
h8300randconfig-a001-20200403
nios2randconfig-a001-20200403
c6x  randconfig-a001-20200403
microblaze   randconfig-a001-20200403
csky randconfig-a001-20200403
openrisc randconfig-a001-20200403
s390 randconfig-a001-20200403
sh   randconfig-a001-20200403
xtensa   randconfig-a001-20200403
x86_64   randconfig-b001-20200403
x86_64   randconfig-b002-20200403
x86_64   randconfig-b003-20200403
i386 randconfig-b001-20200403
i386 randconfig-b002-20200403
i386 randconfig-b003-20200403
x86_64   randconfig-d001-20200403
x86_64   randconfig-d002-20200403
x86_64   randconfig-d003-20200403
i386 randconfig-d001-20200403
i386 randconfig-d002-20200403
i386 randconfig-d003-20200403
x86_64   randconfig-e001-20200403
x86_64   randconfig-e002-20200403
x86_64   randconfig-e003-20200403
i386 randconfig-e001-20200403
i386 randconfig-e003-20200403
i386 randconfig-e002-20200403
x86_64   randconfig-f001-20200403
x86_64

[driver-core:debugfs_remove_return_value] BUILD SUCCESS 927e420044b36db8b8be2ed95e7b723b7808ebe4

2020-04-02 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_remove_return_value
branch HEAD: 927e420044b36db8b8be2ed95e7b723b7808ebe4  debugfs: remove return 
value of debugfs_create_u32()

elapsed time: 1375m

configs tested: 167
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64 allnoconfig
arm   allnoconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
m68k   m5475evb_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64defconfig
ia64  allnoconfig
ia64 alldefconfig
arm64allmodconfig
arm  allmodconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
x86_64   randconfig-a001-20200401
x86_64   randconfig-a002-20200401
x86_64   randconfig-a003-20200401
i386 randconfig-a001-20200401
i386 randconfig-a002-20200401
i386 randconfig-a003-20200401
mips randconfig-a001-20200401
nds32randconfig-a001-20200401
m68k randconfig-a001-20200401
alpharandconfig-a001-20200401
parisc   randconfig-a001-20200401
riscvrandconfig-a001-20200401
sparc64  randconfig-a001-20200401
h8300randconfig-a001-20200401
nios2randconfig-a001-20200401
microblaze   randconfig-a001-20200401
c6x  randconfig-a001-20200401
csky randconfig-a001-20200401
openrisc randconfig-a001-20200401
s390 randconfig-a001-20200401
sh   randconfig-a001-20200401
xtensa   randconfig-a001-20200401
i386 randconfig-b003-20200401
x86_64   randconfig-b002-20200401
x86_64   randconfig-b003-20200401
i386 randconfig-b001-20200401
x86_64   randconfig-b001-20200401
i386 randconfig-b002-20200401
x86_64   randconfig-c001-20200401
x86_64   randconfig-c002-20200401
x86_64   randconfig-c003-20200401
i386 randconfig-c001-20200401
i386 randconfig-c002-20200401
i386 randconfig-c003-20200401
x86_64   randconfig-d001-20200401
x86_64   randconfig-d002-20200401
x86_64   randconfig-d003-20200401
i386 randconfig-d001-20200401
i386 randconfig-d002-20200401
i386 randconfig-d003-20200401
i386 

[driver-core:debugfs_cleanup] BUILD SUCCESS 71280bf8796b28d6fc09ea490276d02e240948b5

2020-04-02 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_cleanup
branch HEAD: 71280bf8796b28d6fc09ea490276d02e240948b5  powerpc: powernv: no 
need to check return value of debugfs_create functions

elapsed time: 1322m

configs tested: 162
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm64allyesconfig
arm  allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
m68k   m5475evb_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
arm  allmodconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
x86_64   randconfig-a003-20200401
i386 randconfig-a002-20200401
x86_64   randconfig-a002-20200401
x86_64   randconfig-a001-20200401
i386 randconfig-a003-20200401
i386 randconfig-a001-20200401
mips randconfig-a001-20200401
nds32randconfig-a001-20200401
m68k randconfig-a001-20200401
alpharandconfig-a001-20200401
parisc   randconfig-a001-20200401
riscvrandconfig-a001-20200401
sparc64  randconfig-a001-20200401
h8300randconfig-a001-20200401
nios2randconfig-a001-20200401
microblaze   randconfig-a001-20200401
c6x  randconfig-a001-20200401
csky randconfig-a001-20200401
openrisc randconfig-a001-20200401
s390 randconfig-a001-20200401
sh   randconfig-a001-20200401
xtensa   randconfig-a001-20200401
i386 randconfig-b003-20200401
x86_64   randconfig-b002-20200401
x86_64   randconfig-b003-20200401
i386 randconfig-b001-20200401
x86_64   randconfig-b001-20200401
i386 randconfig-b002-20200401
i386 randconfig-c001-20200401
i386 randconfig-c003-20200401
x86_64   randconfig-c003-20200401
i386 randconfig-c002-20200401
x86_64   randconfig-c001-20200401
x86_64   randconfig-c002-20200401
x86_64   randconfig-d001-20200401
x86_64   randconfig-d002-20200401
x86_64   randconfig-d003-20200401
i386 randconfig-d001-20200401
i386 randconfig-d002-20200401

[driver-core:debugfs_remove_return_value] BUILD SUCCESS 3777507a35aed836416a6233140b9f889cbb90d7

2020-03-31 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_remove_return_value
branch HEAD: 3777507a35aed836416a6233140b9f889cbb90d7  debugfs: remove return 
value of debugfs_create_u32()

elapsed time: 786m

configs tested: 152
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
riscv  rv32_defconfig
mips  malta_kvm_defconfig
s390defconfig
ia64defconfig
powerpc defconfig
nios2 10m50_defconfig
sparc64  allmodconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200331
x86_64   randconfig-a002-20200331
x86_64   randconfig-a003-20200331
i386 randconfig-a001-20200331
i386 randconfig-a002-20200331
i386 randconfig-a003-20200331
riscvrandconfig-a001-20200331
mips randconfig-a001-20200331
m68k randconfig-a001-20200331
parisc   randconfig-a001-20200331
alpharandconfig-a001-20200331
nds32randconfig-a001-20200331
c6x  randconfig-a001-20200331
h8300randconfig-a001-20200331
microblaze   randconfig-a001-20200331
nios2randconfig-a001-20200331
sparc64  randconfig-a001-20200331
csky randconfig-a001-20200331
openrisc randconfig-a001-20200331
s390 randconfig-a001-20200331
sh   randconfig-a001-20200331
xtensa   randconfig-a001-20200331
x86_64   randconfig-b001-20200331
x86_64   randconfig-b002-20200331
x86_64   randconfig-b003-20200331
i386 randconfig-b001-20200331
i386 randconfig-b002-20200331
i386 randconfig-b003-20200331
i386 randconfig-c003-20200331
x86_64   randconfig-c003-20200331
x86_64   randconfig-c002-20200331
i386 randconfig-c002-20200331
x86_64   randconfig-c001-20200331
i386 randconfig-c001-20200331
x86_64   randconfig-e001-20200331
x86_64

[driver-core:debugfs_cleanup] BUILD SUCCESS 8bc760d4977eeecc8c9eb13d5614f39d73151c0e

2020-03-31 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_cleanup
branch HEAD: 8bc760d4977eeecc8c9eb13d5614f39d73151c0e  powerpc: powernv: no 
need to check return value of debugfs_create functions

elapsed time: 787m

configs tested: 150
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
riscv  rv32_defconfig
nios2 10m50_defconfig
sparc64  allmodconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
nios2 3c120_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a003-20200331
x86_64   randconfig-a002-20200331
i386 randconfig-a001-20200331
i386 randconfig-a002-20200331
i386 randconfig-a003-20200331
x86_64   randconfig-a001-20200331
riscvrandconfig-a001-20200331
mips randconfig-a001-20200331
m68k randconfig-a001-20200331
parisc   randconfig-a001-20200331
alpharandconfig-a001-20200331
nds32randconfig-a001-20200331
microblaze   randconfig-a001-20200331
h8300randconfig-a001-20200331
nios2randconfig-a001-20200331
c6x  randconfig-a001-20200331
sparc64  randconfig-a001-20200331
csky randconfig-a001-20200331
s390 randconfig-a001-20200331
xtensa   randconfig-a001-20200331
openrisc randconfig-a001-20200331
sh   randconfig-a001-20200331
x86_64   randconfig-b001-20200331
x86_64   randconfig-b002-20200331
x86_64   randconfig-b003-20200331
i386 randconfig-b001-20200331
i386 randconfig-b002-20200331
i386 randconfig-b003-20200331
i386 randconfig-c003-20200331
x86_64   randconfig-c003-20200331
x86_64   randconfig-c002-20200331
i386 randconfig-c002-20200331
x86_64   randconfig-c001-20200331
i386 randconfig-c001-20200331
i386 randconfig-d003-20200331
i386 randconfig-d001-20200331
i386 randconfig-d002-20200331

Re: [PATCH] staging: android: ashmem: Declared file operation with const keyword

2020-03-29 Thread kbuild test robot
Hi SandeshKenjanaAshok,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on staging/staging-testing]
[also build test ERROR on v5.6-rc7 next-20200327]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:
https://github.com/0day-ci/linux/commits/SandeshKenjanaAshok/staging-android-ashmem-Declared-file-operation-with-const-keyword/20200329-014353
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
e681bb287f40e7a9dbcb04cef80fd87a2511ab86
config: um-allmodconfig (attached as .config)
compiler: gcc-7 (Debian 7.5.0-5) 7.5.0
reproduce:
# save the attached .config to linux build tree
make ARCH=um 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot 

All errors (new ones prefixed by >>):

   drivers/staging/android/ashmem.c: In function 'ashmem_mmap':
>> drivers/staging/android/ashmem.c:418:16: error: assignment of read-only 
>> variable 'vmfile_fops'
   vmfile_fops = *vmfile->f_op;
   ^
>> drivers/staging/android/ashmem.c:419:21: error: assignment of member 'mmap' 
>> in read-only object
   vmfile_fops.mmap = ashmem_vmfile_mmap;
^
>> drivers/staging/android/ashmem.c:420:34: error: assignment of member 
>> 'get_unmapped_area' in read-only object
   vmfile_fops.get_unmapped_area =
 ^

vim +/vmfile_fops +418 drivers/staging/android/ashmem.c

6d67b0290b4b84 Suren Baghdasaryan  2020-01-27  367  
11980c2ac4ccfa Robert Love 2011-12-20  368  static int 
ashmem_mmap(struct file *file, struct vm_area_struct *vma)
11980c2ac4ccfa Robert Love 2011-12-20  369  {
3e4e9953cadce9 SandeshKenjanaAshok 2020-03-28  370  static const struct 
file_operations vmfile_fops;
11980c2ac4ccfa Robert Love 2011-12-20  371  struct ashmem_area 
*asma = file->private_data;
11980c2ac4ccfa Robert Love 2011-12-20  372  int ret = 0;
11980c2ac4ccfa Robert Love 2011-12-20  373  
11980c2ac4ccfa Robert Love 2011-12-20  374  
mutex_lock(_mutex);
11980c2ac4ccfa Robert Love 2011-12-20  375  
11980c2ac4ccfa Robert Love 2011-12-20  376  /* user needs to 
SET_SIZE before mapping */
59848d6aded59a Alistair Strachan   2018-06-19  377  if (!asma->size) {
11980c2ac4ccfa Robert Love 2011-12-20  378  ret = -EINVAL;
11980c2ac4ccfa Robert Love 2011-12-20  379  goto out;
11980c2ac4ccfa Robert Love 2011-12-20  380  }
11980c2ac4ccfa Robert Love 2011-12-20  381  
8632c614565d0c Alistair Strachan   2018-06-19  382  /* requested mapping 
size larger than object size */
8632c614565d0c Alistair Strachan   2018-06-19  383  if (vma->vm_end - 
vma->vm_start > PAGE_ALIGN(asma->size)) {
11980c2ac4ccfa Robert Love 2011-12-20  384  ret = -EINVAL;
11980c2ac4ccfa Robert Love 2011-12-20  385  goto out;
11980c2ac4ccfa Robert Love 2011-12-20  386  }
11980c2ac4ccfa Robert Love 2011-12-20  387  
11980c2ac4ccfa Robert Love 2011-12-20  388  /* requested protection 
bits must match our allowed protection mask */
59848d6aded59a Alistair Strachan   2018-06-19  389  if ((vma->vm_flags & 
~calc_vm_prot_bits(asma->prot_mask, 0)) &
59848d6aded59a Alistair Strachan   2018-06-19  390  
calc_vm_prot_bits(PROT_MASK, 0)) {
11980c2ac4ccfa Robert Love 2011-12-20  391  ret = -EPERM;
11980c2ac4ccfa Robert Love 2011-12-20  392  goto out;
11980c2ac4ccfa Robert Love 2011-12-20  393  }
56f76fc68492af Arve Hjønnevåg  2011-12-20  394  vma->vm_flags &= 
~calc_vm_may_flags(~asma->prot_mask);
11980c2ac4ccfa Robert Love 2011-12-20  395  
11980c2ac4ccfa Robert Love 2011-12-20  396  if (!asma->file) {
11980c2ac4ccfa Robert Love 2011-12-20  397  char *name = 
ASHMEM_NAME_DEF;
11980c2ac4ccfa Robert Love 2011-12-20  398  struct file 
*vmfile;
11980c2ac4ccfa Robert Love 2011-12-20  399  
11980c2ac4ccfa Robert Love 2011-12-20  400  if 
(asma->name[ASHMEM_NAME_PREFIX_LEN] != '\0')
11980c2ac4ccfa Robert Love 2011-12-20  401  name = 
asma->name;
11980c2ac4ccfa Robert Love 2011-12-20  402  
11980c2ac4ccfa Robert Love 2011-12-20  403  /* ... and 
allocate the backing shmem file */
11980c2ac4ccfa Robert Love 2011-12-20  404  vmfile = 
shmem_file_setup(name, asma->size, vma->vm_flags);
7f44cb0ba88b40 Viresh Kumar2015-07-31  405  if 
(IS_ERR(vmfile)) {
11980c2ac4ccfa Robert Love   

[driver-core:driver-core-testing] BUILD SUCCESS 18555cb6db2373b9a5ec1f7572773fd58c77f9ba

2020-03-27 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: 18555cb6db2373b9a5ec1f7572773fd58c77f9ba  Revert "driver core: Set 
fw_devlink to "permissive" behavior by default"

elapsed time: 485m

configs tested: 156
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
shtitan_defconfig
sh   allmodconfig
riscvallmodconfig
riscv allnoconfig
microblazenommu_defconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
x86_64   randconfig-a001-20200327
x86_64   randconfig-a002-20200327
x86_64   randconfig-a003-20200327
i386 randconfig-a001-20200327
i386 randconfig-a002-20200327
i386 randconfig-a003-20200327
mips randconfig-a001-20200327
nds32randconfig-a001-20200327
m68k randconfig-a001-20200327
parisc   randconfig-a001-20200327
alpharandconfig-a001-20200327
riscvrandconfig-a001-20200327
h8300randconfig-a001-20200327
microblaze   randconfig-a001-20200327
nios2randconfig-a001-20200327
c6x  randconfig-a001-20200327
sparc64  randconfig-a001-20200327
csky randconfig-a001-20200327
openrisc randconfig-a001-20200327
s390 randconfig-a001-20200327
sh   randconfig-a001-20200327
xtensa   randconfig-a001-20200327
x86_64   randconfig-b001-20200327
x86_64   randconfig-b002-20200327
x86_64   randconfig-b003-20200327
i386 randconfig-b001-20200327
i386 randconfig-b002-20200327
i386 randconfig-b003-20200327
x86_64   randconfig-c001-20200327
x86_64   randconfig-c002-20200327
x86_64   randconfig-c003-20200327
i386 randconfig-c001-20200327
i386 randconfig-c002-20200327
i386 randconfig-c003-20200327

[driver-core:debugfs_cleanup] BUILD SUCCESS c6380a673fb3aa90fa9c2cac3453169e4f9b66e3

2020-03-27 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_cleanup
branch HEAD: c6380a673fb3aa90fa9c2cac3453169e4f9b66e3  powerpc: powernv: no 
need to check return value of debugfs_create functions

elapsed time: 484m

configs tested: 144
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
shtitan_defconfig
sh   allmodconfig
riscvallmodconfig
riscv allnoconfig
microblazenommu_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
powerpc   allnoconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
i386 randconfig-a002-20200327
i386 randconfig-a001-20200327
x86_64   randconfig-a002-20200327
x86_64   randconfig-a001-20200327
i386 randconfig-a003-20200327
x86_64   randconfig-a003-20200327
alpharandconfig-a001-20200327
m68k randconfig-a001-20200327
mips randconfig-a001-20200327
nds32randconfig-a001-20200327
parisc   randconfig-a001-20200327
riscvrandconfig-a001-20200327
h8300randconfig-a001-20200327
nios2randconfig-a001-20200327
c6x  randconfig-a001-20200327
sparc64  randconfig-a001-20200327
csky randconfig-a001-20200327
openrisc randconfig-a001-20200327
s390 randconfig-a001-20200327
sh   randconfig-a001-20200327
xtensa   randconfig-a001-20200327
i386 randconfig-b003-20200327
i386 randconfig-b001-20200327
x86_64   randconfig-b003-20200327
i386 randconfig-b002-20200327
x86_64   randconfig-b002-20200327
x86_64   randconfig-b001-20200327
x86_64   randconfig-d001-20200327
x86_64   randconfig-d002-20200327
x86_64   randconfig-d003-20200327
i386 randconfig-d001-20200327
i386 randconfig-d002-20200327
i386 randconfig-d003-20200327
x86_64   randconfig-e001-20200327

[staging:staging-testing] BUILD SUCCESS e681bb287f40e7a9dbcb04cef80fd87a2511ab86

2020-03-27 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: e681bb287f40e7a9dbcb04cef80fd87a2511ab86  staging: vt6656: Use 
DIV_ROUND_UP macro instead of specific code

elapsed time: 480m

configs tested: 164
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
arc  allyesconfig
um i386_defconfig
h8300 edosk2674_defconfig
um  defconfig
shtitan_defconfig
ia64 alldefconfig
riscv  rv32_defconfig
pariscgeneric-32bit_defconfig
s390  debug_defconfig
alpha   defconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
i386defconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc defconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200327
x86_64   randconfig-a002-20200327
x86_64   randconfig-a003-20200327
i386 randconfig-a001-20200327
i386 randconfig-a002-20200327
i386 randconfig-a003-20200327
alpharandconfig-a001-20200327
m68k randconfig-a001-20200327
mips randconfig-a001-20200327
nds32randconfig-a001-20200327
parisc   randconfig-a001-20200327
riscvrandconfig-a001-20200327
c6x  randconfig-a001-20200327
h8300randconfig-a001-20200327
microblaze   randconfig-a001-20200327
nios2randconfig-a001-20200327
sparc64  randconfig-a001-20200327
s390 randconfig-a001-20200327
xtensa   randconfig-a001-20200327
csky randconfig-a001-20200327
openrisc randconfig-a001-20200327
sh   randconfig-a001-20200327
x86_64   randconfig-b001-20200327
x86_64   randconfig-b002-20200327
x86_64   randconfig-b003-20200327
i386 randconfig-b001-20200327
i386 randconfig-b002-20200327
i386 randconfig-b003-20200327
x86_64   randconfig-c001-20200327
x86_64   randconfig-c002-20200327
x86_64   randconfig-c003-20200327
i386 randconfig-c001-20200327
i386 randconfig-c002-20200327
i386   

[staging:staging-testing] BUILD SUCCESS ba22fd4ed1af182be164a766a5316d1b2f250cf5

2020-03-26 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: ba22fd4ed1af182be164a766a5316d1b2f250cf5  staging: wilc1000: Use 
crc7 in lib/ rather than a private copy

elapsed time: 483m

configs tested: 152
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
mips allmodconfig
um   x86_64_defconfig
xtensa  iss_defconfig
i386 alldefconfig
riscvnommu_virt_defconfig
nds32   defconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
alpha   defconfig
cskydefconfig
nds32 allnoconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200326
x86_64   randconfig-a002-20200326
x86_64   randconfig-a003-20200326
i386 randconfig-a001-20200326
i386 randconfig-a002-20200326
i386 randconfig-a003-20200326
alpharandconfig-a001-20200326
m68k randconfig-a001-20200326
mips randconfig-a001-20200326
nds32randconfig-a001-20200326
parisc   randconfig-a001-20200326
riscvrandconfig-a001-20200326
c6x  randconfig-a001-20200326
h8300randconfig-a001-20200326
microblaze   randconfig-a001-20200326
nios2randconfig-a001-20200326
sparc64  randconfig-a001-20200326
s390 randconfig-a001-20200326
csky randconfig-a001-20200326
xtensa   randconfig-a001-20200326
openrisc randconfig-a001-20200326
sh   randconfig-a001-20200326
x86_64   randconfig-c001-20200326
x86_64   randconfig-c002-20200326
x86_64   randconfig-c003-20200326
i386 randconfig-c001-20200326
i386 randconfig-c002-20200326
i386 randconfig-c003-20200326
x86_64   randconfig-e001-20200326
x86_64   randconfig-e002-20200326
x86_64   randconfig-e003-20200326
i386 randconfig-e001-20200326
i386 randconfig-e002-20200326
i386 randconfig-e003-20200326
x86_64   randconfig-f001-20200326
x86_64   randconfig-f002-20200326
x86_64   

[staging:staging-testing] BUILD SUCCESS f1a49bb9c8197170a1e3f645c4e73ec7fe7ddefb

2020-03-25 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: f1a49bb9c8197170a1e3f645c4e73ec7fe7ddefb  staging: rtl8723bs: 
Remove blank line before '}' brace

elapsed time: 482m

configs tested: 174
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
openriscor1ksim_defconfig
powerpc   ppc64_defconfig
ia64 allyesconfig
s390 allyesconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64defconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200326
x86_64   randconfig-a002-20200326
x86_64   randconfig-a003-20200326
i386 randconfig-a001-20200326
i386 randconfig-a002-20200326
i386 randconfig-a003-20200326
alpharandconfig-a001-20200325
m68k randconfig-a001-20200325
nds32randconfig-a001-20200325
parisc   randconfig-a001-20200325
riscvrandconfig-a001-20200325
mips randconfig-a001-20200325
h8300randconfig-a001-20200325
microblaze   randconfig-a001-20200325
nios2randconfig-a001-20200325
c6x  randconfig-a001-20200325
sparc64  randconfig-a001-20200325
s390 randconfig-a001-20200325
xtensa   randconfig-a001-20200325
csky randconfig-a001-20200325
openrisc randconfig-a001-20200325
sh   randconfig-a001-20200325
csky randconfig-a001-20200326
openrisc randconfig-a001-20200326
s390 randconfig-a001-20200326
xtensa   randconfig-a001-20200326
x86_64   randconfig-b001-20200325
x86_64   randconfig-b002-20200325
x86_64   randconfig-b003-20200325
i386 randconfig-b001-20200325
i386 randconfig-b002-20200325
i386 randconfig-b003-20200325
x86_64   randconfig-c001-20200325
x86_64   randconfig-c002-20200325
x86_64   randconfig-c003-20200325
i386 randconfig-c001-20200325
i386 randconfig-c002-20200325
i386 

[driver-core:driver-core-next] BUILD SUCCESS c442a0d18744d4a5857d513f171d68ed6a54df5b

2020-03-25 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-next
branch HEAD: c442a0d18744d4a5857d513f171d68ed6a54df5b  driver core: Set 
fw_devlink to "permissive" behavior by default

elapsed time: 2224m

configs tested: 233
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
microblazenommu_defconfig
h8300   h8s-sim_defconfig
m68k   sun3_defconfig
s390 allyesconfig
mips allyesconfig
s390  allnoconfig
shtitan_defconfig
riscvallmodconfig
riscv allnoconfig
sparc64   allnoconfig
ia64defconfig
powerpc defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
alpha   defconfig
cskydefconfig
nds32 allnoconfig
nds32   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200324
x86_64   randconfig-a002-20200324
x86_64   randconfig-a003-20200324
i386 randconfig-a001-20200324
i386 randconfig-a002-20200324
i386 randconfig-a003-20200324
x86_64   randconfig-a001-20200325
x86_64   randconfig-a002-20200325
x86_64   randconfig-a003-20200325
i386 randconfig-a001-20200325
i386 randconfig-a002-20200325
i386 randconfig-a003-20200325
alpharandconfig-a001-20200325
m68k randconfig-a001-20200325
mips randconfig-a001-20200325
nds32randconfig-a001-20200325
parisc   randconfig-a001-20200325
riscvrandconfig-a001-20200325
alpharandconfig-a001-20200324
m68k randconfig-a001-20200324
mips randconfig-a001-20200324
nds32randconfig-a001-20200324
parisc   randconfig-a001-20200324
riscvrandconfig-a001-20200324
c6x  randconfig-a001-20200324
h8300randconfig-a001-20200324
microblaze   randconfig-a001-20200324
nios2randconfig-a001-20200324
sparc64  randconfig-a001-20200324
c6x  randconfig-a001-20200325
h8300randconfig-a001-20200325
microblaze   randconfig-a001-20200325
nios2

[driver-core:driver-core-testing] BUILD SUCCESS be6ca6a7ec4c8d6dd9fe712a798d32a7c19cb04a

2020-03-25 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: be6ca6a7ec4c8d6dd9fe712a798d32a7c19cb04a  nvmem: core: use 
device_register and device_unregister

elapsed time: 1396m

configs tested: 158
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64 allnoconfig
arm   allnoconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
pariscgeneric-64bit_defconfig
powerpc   ppc64_defconfig
s390 alldefconfig
sparc   defconfig
um i386_defconfig
pariscallnoconfig
sparc64  allyesconfig
arm  allyesconfig
nds32   defconfig
s390defconfig
i386defconfig
m68k   m5475evb_defconfig
ia64  allnoconfig
alpha   defconfig
sparc64 defconfig
ia64 alldefconfig
sh  rsk7269_defconfig
i386 allyesconfig
i386 alldefconfig
i386  allnoconfig
ia64 allmodconfig
ia64 allyesconfig
ia64defconfig
arm  allmodconfig
arm64allmodconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32 allnoconfig
cskydefconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc defconfig
arc  allyesconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
x86_64   randconfig-a001-20200324
x86_64   randconfig-a002-20200324
x86_64   randconfig-a003-20200324
i386 randconfig-a001-20200324
i386 randconfig-a002-20200324
i386 randconfig-a003-20200324
alpharandconfig-a001-20200324
m68k randconfig-a001-20200324
mips randconfig-a001-20200324
nds32randconfig-a001-20200324
parisc   randconfig-a001-20200324
riscvrandconfig-a001-20200324
h8300randconfig-a001-20200324
microblaze   randconfig-a001-20200324
nios2randconfig-a001-20200324
c6x  randconfig-a001-20200324
sparc64  randconfig-a001-20200324
csky randconfig-a001-20200324
openrisc randconfig-a001-20200324
s390 randconfig-a001-20200324
xtensa   randconfig-a001-20200324
i386 randconfig-b003-20200324
i386 randconfig-b001-20200324
i386 randconfig-b002-20200324
x86_64   randconfig-b001-20200324
x86_64   randconfig-c001-20200324
x86_64   randconfig-c002-20200324
x86_64   randconfig-c003-20200324
i386 randconfig-c001-20200324
i386 randconfig-c002-20200324
i386 randconfig-c003-20200324
i386 randconfig-d003-20200324
i386 randconfig-d001-20200324
x86_64   randconfig-d002-20200324
x86_64 

[staging:staging-testing] BUILD SUCCESS 4a1a3e9bf5654e98bb48f5b074af17af96ded30d

2020-03-24 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 4a1a3e9bf5654e98bb48f5b074af17af96ded30d  staging: most: 
Documentation: move ABI description files out of staging area

elapsed time: 483m

configs tested: 162
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
nios2 3c120_defconfig
openrisc simple_smp_defconfig
shallnoconfig
i386 alldefconfig
i386  allnoconfig
i386 allyesconfig
i386defconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200324
x86_64   randconfig-a002-20200324
x86_64   randconfig-a003-20200324
i386 randconfig-a001-20200324
i386 randconfig-a002-20200324
i386 randconfig-a003-20200324
alpharandconfig-a001-20200324
m68k randconfig-a001-20200324
mips randconfig-a001-20200324
nds32randconfig-a001-20200324
parisc   randconfig-a001-20200324
riscvrandconfig-a001-20200324
c6x  randconfig-a001-20200324
h8300randconfig-a001-20200324
microblaze   randconfig-a001-20200324
nios2randconfig-a001-20200324
sparc64  randconfig-a001-20200324
s390 randconfig-a001-20200324
csky randconfig-a001-20200324
xtensa   randconfig-a001-20200324
openrisc randconfig-a001-20200324
sh   randconfig-a001-20200324
i386 randconfig-b003-20200324
i386 randconfig-b001-20200324
i386 randconfig-b002-20200324
x86_64   randconfig-b001-20200324
x86_64   randconfig-c001-20200324
x86_64   randconfig-c002-20200324
x86_64   randconfig-c003-20200324
i386 randconfig-c001-20200324
i386 randconfig-c002-20200324
i386 randconfig-c003-20200324
x86_64   randconfig-d001-20200324
x86_64   randconfig-d002-20200324
x86_64   randconfig-d003-20200324
i386 randconfig-d001-20200324
i386 randconfig-d002-20200324
i386   

[staging:staging-testing] BUILD SUCCESS eb538ff02a56d9619bbd543b4c787d1bb128c696

2020-03-23 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: eb538ff02a56d9619bbd543b4c787d1bb128c696  staging: comedi: 
ni_labpc_common: Reformat multiple line dereference

elapsed time: 483m

configs tested: 169
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
ia64defconfig
powerpc defconfig
i386 allyesconfig
c6xevmc6678_defconfig
riscv allnoconfig
h8300   h8s-sim_defconfig
microblazenommu_defconfig
i386 alldefconfig
i386  allnoconfig
i386defconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
c6x  allyesconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
x86_64   randconfig-a001-20200322
x86_64   randconfig-a002-20200322
x86_64   randconfig-a003-20200322
i386 randconfig-a001-20200322
i386 randconfig-a002-20200322
i386 randconfig-a003-20200322
alpharandconfig-a001-20200323
m68k randconfig-a001-20200323
mips randconfig-a001-20200323
nds32randconfig-a001-20200323
parisc   randconfig-a001-20200323
riscvrandconfig-a001-20200323
h8300randconfig-a001-20200323
microblaze   randconfig-a001-20200323
nios2randconfig-a001-20200323
c6x  randconfig-a001-20200323
sparc64  randconfig-a001-20200323
c6x  randconfig-a001-20200322
h8300randconfig-a001-20200322
microblaze   randconfig-a001-20200322
nios2randconfig-a001-20200322
sparc64  randconfig-a001-20200322
csky randconfig-a001-20200323
openrisc randconfig-a001-20200323
s390 randconfig-a001-20200323
sh   randconfig-a001-20200323
xtensa   randconfig-a001-20200323
x86_64   randconfig-b001-20200323
x86_64   randconfig-b002-20200323
x86_64   randconfig-b003-20200323
i386 randconfig-b001-20200323
i386 randconfig-b002-20200323
i386 randconfig-b003-20200323
x86_64   randconfig-c001-20200323
x86_64   randconfig-c002-20200323
x86_64   randconfig-c003-20200323
i386 randconfig-c001-20200323
i386   

[staging:staging-next] BUILD SUCCESS 6203da9803017701da5782998157d9826215059d

2020-03-23 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-next
branch HEAD: 6203da9803017701da5782998157d9826215059d  Merge 5.6-rc7 into 
staging-next

elapsed time: 484m

configs tested: 170
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
ia64defconfig
powerpc defconfig
i386  allnoconfig
ia64 allyesconfig
riscv   defconfig
s390  allnoconfig
i386 allyesconfig
m68k   m5475evb_defconfig
i386 alldefconfig
i386defconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 alldefconfig
c6x  allyesconfig
c6xevmc6678_defconfig
nios2 10m50_defconfig
nios2 3c120_defconfig
openriscor1ksim_defconfig
openrisc simple_smp_defconfig
xtensa   common_defconfig
xtensa  iss_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200323
x86_64   randconfig-a002-20200323
x86_64   randconfig-a003-20200323
i386 randconfig-a001-20200323
i386 randconfig-a002-20200323
i386 randconfig-a003-20200323
x86_64   randconfig-a001-20200322
x86_64   randconfig-a002-20200322
x86_64   randconfig-a003-20200322
i386 randconfig-a001-20200322
i386 randconfig-a002-20200322
i386 randconfig-a003-20200322
alpharandconfig-a001-20200323
m68k randconfig-a001-20200323
mips randconfig-a001-20200323
nds32randconfig-a001-20200323
parisc   randconfig-a001-20200323
riscvrandconfig-a001-20200323
c6x  randconfig-a001-20200323
h8300randconfig-a001-20200323
microblaze   randconfig-a001-20200323
nios2randconfig-a001-20200323
sparc64  randconfig-a001-20200323
s390 randconfig-a001-20200323
xtensa   randconfig-a001-20200323
csky randconfig-a001-20200323
openrisc randconfig-a001-20200323
sh   randconfig-a001-20200323
x86_64   randconfig-b003-20200323
x86_64   randconfig-b002-20200323
x86_64   randconfig-b001-20200323
i386 randconfig-b003-20200323
i386 randconfig-b001-20200323
i386 randconfig-b002-20200323
x86_64   randconfig-c001-20200323
x86_64   randconfig-c002-20200323
x86_64   randconfig-c003-20200323
i386 

[driver-core:driver-core-testing] BUILD SUCCESS 4dbe191c046e71d6ea1ba85365ecb33961b07c4f

2020-03-21 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: 4dbe191c046e71d6ea1ba85365ecb33961b07c4f  driver core: Add device 
links from fwnode only for the primary device

elapsed time: 484m

configs tested: 176
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm64allyesconfig
arm  allyesconfig
arm64allmodconfig
arm  allmodconfig
arm64 allnoconfig
arm   allnoconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
ia64 alldefconfig
um  defconfig
riscv  rv32_defconfig
h8300h8300h-sim_defconfig
mips  allnoconfig
pariscgeneric-64bit_defconfig
ia64 allyesconfig
nds32   defconfig
ia64defconfig
powerpc defconfig
i386  allnoconfig
pariscallnoconfig
i386 alldefconfig
i386 allyesconfig
i386defconfig
ia64 allmodconfig
ia64  allnoconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips   32r2_defconfig
mips allmodconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
i386 randconfig-a002-20200321
x86_64   randconfig-a002-20200321
i386 randconfig-a001-20200321
x86_64   randconfig-a001-20200321
i386 randconfig-a003-20200321
x86_64   randconfig-a003-20200321
alpharandconfig-a001-20200321
m68k randconfig-a001-20200321
mips randconfig-a001-20200321
nds32randconfig-a001-20200321
parisc   randconfig-a001-20200321
riscvrandconfig-a001-20200321
c6x  randconfig-a001-20200321
h8300randconfig-a001-20200321
microblaze   randconfig-a001-20200321
nios2randconfig-a001-20200321
sparc64  randconfig-a001-20200321
c6x  randconfig-a001-20200322
h8300randconfig-a001-20200322
microblaze   randconfig-a001-20200322
nios2randconfig-a001-20200322
sparc64  randconfig-a001-20200322
csky randconfig-a001-20200322
openrisc randconfig-a001-20200322
s390 randconfig-a001-20200322
sh   randconfig-a001-20200322
xtensa   randconfig-a001-20200322
s390 randconfig-a001-20200321
xtensa   randconfig-a001-20200321
csky randconfig-a001-20200321
openrisc randconfig-a001-20200321
sh   randconfig-a001-20200321
i386 randconfig-b003-20200321
i386 randconfig-b001-20200321
x86_64   randconfig-b003-20200321
i386 randconfig-b002-20200321

[staging:staging-testing] BUILD SUCCESS 3017e587e36819f87e53d3c8751afdf987c1f542

2020-03-21 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 3017e587e36819f87e53d3c8751afdf987c1f542  staging: vt6656: Use 
BIT() macro in vnt_mac_reg_bits_* functions

elapsed time: 484m

configs tested: 163
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
sparcallyesconfig
mips  fuloong2e_defconfig
ia64 alldefconfig
um  defconfig
riscv  rv32_defconfig
sparc   defconfig
h8300h8300h-sim_defconfig
mips  allnoconfig
pariscgeneric-64bit_defconfig
ia64 allyesconfig
nds32   defconfig
i386  allnoconfig
pariscallnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64 allmodconfig
ia64  allnoconfig
ia64defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
m68k   sun3_defconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips   32r2_defconfig
mips allmodconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
x86_64   randconfig-a001-20200321
x86_64   randconfig-a002-20200321
x86_64   randconfig-a003-20200321
i386 randconfig-a001-20200321
i386 randconfig-a002-20200321
i386 randconfig-a003-20200321
alpharandconfig-a001-20200321
m68k randconfig-a001-20200321
mips randconfig-a001-20200321
nds32randconfig-a001-20200321
parisc   randconfig-a001-20200321
h8300randconfig-a001-20200321
microblaze   randconfig-a001-20200321
nios2randconfig-a001-20200321
c6x  randconfig-a001-20200321
sparc64  randconfig-a001-20200321
s390 randconfig-a001-20200321
xtensa   randconfig-a001-20200321
csky randconfig-a001-20200321
openrisc randconfig-a001-20200321
sh   randconfig-a001-20200321
x86_64   randconfig-b001-20200321
x86_64   randconfig-b002-20200321
x86_64   randconfig-b003-20200321
i386 randconfig-b001-20200321
i386 randconfig-b002-20200321
i386 randconfig-b003-20200321
x86_64   randconfig-c001-20200321
x86_64   randconfig-c002-20200321
x86_64   randconfig-c003-20200321
i386 randconfig-c001-20200321
i386 randconfig-c002-20200321
i386 randconfig-c003-20200321
x86_64   randconfig-d001-20200321
x86_64   randconfig-d002-20200321
x86_64 

[staging:staging-testing] BUILD SUCCESS 825c6f470c62da05195fab57bb6561ccc1bdafcd

2020-03-20 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 825c6f470c62da05195fab57bb6561ccc1bdafcd  staging: mt7621-pci: be 
sure gpio descriptor is null on fails

elapsed time: 480m

configs tested: 164
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
ia64 allyesconfig
nds32 allnoconfig
ia64 allmodconfig
c6xevmc6678_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64defconfig
ia64  allnoconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k   m5475evb_defconfig
m68k   sun3_defconfig
m68k allmodconfig
m68k  multi_defconfig
arc defconfig
arc  allyesconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200320
x86_64   randconfig-a002-20200320
x86_64   randconfig-a003-20200320
i386 randconfig-a001-20200320
i386 randconfig-a002-20200320
i386 randconfig-a003-20200320
mips randconfig-a001-20200320
nds32randconfig-a001-20200320
m68k randconfig-a001-20200320
parisc   randconfig-a001-20200320
alpharandconfig-a001-20200320
riscvrandconfig-a001-20200320
h8300randconfig-a001-20200320
microblaze   randconfig-a001-20200320
nios2randconfig-a001-20200320
c6x  randconfig-a001-20200320
sparc64  randconfig-a001-20200320
csky randconfig-a001-20200320
openrisc randconfig-a001-20200320
s390 randconfig-a001-20200320
sh   randconfig-a001-20200320
xtensa   randconfig-a001-20200320
x86_64   randconfig-b001-20200320
x86_64   randconfig-b002-20200320
x86_64   randconfig-b003-20200320
i386 randconfig-b001-20200320
i386 randconfig-b002-20200320
i386 randconfig-b003-20200320
x86_64   randconfig-c003-20200320
i386 randconfig-c002-20200320
x86_64   randconfig-c001-20200320
i386 randconfig-c003-20200320
i386 randconfig-c001-20200320
x86_64   randconfig-c002-20200320
x86_64   randconfig-d001-20200320
x86_64   randconfig-d002-20200320
x86_64   randconfig-d003-20200320
i386 randconfig-d001-20200320
i386 

[driver-core:driver-core-testing] BUILD SUCCESS b94b807e8cd98b5269772537270c2b16e593b082

2020-03-20 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: b94b807e8cd98b5269772537270c2b16e593b082  platform/x86: 
touchscreen_dmi: Add info for the Chuwi Vi8 Plus tablet

elapsed time: 482m

configs tested: 161
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
ia64 allmodconfig
pariscgeneric-64bit_defconfig
xtensa  iss_defconfig
riscv   defconfig
arc defconfig
riscv allnoconfig
openrisc simple_smp_defconfig
sparc64  allmodconfig
c6xevmc6678_defconfig
i386  allnoconfig
ia64 alldefconfig
sh  rsk7269_defconfig
powerpc   ppc64_defconfig
i386 alldefconfig
i386 allyesconfig
i386defconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openriscor1ksim_defconfig
alpha   defconfig
cskydefconfig
nds32 allnoconfig
nds32   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc  allyesconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc defconfig
powerpc  rhel-kconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
x86_64   randconfig-a001-20200320
x86_64   randconfig-a002-20200320
x86_64   randconfig-a003-20200320
i386 randconfig-a001-20200320
i386 randconfig-a002-20200320
i386 randconfig-a003-20200320
alpharandconfig-a001-20200320
m68k randconfig-a001-20200320
mips randconfig-a001-20200320
nds32randconfig-a001-20200320
parisc   randconfig-a001-20200320
alpharandconfig-a001-20200321
m68k randconfig-a001-20200321
mips randconfig-a001-20200321
nds32randconfig-a001-20200321
parisc   randconfig-a001-20200321
riscvrandconfig-a001-20200321
riscvrandconfig-a001-20200320
h8300randconfig-a001-20200320
microblaze   randconfig-a001-20200320
nios2randconfig-a001-20200320
c6x  randconfig-a001-20200320
sparc64  randconfig-a001-20200320
csky randconfig-a001-20200320
openrisc randconfig-a001-20200320
s390 randconfig-a001-20200320
sh   randconfig-a001-20200320
xtensa   randconfig-a001-20200320
i386 randconfig-b003-20200320
i386 randconfig-b001-20200320
x86_64   randconfig-b003-20200320
i386 randconfig-b002-20200320
x86_64   randconfig-b002-20200320
x86_64   randconfig-b001-20200320
x86_64   randconfig-c003-20200320
i386 

[staging:staging-testing] BUILD SUCCESS 3fce0276f98a5e4263735f86c5c35361fafa7a59

2020-03-19 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 3fce0276f98a5e4263735f86c5c35361fafa7a59  staging: rtl8723bs: 
os_dep: Correct typo in comments

elapsed time: 733m

configs tested: 152
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
h8300   h8s-sim_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
alpha   defconfig
cskydefconfig
nds32 allnoconfig
nds32   defconfig
m68k   m5475evb_defconfig
m68k   sun3_defconfig
m68k  multi_defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
m68k allmodconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200319
x86_64   randconfig-a002-20200319
x86_64   randconfig-a003-20200319
i386 randconfig-a001-20200319
i386 randconfig-a002-20200319
i386 randconfig-a003-20200319
alpharandconfig-a001-20200319
m68k randconfig-a001-20200319
mips randconfig-a001-20200319
nds32randconfig-a001-20200319
parisc   randconfig-a001-20200319
riscvrandconfig-a001-20200319
c6x  randconfig-a001-20200319
h8300randconfig-a001-20200319
microblaze   randconfig-a001-20200319
nios2randconfig-a001-20200319
sparc64  randconfig-a001-20200319
xtensa   randconfig-a001-20200319
csky randconfig-a001-20200319
openrisc randconfig-a001-20200319
sh   randconfig-a001-20200319
s390 randconfig-a001-20200319
x86_64   randconfig-b001-20200319
x86_64   randconfig-b002-20200319
x86_64   randconfig-b003-20200319
i386 randconfig-b001-20200319
i386 randconfig-b002-20200319
i386 randconfig-b003-20200319
x86_64   randconfig-d001-20200319
x86_64   randconfig-d002-20200319
x86_64   randconfig-d003-20200319
i386 randconfig-d001-20200319
i386 randconfig-d002-20200319
i386 randconfig-d003-20200319
x86_64   randconfig-e001-20200319
x86_64   randconfig-e002-20200319
x86_64   randconfig-e003-20200319
i386 randconfig-e001-20200319
i386 

[driver-core:driver-core-testing] BUILD SUCCESS 99917e37b9e78b96af304ddeb4f9b82a5948bbd9

2020-03-19 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: 99917e37b9e78b96af304ddeb4f9b82a5948bbd9  Revert "drivers: base: 
power: wakeup.c: Use built-in RCU list checking"

elapsed time: 483m

configs tested: 139
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm   efm32_defconfig
arm at91_dt_defconfig
armshmobile_defconfig
arm64   defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
arm   sunxi_defconfig
armmulti_v7_defconfig
nds32   defconfig
h8300 edosk2674_defconfig
s390  debug_defconfig
s390defconfig
ia64 allyesconfig
microblaze  mmu_defconfig
openriscor1ksim_defconfig
ia64defconfig
powerpc defconfig
i386 allyesconfig
riscvnommu_virt_defconfig
c6xevmc6678_defconfig
c6x  allyesconfig
i386  allnoconfig
i386 alldefconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
xtensa  iss_defconfig
xtensa   common_defconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
openrisc simple_smp_defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc  allyesconfig
arc defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
pariscgeneric-64bit_defconfig
pariscgeneric-32bit_defconfig
parisc   allyesconfig
i386 randconfig-a003-20200319
i386 randconfig-a001-20200319
x86_64   randconfig-a001-20200319
x86_64   randconfig-a002-20200319
i386 randconfig-a002-20200319
x86_64   randconfig-a003-20200319
riscvrandconfig-a001-20200319
m68k randconfig-a001-20200319
nds32randconfig-a001-20200319
alpharandconfig-a001-20200319
parisc   randconfig-a001-20200319
mips randconfig-a001-20200319
h8300randconfig-a001-20200319
sparc64  randconfig-a001-20200319
c6x  randconfig-a001-20200319
nios2randconfig-a001-20200319
microblaze   randconfig-a001-20200319
csky randconfig-a001-20200319
openrisc randconfig-a001-20200319
s390 randconfig-a001-20200319
sh   randconfig-a001-20200319
xtensa   randconfig-a001-20200319
x86_64   randconfig-b001-20200319
x86_64   randconfig-b002-20200319
x86_64   randconfig-b003-20200319
i386 randconfig-b001-20200319
i386 randconfig-b002-20200319
i386 randconfig-b003-20200319
x86_64   randconfig-c001-20200319
i386 randconfig-c001-20200319
x86_64   randconfig-c002-20200319
x86_64   randconfig-d001-20200319
i386 randconfig-d001-20200319
x86_64   randconfig-f001-20200319
x86_64   randconfig-f002-20200319
x86_64   randconfig-f003-20200319

[driver-core:debugfs_remove_return_value] BUILD REGRESSION c5b434b51b2daaacdd0c69736631eaead95d9111

2020-03-19 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_remove_return_value
branch HEAD: c5b434b51b2daaacdd0c69736631eaead95d9111  debugfs: remove return 
value of debugfs_create_u32()

Regressions in current branch:

arch/powerpc/kernel/traps.c:2293:4: error: void value not ignored as it ought 
to be

Error ids grouped by kconfigs:

recent_errors
`-- powerpc-allyesconfig
`-- 
arch-powerpc-kernel-traps.c:error:void-value-not-ignored-as-it-ought-to-be

elapsed time: 483m

configs tested: 146
configs skipped: 0

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
nds32   defconfig
h8300 edosk2674_defconfig
mips  malta_kvm_defconfig
arc  allyesconfig
ia64 allyesconfig
s390defconfig
microblaze  mmu_defconfig
openriscor1ksim_defconfig
ia64defconfig
powerpc defconfig
m68k   sun3_defconfig
i386 allyesconfig
riscvnommu_virt_defconfig
shallnoconfig
c6xevmc6678_defconfig
c6x  allyesconfig
i386  allnoconfig
i386 alldefconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
xtensa  iss_defconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
arc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
microblazenommu_defconfig
powerpc   allnoconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
i386 randconfig-a003-20200319
i386 randconfig-a001-20200319
x86_64   randconfig-a001-20200319
x86_64   randconfig-a002-20200319
i386 randconfig-a002-20200319
x86_64   randconfig-a003-20200319
riscvrandconfig-a001-20200319
m68k randconfig-a001-20200319
nds32randconfig-a001-20200319
alpharandconfig-a001-20200319
parisc   randconfig-a001-20200319
mips randconfig-a001-20200319
c6x  randconfig-a001-20200319
h8300randconfig-a001-20200319
microblaze   randconfig-a001-20200319
nios2randconfig-a001-20200319
sparc64  randconfig-a001-20200319
csky randconfig-a001-20200319
openrisc randconfig-a001-20200319
s390 randconfig-a001-20200319
sh   randconfig-a001-20200319
xtensa   randconfig-a001-20200319
x86_64   randconfig-b001-20200319
x86_64   randconfig-b002-20200319
x86_64   randconfig-b003-20200319
i386 randconfig-b001-20200319
i386 randconfig-b002-20200319
i386 randconfig-b003-20200319
x86_64   randconfig-c001-20200319
i386 randconfig-c001-20200319
x86_64   randconfig-c002-20200319
i386 

[driver-core:debugfs_cleanup] BUILD SUCCESS 75ae458d1cd8fe76666aa83dd7bf4f656424272a

2020-03-19 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
debugfs_cleanup
branch HEAD: 75ae458d1cd8fe7aa83dd7bf4f656424272a  powerpc: powernv: no 
need to check return value of debugfs_create functions

elapsed time: 484m

configs tested: 146
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
nds32   defconfig
mips  malta_kvm_defconfig
microblaze  mmu_defconfig
m68k   sun3_defconfig
shallnoconfig
c6xevmc6678_defconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300   h8s-sim_defconfig
h8300 edosk2674_defconfig
m68k   m5475evb_defconfig
m68k allmodconfig
h8300h8300h-sim_defconfig
m68k  multi_defconfig
arc  allyesconfig
arc defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips  fuloong2e_defconfig
mips allyesconfig
mips 64r6el_defconfig
mips  allnoconfig
mips   32r2_defconfig
mips allmodconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
i386 randconfig-a003-20200319
i386 randconfig-a001-20200319
x86_64   randconfig-a001-20200319
x86_64   randconfig-a002-20200319
i386 randconfig-a002-20200319
x86_64   randconfig-a003-20200319
riscvrandconfig-a001-20200319
m68k randconfig-a001-20200319
nds32randconfig-a001-20200319
alpharandconfig-a001-20200319
parisc   randconfig-a001-20200319
mips randconfig-a001-20200319
c6x  randconfig-a001-20200319
h8300randconfig-a001-20200319
microblaze   randconfig-a001-20200319
nios2randconfig-a001-20200319
sparc64  randconfig-a001-20200319
csky randconfig-a001-20200319
openrisc randconfig-a001-20200319
s390 randconfig-a001-20200319
sh   randconfig-a001-20200319
xtensa   randconfig-a001-20200319
x86_64   randconfig-b001-20200319
x86_64   randconfig-b002-20200319
i386 randconfig-b001-20200319
x86_64   randconfig-b003-20200319
i386 randconfig-b002-20200319
i386 randconfig-b003-20200319
x86_64   randconfig-c001-20200319
i386 randconfig-c001-20200319
x86_64   randconfig-c002-20200319
i386 randconfig-c003-20200319
x86_64   randconfig-c003-20200319
i386 randconfig-c002-20200319
x86_64   randconfig-d001-20200319
i386 randconfig-d001-20200319
i386 randconfig-d003-20200319

[driver-core:driver-core-testing] BUILD SUCCESS 8ba88804bb3b877c841bc1864a8605111580cd0b

2020-03-18 Thread kbuild test robot
tree/branch: 
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git  
driver-core-testing
branch HEAD: 8ba88804bb3b877c841bc1864a8605111580cd0b  drivers: base: power: 
wakeup.c: Use built-in RCU list checking

elapsed time: 483m

configs tested: 163
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
i386  allnoconfig
i386 allyesconfig
i386 alldefconfig
i386defconfig
ia64 allmodconfig
ia64defconfig
ia64  allnoconfig
ia64 allyesconfig
ia64 alldefconfig
nios2 3c120_defconfig
nios2 10m50_defconfig
c6xevmc6678_defconfig
xtensa  iss_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
nds32   defconfig
nds32 allnoconfig
cskydefconfig
alpha   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200318
x86_64   randconfig-a002-20200318
x86_64   randconfig-a003-20200318
i386 randconfig-a001-20200318
i386 randconfig-a002-20200318
i386 randconfig-a003-20200318
alpharandconfig-a001-20200318
m68k randconfig-a001-20200318
mips randconfig-a001-20200318
nds32randconfig-a001-20200318
parisc   randconfig-a001-20200318
riscvrandconfig-a001-20200318
c6x  randconfig-a001-20200318
h8300randconfig-a001-20200318
microblaze   randconfig-a001-20200318
nios2randconfig-a001-20200318
sparc64  randconfig-a001-20200318
csky randconfig-a001-20200318
openrisc randconfig-a001-20200318
s390 randconfig-a001-20200318
sh   randconfig-a001-20200318
xtensa   randconfig-a001-20200318
x86_64   randconfig-b001-20200318
x86_64   randconfig-b002-20200318
x86_64   randconfig-b003-20200318
i386 randconfig-b001-20200318
i386 randconfig-b002-20200318
i386 randconfig-b003-20200318
x86_64   randconfig-c001-20200318
x86_64   randconfig-c002-20200318
x86_64   randconfig-c003-20200318
i386 randconfig-c001-20200318
i386 randconfig-c002-20200318
i386 randconfig-c003-20200318
x86_64   randconfig-d001-20200318
i386 randconfig-d001-20200318
i386 randconfig-d003-20200318
i386 randconfig-d002-20200318
x86_64  

[staging:staging-testing] BUILD SUCCESS 281d90e24f1378967531d715decf6b81ecba664e

2020-03-18 Thread kbuild test robot
tree/branch: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 
 staging-testing
branch HEAD: 281d90e24f1378967531d715decf6b81ecba664e  Merge tag 'iio-5.7a' of 
git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-next

elapsed time: 485m

configs tested: 164
configs skipped: 0

The following configs have been built successfully.
More configs may be tested in the coming days.

arm  allmodconfig
arm   allnoconfig
arm  allyesconfig
arm64allmodconfig
arm64 allnoconfig
arm64allyesconfig
arm at91_dt_defconfig
arm   efm32_defconfig
arm  exynos_defconfig
armmulti_v5_defconfig
armmulti_v7_defconfig
armshmobile_defconfig
arm   sunxi_defconfig
arm64   defconfig
sparcallyesconfig
xtensa  iss_defconfig
nios2 10m50_defconfig
sh  rsk7269_defconfig
shtitan_defconfig
i386  allnoconfig
i386 alldefconfig
i386 allyesconfig
i386defconfig
ia64 alldefconfig
ia64 allmodconfig
ia64  allnoconfig
ia64 allyesconfig
ia64defconfig
nios2 3c120_defconfig
c6xevmc6678_defconfig
c6x  allyesconfig
xtensa   common_defconfig
openrisc simple_smp_defconfig
openriscor1ksim_defconfig
alpha   defconfig
cskydefconfig
nds32 allnoconfig
nds32   defconfig
h8300 edosk2674_defconfig
h8300h8300h-sim_defconfig
h8300   h8s-sim_defconfig
m68k allmodconfig
m68k   m5475evb_defconfig
m68k  multi_defconfig
m68k   sun3_defconfig
arc  allyesconfig
arc defconfig
microblaze  mmu_defconfig
microblazenommu_defconfig
powerpc   allnoconfig
powerpc defconfig
powerpc   ppc64_defconfig
powerpc  rhel-kconfig
mips  fuloong2e_defconfig
mips  malta_kvm_defconfig
mips   32r2_defconfig
mips 64r6el_defconfig
mips allmodconfig
mips  allnoconfig
mips allyesconfig
pariscallnoconfig
parisc   allyesconfig
pariscgeneric-32bit_defconfig
pariscgeneric-64bit_defconfig
x86_64   randconfig-a001-20200318
x86_64   randconfig-a002-20200318
x86_64   randconfig-a003-20200318
i386 randconfig-a001-20200318
i386 randconfig-a002-20200318
i386 randconfig-a003-20200318
riscvrandconfig-a001-20200318
m68k randconfig-a001-20200318
nds32randconfig-a001-20200318
alpharandconfig-a001-20200318
parisc   randconfig-a001-20200318
mips randconfig-a001-20200318
c6x  randconfig-a001-20200318
h8300randconfig-a001-20200318
microblaze   randconfig-a001-20200318
nios2randconfig-a001-20200318
sparc64  randconfig-a001-20200318
csky randconfig-a001-20200318
openrisc randconfig-a001-20200318
s390 randconfig-a001-20200318
sh   randconfig-a001-20200318
xtensa   randconfig-a001-20200318
x86_64   randconfig-b001-20200318
x86_64   randconfig-b002-20200318
i386 randconfig-b001-20200318
x86_64   randconfig-b003-20200318
i386 randconfig-b002-20200318
i386 randconfig-b003-20200318
x86_64   randconfig-c001-20200318
x86_64   randconfig-c002-20200318
x86_64   randconfig-c003-20200318
i386 randconfig-c001-20200318
i386 randconfig-c002-20200318
i386 randconfig-c003-20200318
x86_64   randconfig-d001-20200318
x86_64   

  1   2   3   4   5   6   7   8   9   >