From: "KOSAKI Motohiro" <kosaki.motohiro@jp.fujitsu.com>
To: linux-mm@kvack.org, linux-kernel@vger.kernel.org
Cc: kosaki.motohiro@jp.fujitsu.com,
Marcelo Tosatti <marcelo@kvack.org>,
Daniel Spang <daniel.spang@gmail.com>,
Rik van Riel <riel@redhat.com>,
Andrew Morton <akpm@linux-foundation.org>,
Alan Cox <alan@lxorguk.ukuu.org.uk>,
linux-fsdevel@vger.kernel.org, Pavel Machek <pavel@ucw.cz>,
Al Boldi <a1426z@gawab.com>,
Jon Masters <jonathan@jonmasters.org>, Zan Lynx <zlynx@acm.org>
Subject: [PATCH 8/8][for -mm] mem_notify v6: support fasync feature
Date: Sun, 10 Feb 2008 00:28:11 +0900 [thread overview]
Message-ID: <2f11576a0802090728x3e4e429dgcdceefd12213a987@mail.gmail.com> (raw)
implement FASYNC capability to /dev/mem_notify.
<usage example>
fd = open("/dev/mem_notify", O_RDONLY);
fcntl(fd, F_SETOWN, getpid());
fcntl(fd, F_SETSIG, SIGUSR1);
flags = fcntl(fd, F_GETFL);
fcntl(fd, F_SETFL, flags|FASYNC); /* when low memory, receive SIGUSR1 */
</usage example>
ChangeLog
v5 -> v6:
o rewrite usage example
o cleanups number of wakeup tasks calculation.
v5: new
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
---
mm/mem_notify.c | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 104 insertions(+), 5 deletions(-)
Index: b/mm/mem_notify.c
===================================================================
--- a/mm/mem_notify.c 2008-02-03 20:37:25.000000000 +0900
+++ b/mm/mem_notify.c 2008-02-03 20:48:04.000000000 +0900
@@ -24,18 +24,58 @@
#define MAX_WAKEUP_TASKS (100)
struct mem_notify_file_info {
- unsigned long last_proc_notify;
+ unsigned long last_proc_notify;
+ struct file *file;
+
+ /* for fasync */
+ struct list_head fa_list;
+ int fa_fd;
};
static DECLARE_WAIT_QUEUE_HEAD(mem_wait);
static atomic_long_t nr_under_memory_pressure_zones = ATOMIC_LONG_INIT(0);
static atomic_t nr_watcher_task = ATOMIC_INIT(0);
+static LIST_HEAD(mem_notify_fasync_list);
+static DEFINE_SPINLOCK(mem_notify_fasync_lock);
+static atomic_t nr_fasync_task = ATOMIC_INIT(0);
atomic_long_t last_mem_notify = ATOMIC_LONG_INIT(INITIAL_JIFFIES);
+static void mem_notify_kill_fasync_nr(int nr)
+{
+ struct mem_notify_file_info *iter, *saved_iter;
+ LIST_HEAD(l_fired);
+
+ if (!nr)
+ return;
+
+ spin_lock(&mem_notify_fasync_lock);
+
+ list_for_each_entry_safe_reverse(iter, saved_iter,
+ &mem_notify_fasync_list,
+ fa_list) {
+ struct fown_struct *fown;
+
+ fown = &iter->file->f_owner;
+ send_sigio(fown, iter->fa_fd, POLL_IN);
+
+ list_del(&iter->fa_list);
+ list_add(&iter->fa_list, &l_fired);
+ if (!--nr)
+ break;
+ }
+
+ /* rotate moving for FIFO wakeup */
+ list_splice(&l_fired, &mem_notify_fasync_list);
+
+ spin_unlock(&mem_notify_fasync_lock);
+}
+
void __memory_pressure_notify(struct zone *zone, int pressure)
{
int nr_wakeup;
+ int nr_poll_wakeup = 0;
+ int nr_fasync_wakeup = 0;
int flags;
spin_lock_irqsave(&mem_wait.lock, flags);
@@ -48,6 +88,8 @@ void __memory_pressure_notify(struct zon
if (pressure) {
int nr_watcher = atomic_read(&nr_watcher_task);
+ int nr_fasync_wait_tasks = atomic_read(&nr_fasync_task);
+ int nr_poll_wait_tasks = nr_watcher - nr_fasync_wait_tasks;
atomic_long_set(&last_mem_notify, jiffies);
if (!nr_watcher)
@@ -57,10 +99,27 @@ void __memory_pressure_notify(struct zon
if (unlikely(nr_wakeup > MAX_WAKEUP_TASKS))
nr_wakeup = MAX_WAKEUP_TASKS;
- wake_up_locked_nr(&mem_wait, nr_wakeup);
+ /* nr_wakeup
+ nr_fasync_wakeup = nr_fasync_wait_taks x ------------
+ nr_watcher
+ */
+ nr_fasync_wakeup = DIV_ROUND_UP(nr_fasync_wait_tasks *
+ nr_wakeup, nr_watcher);
+ if (unlikely(nr_fasync_wakeup > nr_fasync_wait_tasks))
+ nr_fasync_wakeup = nr_fasync_wait_tasks;
+
+ nr_poll_wakeup = DIV_ROUND_UP(nr_poll_wait_tasks *
+ nr_wakeup, nr_watcher);
+ if (unlikely(nr_poll_wakeup > nr_poll_wait_tasks))
+ nr_poll_wakeup = nr_poll_wait_tasks;
+
+ wake_up_locked_nr(&mem_wait, nr_poll_wakeup);
}
out:
spin_unlock_irqrestore(&mem_wait.lock, flags);
+
+ if (nr_fasync_wakeup)
+ mem_notify_kill_fasync_nr(nr_fasync_wakeup);
}
static int mem_notify_open(struct inode *inode, struct file *file)
@@ -75,6 +134,9 @@ static int mem_notify_open(struct inode
}
info->last_proc_notify = INITIAL_JIFFIES;
+ INIT_LIST_HEAD(&info->fa_list);
+ info->file = file;
+ info->fa_fd = -1;
file->private_data = info;
atomic_inc(&nr_watcher_task);
out:
@@ -83,7 +145,16 @@ out:
static int mem_notify_release(struct inode *inode, struct file *file)
{
- kfree(file->private_data);
+ struct mem_notify_file_info *info = file->private_data;
+
+ spin_lock(&mem_notify_fasync_lock);
+ if (!list_empty(&info->fa_list)) {
+ list_del(&info->fa_list);
+ atomic_dec(&nr_fasync_task);
+ }
+ spin_unlock(&mem_notify_fasync_lock);
+
+ kfree(info);
atomic_dec(&nr_watcher_task);
return 0;
}
@@ -114,9 +185,37 @@ out:
return retval;
}
+static int mem_notify_fasync(int fd, struct file *filp, int on)
+{
+ struct mem_notify_file_info *info = filp->private_data;
+ int result = 0;
+
+ spin_lock(&mem_notify_fasync_lock);
+ if (on) {
+ if (list_empty(&info->fa_list)) {
+ info->fa_fd = fd;
+ list_add(&info->fa_list, &mem_notify_fasync_list);
+ result = 1;
+ } else {
+ info->fa_fd = fd;
+ }
+ } else {
+ if (!list_empty(&info->fa_list)) {
+ list_del_init(&info->fa_list);
+ info->fa_fd = -1;
+ result = -1;
+ }
+ }
+ if (result != 0)
+ atomic_add(result, &nr_fasync_task);
+ spin_unlock(&mem_notify_fasync_lock);
+ return abs(result);
+}
+
struct file_operations mem_notify_fops = {
- .open = mem_notify_open,
+ .open = mem_notify_open,
.release = mem_notify_release,
- .poll = mem_notify_poll,
+ .poll = mem_notify_poll,
+ .fasync = mem_notify_fasync,
};
EXPORT_SYMBOL(mem_notify_fops);
--
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>
reply other threads:[~2008-02-09 15:28 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=2f11576a0802090728x3e4e429dgcdceefd12213a987@mail.gmail.com \
--to=kosaki.motohiro@jp.fujitsu.com \
--cc=a1426z@gawab.com \
--cc=akpm@linux-foundation.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=daniel.spang@gmail.com \
--cc=jonathan@jonmasters.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=marcelo@kvack.org \
--cc=pavel@ucw.cz \
--cc=riel@redhat.com \
--cc=zlynx@acm.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