linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: zhong jiang <zhongjiang@huawei.com>
Cc: kbuild-all@01.org, akpm@linux-foundation.org, rafael@kernel.org,
	david@redhat.com, rafael.j.wysocki@intel.com, mhocko@suse.com,
	osalvador@suse.de, vbabka@suse.cz, iamjoonsoo.kim@lge.com,
	bsingharora@gmail.com, gregkh@linuxfoundation.org,
	yangyingliang@huawei.com, linux-kernel@vger.kernel.org,
	linux-mm@kvack.org
Subject: Re: [PATCH] mm/memory_hotplug: Do not unlock when fails to take the device_hotplug_lock
Date: Mon, 8 Apr 2019 15:21:29 +0800	[thread overview]
Message-ID: <201904081529.3hS7eNAf%lkp@intel.com> (raw)
In-Reply-To: <1554696012-9254-1-git-send-email-zhongjiang@huawei.com>

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

Hi zhong,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on driver-core/driver-core-testing]
[also build test ERROR on v5.1-rc4 next-20190405]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/zhong-jiang/mm-memory_hotplug-Do-not-unlock-when-fails-to-take-the-device_hotplug_lock/20190408-142325
config: x86_64-randconfig-x007-201914 (attached as .config)
compiler: gcc-7 (Debian 7.3.0-1) 7.3.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/base/memory.c: In function 'probe_store':
>> drivers/base/memory.c:509:3: error: label 'ret' used but not defined
      goto ret;
      ^~~~

vim +/ret +509 drivers/base/memory.c

   485	
   486	/*
   487	 * Some architectures will have custom drivers to do this, and
   488	 * will not need to do it from userspace.  The fake hot-add code
   489	 * as well as ppc64 will do all of their discovery in userspace
   490	 * and will require this interface.
   491	 */
   492	#ifdef CONFIG_ARCH_MEMORY_PROBE
   493	static ssize_t probe_store(struct device *dev, struct device_attribute *attr,
   494				   const char *buf, size_t count)
   495	{
   496		u64 phys_addr;
   497		int nid, ret;
   498		unsigned long pages_per_block = PAGES_PER_SECTION * sections_per_block;
   499	
   500		ret = kstrtoull(buf, 0, &phys_addr);
   501		if (ret)
   502			return ret;
   503	
   504		if (phys_addr & ((pages_per_block << PAGE_SHIFT) - 1))
   505			return -EINVAL;
   506	
   507		ret = lock_device_hotplug_sysfs();
   508		if (ret)
 > 509			goto ret;
   510	
   511		nid = memory_add_physaddr_to_nid(phys_addr);
   512		ret = __add_memory(nid, phys_addr,
   513				   MIN_MEMORY_BLOCK_SIZE * sections_per_block);
   514	
   515		if (ret)
   516			goto out;
   517	
   518		ret = count;
   519	out:
   520		unlock_device_hotplug();
   521		return ret;
   522	}
   523	

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

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 31516 bytes --]

      parent reply	other threads:[~2019-04-08  7:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-08  4:00 [PATCH] mm/memory_hotplug: Do not unlock when fails to take the device_hotplug_lock zhong jiang
2019-04-08  4:10 ` zhong jiang
2019-04-08  7:21 ` kbuild test robot [this message]

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=201904081529.3hS7eNAf%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=akpm@linux-foundation.org \
    --cc=bsingharora@gmail.com \
    --cc=david@redhat.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=kbuild-all@01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=osalvador@suse.de \
    --cc=rafael.j.wysocki@intel.com \
    --cc=rafael@kernel.org \
    --cc=vbabka@suse.cz \
    --cc=yangyingliang@huawei.com \
    --cc=zhongjiang@huawei.com \
    /path/to/YOUR_REPLY

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

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