From: Vasilis Liaskovitis <vasilis.liaskovitis@profitbricks.com>
To: Wen Congyang <wency@cn.fujitsu.com>
Cc: isimatu.yasuaki@jp.fujitsu.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org
Subject: Re: [RFC PATCH] memory-hotplug: Add memblock_state notifier
Date: Mon, 23 Jul 2012 13:06:10 +0200 [thread overview]
Message-ID: <20120723110610.GB18801@dhcp-192-168-178-175.profitbricks.localdomain> (raw)
In-Reply-To: <500D1474.9070708@cn.fujitsu.com>
Hi,
On Mon, Jul 23, 2012 at 05:08:04PM +0800, Wen Congyang wrote:
> > +static int memblock_state_notifier_nb(struct notifier_block *nb, unsigned long
> > + val, void *v)
> > +{
> > + struct memory_notify *arg = (struct memory_notify *)v;
> > + struct memory_block *mem = NULL;
> > + struct mem_section *ms;
> > + unsigned long section_nr;
> > +
> > + section_nr = pfn_to_section_nr(arg->start_pfn);
> > + ms = __nr_to_section(section_nr);
> > + mem = find_memory_block(ms);
> > + if (!mem)
> > + goto out;
>
> we may offline more than one memory block.
>
thanks, you are right.
> > +
> > + switch (val) {
> > + case MEM_GOING_OFFLINE:
> > + case MEM_OFFLINE:
> > + case MEM_GOING_ONLINE:
> > + case MEM_ONLINE:
> > + case MEM_CANCEL_ONLINE:
> > + case MEM_CANCEL_OFFLINE:
> > + mem->state = val;
>
> mem->state is protected by the lock mem->state_mutex, so if you want to
> update the state, you must lock mem->state_mutex. But you cannot lock it
> here, because it may cause deadlock:
>
> acpi_memhotplug sysfs interface
> ===============================================================================
> memory_block_change_state()
> lock mem->state_mutex
> memory_block_action()
> offline_pages()
> lock_memory_hotplug()
> offline_memory()
> lock_memory_hotplug() // block
> memory_notify()
> memblock_state_notifier_nb()
> ===============================================================================
good point. Maybe if memory_hotplug_lock and state_mutex locks are acquired in
the same order in the 2 code paths, this could be avoided.
> I'm writing another patch to fix it.
ok, I 'll test.
thanks,
- Vasilis
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2012-07-23 11:06 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-20 11:18 Vasilis Liaskovitis
2012-07-23 9:08 ` Wen Congyang
2012-07-23 11:06 ` Vasilis Liaskovitis [this message]
2012-07-23 12:13 ` Wen Congyang
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=20120723110610.GB18801@dhcp-192-168-178-175.profitbricks.localdomain \
--to=vasilis.liaskovitis@profitbricks.com \
--cc=isimatu.yasuaki@jp.fujitsu.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=wency@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