lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 22 Feb 2016 23:48:53 +0800
From:	kbuild test robot <lkp@...el.com>
To:	Petr Mladek <pmladek@...e.com>
Cc:	kbuild-all@...org, Andrew Morton <akpm@...ux-foundation.org>,
	Oleg Nesterov <oleg@...hat.com>, Tejun Heo <tj@...nel.org>,
	Ingo Molnar <mingo@...hat.com>,
	Peter Zijlstra <peterz@...radead.org>,
	Steven Rostedt <rostedt@...dmis.org>,
	"Paul E. McKenney" <paulmck@...ux.vnet.ibm.com>,
	Josh Triplett <josh@...htriplett.org>,
	Thomas Gleixner <tglx@...utronix.de>,
	Linus Torvalds <torvalds@...ux-foundation.org>,
	Jiri Kosina <jkosina@...e.cz>, Borislav Petkov <bp@...e.de>,
	Michal Hocko <mhocko@...e.cz>, linux-mm@...ck.org,
	Vlastimil Babka <vbabka@...e.cz>, linux-api@...r.kernel.org,
	linux-kernel@...r.kernel.org, Petr Mladek <pmladek@...e.com>
Subject: Re: [PATCH v5 03/20] kthread: Add create_kthread_worker*()

Hi Petr,

[auto build test ERROR on soc-thermal/next]
[also build test ERROR on v4.5-rc5 next-20160222]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]

url:    https://github.com/0day-ci/linux/commits/Petr-Mladek/kthread-Use-kthread-worker-API-more-widely/20160222-230250
base:   https://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal next
config: xtensa-allyesconfig (attached as .config)
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=xtensa 

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

   kernel/kthread.c: In function 'create_kthread_worker_on_cpu':
>> kernel/kthread.c:691:9: error: incompatible type for argument 3 of '__create_kthread_worker'
     return __create_kthread_worker(cpu, namefmt, NULL);
            ^
   kernel/kthread.c:622:1: note: expected 'va_list' but argument is of type 'void *'
    __create_kthread_worker(int cpu, const char namefmt[], va_list args)
    ^
>> kernel/kthread.c:692:1: warning: control reaches end of non-void function [-Wreturn-type]
    }
    ^

vim +/__create_kthread_worker +691 kernel/kthread.c

   685	 * when the needed structures could not get allocated, and ERR_PTR(-EINTR)
   686	 * when the worker was SIGKILLed.
   687	 */
   688	struct kthread_worker *
   689	create_kthread_worker_on_cpu(int cpu, const char namefmt[])
   690	{
 > 691		return __create_kthread_worker(cpu, namefmt, NULL);
 > 692	}
   693	EXPORT_SYMBOL(create_kthread_worker_on_cpu);
   694	
   695	/* insert @work before @pos in @worker */

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Download attachment ".config.gz" of type "application/octet-stream" (44073 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ