mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Zhao Lei <zhaolei@cn.fujitsu.com>
Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org,
	containers@lists.linux-foundation.org,
	"Eric W. Biederman" <ebiederm@xmission.com>,
	"Mateusz Guzik" <mguzik@redhat.com>,
	"Kamezawa Hiroyuki" <kamezawa.hiroyu@jp.fujitsu.com>,
	"Stéphane Graber" <stgraber@ubuntu.com>,
	"Andrei Vagin" <avagin@gmail.com>,
	"Zhao Lei" <zhaolei@cn.fujitsu.com>
Subject: Re: [PATCH v3 1/3] Make call_usermodehelper_exec possible to set pid namespace
Date: Tue, 30 Aug 2016 00:58:20 +0800	[thread overview]
Message-ID: <201608300022.kW2H6bFr%fengguang.wu@intel.com> (raw)
In-Reply-To: <94bf69d92a3204491862b8c72111f4e046bf5f9e.1472471586.git.zhaolei@cn.fujitsu.com>

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

Hi Zhao,

[auto build test WARNING on linus/master]
[also build test WARNING on v4.8-rc4 next-20160825]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]

url:    https://github.com/0day-ci/linux/commits/Zhao-Lei/Make-core_pattern-support-namespace/20160829-201413
reproduce: make htmldocs

All warnings (new ones prefixed by >>):

   lib/crc32.c:148: warning: No description found for parameter 'tab)[256]'
   lib/crc32.c:148: warning: Excess function parameter 'tab' description in 'crc32_le_generic'
   lib/crc32.c:293: warning: No description found for parameter 'tab)[256]'
   lib/crc32.c:293: warning: Excess function parameter 'tab' description in 'crc32_be_generic'
   lib/crc32.c:1: warning: no structured comments found
>> kernel/kmod.c:624: warning: No description found for parameter 'init_intermediate'

vim +/init_intermediate +624 kernel/kmod.c

a06a4dc3 Neil Horman         2010-05-26  608   *
a06a4dc3 Neil Horman         2010-05-26  609   * The init function is used to customize the helper process prior to
a06a4dc3 Neil Horman         2010-05-26  610   * exec.  A non-zero return code causes the process to error out, exit,
a06a4dc3 Neil Horman         2010-05-26  611   * and return the failure to the calling process
0ab4dc92 Jeremy Fitzhardinge 2007-07-17  612   *
a06a4dc3 Neil Horman         2010-05-26  613   * The cleanup function is just before ethe subprocess_info is about to
0ab4dc92 Jeremy Fitzhardinge 2007-07-17  614   * be freed.  This can be used for freeing the argv and envp.  The
0ab4dc92 Jeremy Fitzhardinge 2007-07-17  615   * Function must be runnable in either a process context or the
0ab4dc92 Jeremy Fitzhardinge 2007-07-17  616   * context in which call_usermodehelper_exec is called.
0ab4dc92 Jeremy Fitzhardinge 2007-07-17  617   */
938e4b22 Lucas De Marchi     2013-04-30  618  struct subprocess_info *call_usermodehelper_setup(char *path, char **argv,
938e4b22 Lucas De Marchi     2013-04-30  619  		char **envp, gfp_t gfp_mask,
a0807e8e Zhao Lei            2016-08-29  620  		int (*init_intermediate)(struct subprocess_info *info),
87966996 David Howells       2011-06-17  621  		int (*init)(struct subprocess_info *info, struct cred *new),
a06a4dc3 Neil Horman         2010-05-26  622  		void (*cleanup)(struct subprocess_info *info),
a06a4dc3 Neil Horman         2010-05-26  623  		void *data)
0ab4dc92 Jeremy Fitzhardinge 2007-07-17 @624  {
938e4b22 Lucas De Marchi     2013-04-30  625  	struct subprocess_info *sub_info;
938e4b22 Lucas De Marchi     2013-04-30  626  	sub_info = kzalloc(sizeof(struct subprocess_info), gfp_mask);
938e4b22 Lucas De Marchi     2013-04-30  627  	if (!sub_info)
938e4b22 Lucas De Marchi     2013-04-30  628  		goto out;
938e4b22 Lucas De Marchi     2013-04-30  629  
b6b50a81 Frederic Weisbecker 2015-09-09  630  	INIT_WORK(&sub_info->work, call_usermodehelper_exec_work);
938e4b22 Lucas De Marchi     2013-04-30  631  	sub_info->path = path;
938e4b22 Lucas De Marchi     2013-04-30  632  	sub_info->argv = argv;

:::::: The code at line 624 was first introduced by commit
:::::: 0ab4dc92278a0f3816e486d6350c6652a72e06c8 usermodehelper: split setup from execution

:::::: TO: Jeremy Fitzhardinge <jeremy@xensource.com>
:::::: CC: Jeremy Fitzhardinge <jeremy@goop.org>

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

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 6422 bytes --]

  reply	other threads:[~2016-08-29 16:59 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-29 12:06 [PATCH v3 0/3] Make core_pattern support namespace Zhao Lei
2016-08-29 12:06 ` [PATCH v3 1/3] Make call_usermodehelper_exec possible to set pid namespace Zhao Lei
2016-08-29 16:58   ` kbuild test robot [this message]
2016-09-06  9:11   ` Andrei Vagin
2016-09-06  9:35     ` Zhao Lei
2016-08-29 12:06 ` [PATCH v3 2/3] Limit dump_pipe program's permission to init for container Zhao Lei
2016-08-29 12:06 ` [PATCH v3 3/3] Make core_pattern support namespace Zhao Lei
2016-09-06  3:45 ` [PATCH v3 0/3] " Zhao Lei

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201608300022.kW2H6bFr%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=avagin@gmail.com \
    --cc=containers@lists.linux-foundation.org \
    --cc=ebiederm@xmission.com \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=kbuild-all@01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mguzik@redhat.com \
    --cc=stgraber@ubuntu.com \
    --cc=zhaolei@cn.fujitsu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome