From: Clark Williams <williams@redhat.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Johannes Weiner <hannes@cmpxchg.org>,
Thomas Gleixner <tglx@glx-um.de>,
linux-mm@kvack.org, RT <linux-rt-users@vger.kernel.org>,
Fernando Lopez-Lezcano <nando@ccrma.Stanford.EDU>,
Steven Rostedt <rostedt@goodmis.org>,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Subject: [RFC][PATCH] mm: ifdef out VM_BUG_ON check on PREEMPT_RT_FULL
Date: Mon, 1 Jun 2015 13:14:52 -0500 [thread overview]
Message-ID: <20150601131452.3e04f10a@sluggy> (raw)
In-Reply-To: <20150529142614.37792b9ff867626dcf5e0f08@linux-foundation.org>
On Fri, 29 May 2015 14:26:14 -0700
Andrew Morton <akpm@linux-foundation.org> wrote:
> On Fri, 29 May 2015 10:48:15 -0500 Clark Williams <williams@redhat.com> wrote:
>
> > The irqs_disabled() check in mem_cgroup_swapout() fails on the latest
> > RT kernel because RT mutexes do not disable interrupts when held. Change
> > the test for the lock being held to use spin_is_locked.
> >
> > ...
> >
> > --- a/mm/memcontrol.c
> > +++ b/mm/memcontrol.c
> > @@ -5845,7 +5845,7 @@ void mem_cgroup_swapout(struct page *page,
> > swp_entry_t entry) page_counter_uncharge(&memcg->memory, 1);
> >
> > /* XXX: caller holds IRQ-safe mapping->tree_lock */
> > - VM_BUG_ON(!irqs_disabled());
> > + VM_BUG_ON(!spin_is_locked(&page_mapping(page)->tree_lock));
> >
> > mem_cgroup_charge_statistics(memcg, page, -1);
> > memcg_check_events(memcg, page);
>
> spin_is_locked() returns zero on uniprocessor builds. The results will
> be unhappy.
>
> I suggest just deleting the check.
Guess this is Johannes call. We can just #ifdef it out and that would
remain the same when we finally merge PREEMPT_RT in mainline.
If Johannes wants to keep the check on non-RT, here's a patch:
From: Clark Williams <williams@redhat.com>
Date: Mon, 1 Jun 2015 13:10:39 -0500
Subject: [PATCH] mm: ifdef out VM_BUG_ON check on PREEMPT_RT_FULL
The irqs_disabled() check in mem_cgroup_swapout() fails on the latest
RT kernel because RT mutexes do not disable interrupts when held. Ifdef
this check out for PREEMPT_RT_FULL.
Signed-off-by: Clark Williams <williams@redhat.com>
---
mm/memcontrol.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 9da0f3e9c1f3..f3fcef7713f6 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -5844,8 +5844,10 @@ void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
if (!mem_cgroup_is_root(memcg))
page_counter_uncharge(&memcg->memory, 1);
+#ifndef CONFIG_PREEMPT_RT_FULL
/* XXX: caller holds IRQ-safe mapping->tree_lock */
VM_BUG_ON(!irqs_disabled());
+#endif
mem_cgroup_charge_statistics(memcg, page, -1);
memcg_check_events(memcg, page);
--
2.1.0
WARNING: multiple messages have this Message-ID (diff)
From: Clark Williams <williams@redhat.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Johannes Weiner <hannes@cmpxchg.org>,
Thomas Gleixner <tglx@glx-um.de>,
linux-mm@kvack.org, RT <linux-rt-users@vger.kernel.org>,
Fernando Lopez-Lezcano <nando@ccrma.Stanford.EDU>,
Steven Rostedt <rostedt@goodmis.org>,
Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Subject: [RFC][PATCH] mm: ifdef out VM_BUG_ON check on PREEMPT_RT_FULL
Date: Mon, 1 Jun 2015 13:14:52 -0500 [thread overview]
Message-ID: <20150601131452.3e04f10a@sluggy> (raw)
In-Reply-To: <20150529142614.37792b9ff867626dcf5e0f08@linux-foundation.org>
On Fri, 29 May 2015 14:26:14 -0700
Andrew Morton <akpm@linux-foundation.org> wrote:
> On Fri, 29 May 2015 10:48:15 -0500 Clark Williams <williams@redhat.com> wrote:
>
> > The irqs_disabled() check in mem_cgroup_swapout() fails on the latest
> > RT kernel because RT mutexes do not disable interrupts when held. Change
> > the test for the lock being held to use spin_is_locked.
> >
> > ...
> >
> > --- a/mm/memcontrol.c
> > +++ b/mm/memcontrol.c
> > @@ -5845,7 +5845,7 @@ void mem_cgroup_swapout(struct page *page,
> > swp_entry_t entry) page_counter_uncharge(&memcg->memory, 1);
> >
> > /* XXX: caller holds IRQ-safe mapping->tree_lock */
> > - VM_BUG_ON(!irqs_disabled());
> > + VM_BUG_ON(!spin_is_locked(&page_mapping(page)->tree_lock));
> >
> > mem_cgroup_charge_statistics(memcg, page, -1);
> > memcg_check_events(memcg, page);
>
> spin_is_locked() returns zero on uniprocessor builds. The results will
> be unhappy.
>
> I suggest just deleting the check.
Guess this is Johannes call. We can just #ifdef it out and that would
remain the same when we finally merge PREEMPT_RT in mainline.
If Johannes wants to keep the check on non-RT, here's a patch:
From: Clark Williams <williams@redhat.com>
Date: Mon, 1 Jun 2015 13:10:39 -0500
Subject: [PATCH] mm: ifdef out VM_BUG_ON check on PREEMPT_RT_FULL
The irqs_disabled() check in mem_cgroup_swapout() fails on the latest
RT kernel because RT mutexes do not disable interrupts when held. Ifdef
this check out for PREEMPT_RT_FULL.
Signed-off-by: Clark Williams <williams@redhat.com>
---
mm/memcontrol.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 9da0f3e9c1f3..f3fcef7713f6 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -5844,8 +5844,10 @@ void mem_cgroup_swapout(struct page *page, swp_entry_t entry)
if (!mem_cgroup_is_root(memcg))
page_counter_uncharge(&memcg->memory, 1);
+#ifndef CONFIG_PREEMPT_RT_FULL
/* XXX: caller holds IRQ-safe mapping->tree_lock */
VM_BUG_ON(!irqs_disabled());
+#endif
mem_cgroup_charge_statistics(memcg, page, -1);
memcg_check_events(memcg, page);
--
2.1.0
--
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:[~2015-06-01 18:14 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-29 15:48 [RFC] mm: change irqs_disabled() test to spin_is_locked() in mem_cgroup_swapout Clark Williams
2015-05-29 15:48 ` Clark Williams
2015-05-29 19:11 ` Johannes Weiner
2015-05-29 19:11 ` Johannes Weiner
2015-05-29 19:21 ` Steven Rostedt
2015-05-29 21:26 ` Andrew Morton
2015-05-29 21:26 ` Andrew Morton
2015-06-01 18:14 ` Clark Williams [this message]
2015-06-01 18:14 ` [RFC][PATCH] mm: ifdef out VM_BUG_ON check on PREEMPT_RT_FULL Clark Williams
2015-06-01 19:00 ` Johannes Weiner
2015-06-01 19:28 ` Steven Rostedt
2015-06-01 19:28 ` Steven Rostedt
2015-06-11 11:40 ` Sebastian Andrzej Siewior
2015-06-11 11:40 ` Sebastian Andrzej Siewior
2015-06-19 18:00 ` Johannes Weiner
2015-06-19 18:00 ` Johannes Weiner
2015-07-08 15:44 ` Sebastian Andrzej Siewior
2015-07-09 15:07 ` Thomas Gleixner
2015-07-09 15:07 ` Thomas Gleixner
2015-07-09 16:00 ` Johannes Weiner
2015-07-09 16:00 ` Johannes Weiner
2015-07-09 16:43 ` Thomas Gleixner
2015-07-09 16:43 ` Thomas Gleixner
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=20150601131452.3e04f10a@sluggy \
--to=williams@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=bigeasy@linutronix.de \
--cc=hannes@cmpxchg.org \
--cc=linux-mm@kvack.org \
--cc=linux-rt-users@vger.kernel.org \
--cc=nando@ccrma.Stanford.EDU \
--cc=rostedt@goodmis.org \
--cc=tglx@glx-um.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.