From: Anton Vorontsov <anton.vorontsov@linaro.org>
To: Pekka Enberg <penberg@kernel.org>
Cc: Leonid Moiseichuk <leonid.moiseichuk@nokia.com>,
John Stultz <john.stultz@linaro.org>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
linaro-kernel@lists.linaro.org, patches@linaro.org
Subject: [PATCH 1/2] vmevent: Should not grab mutex in the atomic context
Date: Wed, 18 Apr 2012 01:33:56 -0700 [thread overview]
Message-ID: <20120418083356.GA31556@lizard> (raw)
In-Reply-To: <20120418083208.GA24904@lizard>
vmevent grabs a mutex in the atomic context, and so this pops up:
BUG: sleeping function called from invalid context at kernel/mutex.c:271
in_atomic(): 1, irqs_disabled(): 0, pid: 0, name: swapper/0
1 lock held by swapper/0/0:
#0: (&watch->timer){+.-...}, at: [<ffffffff8103eb80>] call_timer_fn+0x0/0xf0
Pid: 0, comm: swapper/0 Not tainted 3.2.0+ #6
Call Trace:
<IRQ> [<ffffffff8102f5da>] __might_sleep+0x12a/0x1e0
[<ffffffff810bd990>] ? vmevent_match+0xe0/0xe0
[<ffffffff81321f2c>] mutex_lock_nested+0x3c/0x340
[<ffffffff81064b33>] ? lock_acquire+0xa3/0xc0
[<ffffffff8103eb80>] ? internal_add_timer+0x110/0x110
[<ffffffff810bd990>] ? vmevent_match+0xe0/0xe0
[<ffffffff810bda21>] vmevent_timer_fn+0x91/0xf0
[<ffffffff810bd990>] ? vmevent_match+0xe0/0xe0
[<ffffffff8103ebf5>] call_timer_fn+0x75/0xf0
[<ffffffff8103eb80>] ? internal_add_timer+0x110/0x110
[<ffffffff81062fdd>] ? trace_hardirqs_on_caller+0x7d/0x120
[<ffffffff8103ee9f>] run_timer_softirq+0x10f/0x1e0
[<ffffffff810bd990>] ? vmevent_match+0xe0/0xe0
[<ffffffff81038d90>] __do_softirq+0xb0/0x160
[<ffffffff8105eb0f>] ? tick_program_event+0x1f/0x30
[<ffffffff8132642c>] call_softirq+0x1c/0x26
[<ffffffff810036d5>] do_softirq+0x85/0xc0
This patch fixes the issue by removing the mutex and making the logic
lock-free.
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
---
mm/vmevent.c | 52 ++++++++++++++++++++++++++--------------------------
1 file changed, 26 insertions(+), 26 deletions(-)
diff --git a/mm/vmevent.c b/mm/vmevent.c
index 1847b56..9ed6aca 100644
--- a/mm/vmevent.c
+++ b/mm/vmevent.c
@@ -1,4 +1,5 @@
#include <linux/anon_inodes.h>
+#include <linux/atomic.h>
#include <linux/vmevent.h>
#include <linux/syscalls.h>
#include <linux/timer.h>
@@ -22,8 +23,7 @@ struct vmevent_watch_event {
struct vmevent_watch {
struct vmevent_config config;
- struct mutex mutex;
- bool pending;
+ atomic_t pending;
/*
* Attributes that are exported as part of delivered VM events.
@@ -99,24 +99,36 @@ static bool vmevent_match(struct vmevent_watch *watch)
return false;
}
+/*
+ * This function is called from the timer context, which has the same
+ * guaranties as an interrupt handler: it can have only one execution
+ * thread (unlike bare softirq handler), so we don't need to worry
+ * about racing w/ ourselves.
+ *
+ * We also don't need to worry about several instances of timers
+ * accessing the same vmevent_watch, as we allocate vmevent_watch
+ * together w/ the timer instance in vmevent_fd(), so there is always
+ * one timer per vmevent_watch.
+ *
+ * All the above makes it possible to implement the lock-free logic,
+ * using just the atomic watch->pending variable.
+ */
static void vmevent_sample(struct vmevent_watch *watch)
{
int i;
+ if (atomic_read(&watch->pending))
+ return;
if (!vmevent_match(watch))
return;
- mutex_lock(&watch->mutex);
-
- watch->pending = true;
-
for (i = 0; i < watch->nr_attrs; i++) {
struct vmevent_attr *attr = &watch->sample_attrs[i];
attr->value = vmevent_sample_attr(watch, attr);
}
- mutex_unlock(&watch->mutex);
+ atomic_set(&watch->pending, 1);
}
static void vmevent_timer_fn(unsigned long data)
@@ -125,7 +137,7 @@ static void vmevent_timer_fn(unsigned long data)
vmevent_sample(watch);
- if (watch->pending)
+ if (atomic_read(&watch->pending))
wake_up(&watch->waitq);
mod_timer(&watch->timer, jiffies +
nsecs_to_jiffies64(watch->config.sample_period_ns));
@@ -148,13 +160,9 @@ static unsigned int vmevent_poll(struct file *file, poll_table *wait)
poll_wait(file, &watch->waitq, wait);
- mutex_lock(&watch->mutex);
-
- if (watch->pending)
+ if (atomic_read(&watch->pending))
events |= POLLIN;
- mutex_unlock(&watch->mutex);
-
return events;
}
@@ -171,15 +179,13 @@ static ssize_t vmevent_read(struct file *file, char __user *buf, size_t count, l
if (count < size)
return -EINVAL;
- mutex_lock(&watch->mutex);
-
- if (!watch->pending)
- goto out_unlock;
+ if (!atomic_read(&watch->pending))
+ goto out;
event = kmalloc(size, GFP_KERNEL);
if (!event) {
ret = -ENOMEM;
- goto out_unlock;
+ goto out;
}
for (i = 0; i < watch->nr_attrs; i++) {
@@ -195,14 +201,10 @@ static ssize_t vmevent_read(struct file *file, char __user *buf, size_t count, l
ret = count;
- watch->pending = false;
-
+ atomic_set(&watch->pending, 0);
out_free:
kfree(event);
-
-out_unlock:
- mutex_unlock(&watch->mutex);
-
+out:
return ret;
}
@@ -231,8 +233,6 @@ static struct vmevent_watch *vmevent_watch_alloc(void)
if (!watch)
return NULL;
- mutex_init(&watch->mutex);
-
init_waitqueue_head(&watch->waitq);
return watch;
--
1.7.9.2
--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2012-04-18 8:35 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-18 8:32 [PATCH v2 0/2] vmevent: Greater-than attribute + one-shot mode + a bugfix Anton Vorontsov
2012-04-18 8:33 ` Anton Vorontsov [this message]
2012-04-18 20:01 ` [PATCH 1/2] vmevent: Should not grab mutex in the atomic context Pekka Enberg
2012-04-18 8:35 ` [PATCH 2/2] vmevent: Implement greater-than attribute and one-shot mode Anton Vorontsov
2012-04-18 20:01 ` Pekka Enberg
2012-04-18 22:46 ` Anton Vorontsov
2012-04-19 5:42 ` Pekka Enberg
2012-04-19 16:29 ` [PATCH v3 " Anton Vorontsov
2012-05-01 13:18 ` [PATCH v4] vmevent: Implement greater-than attribute state " Anton Vorontsov
2012-05-01 21:04 ` Rik van Riel
2012-05-02 0:20 ` Anton Vorontsov
2012-05-02 1:20 ` KOSAKI Motohiro
2012-05-02 3:31 ` Anton Vorontsov
2012-05-02 3:50 ` Anton Vorontsov
2012-05-02 5:04 ` Minchan Kim
2012-05-02 6:46 ` leonid.moiseichuk
2012-05-02 6:57 ` Pekka Enberg
2012-05-02 7:41 ` Minchan Kim
2012-05-02 6:51 ` Pekka Enberg
2012-05-03 10:52 ` Pekka Enberg
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=20120418083356.GA31556@lizard \
--to=anton.vorontsov@linaro.org \
--cc=john.stultz@linaro.org \
--cc=leonid.moiseichuk@nokia.com \
--cc=linaro-kernel@lists.linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=patches@linaro.org \
--cc=penberg@kernel.org \
/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).