From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: Andrea Arcangeli <andrea@qumranet.com>
Cc: Izik Eidus <izike@qumranet.com>, Rik van Riel <riel@redhat.com>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
kvm-devel@lists.sourceforge.net, Avi Kivity <avi@qumranet.com>,
clameter@sgi.com, daniel.blueman@quadrics.com, holt@sgi.com,
steiner@sgi.com, Andrew Morton <akpm@osdl.org>,
Hugh Dickins <hugh@veritas.com>, Nick Piggin <npiggin@suse.de>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>
Subject: Re: [PATCH] mmu notifiers #v3
Date: Tue, 22 Jan 2008 20:28:47 +0100 [thread overview]
Message-ID: <1201030127.6341.39.camel@lappy> (raw)
In-Reply-To: <20080121125204.GJ6970@v2.random>
On Mon, 2008-01-21 at 13:52 +0100, Andrea Arcangeli wrote:
> diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h
> new file mode 100644
> --- /dev/null
> +++ b/include/linux/mmu_notifier.h
> @@ -0,0 +1,79 @@
> +#ifndef _LINUX_MMU_NOTIFIER_H
> +#define _LINUX_MMU_NOTIFIER_H
> +
> +#include <linux/list.h>
> +#include <linux/spinlock.h>
> +
> +#ifdef CONFIG_MMU_NOTIFIER
> +
> +struct mmu_notifier;
> +
> +struct mmu_notifier_ops {
> + void (*release)(struct mmu_notifier *mn,
> + struct mm_struct *mm);
> + void (*age_page)(struct mmu_notifier *mn,
> + struct mm_struct *mm,
> + unsigned long address);
> + void (*invalidate_page)(struct mmu_notifier *mn,
> + struct mm_struct *mm,
> + unsigned long address);
> + void (*invalidate_range)(struct mmu_notifier *mn,
> + struct mm_struct *mm,
> + unsigned long start, unsigned long end);
> +};
> +
> +struct mmu_notifier_head {
> + struct hlist_head head;
> + rwlock_t lock;
spinlock_t lock;
I think we can get rid of this rwlock as I think this will seriously
hurt larger machines.
> +};
> +
> +struct mmu_notifier {
> + struct hlist_node hlist;
> + const struct mmu_notifier_ops *ops;
> +};
> +
> +#include <linux/mm_types.h>
> +
> +extern void mmu_notifier_register(struct mmu_notifier *mn,
> + struct mm_struct *mm);
> +extern void mmu_notifier_unregister(struct mmu_notifier *mn,
> + struct mm_struct *mm);
> +extern void mmu_notifier_release(struct mm_struct *mm);
> +
> +static inline void mmu_notifier_head_init(struct mmu_notifier_head *mnh)
> +{
> + INIT_HLIST_HEAD(&mnh->head);
> + rwlock_init(&mnh->lock);
> +}
> +
> +#define mmu_notifier(function, mm, args...) \
> + do { \
> + struct mmu_notifier *__mn; \
> + struct hlist_node *__n; \
> + \
> + if (unlikely(!hlist_empty(&(mm)->mmu_notifier.head))) { \
> + read_lock(&(mm)->mmu_notifier.lock); \
rcu_read_lock();
> + hlist_for_each_entry(__mn, __n, \
hlist_for_each_entry_rcu
> + &(mm)->mmu_notifier.head, \
> + hlist) \
> + if (__mn->ops->function) \
> + __mn->ops->function(__mn, \
> + mm, \
> + args); \
> + read_unlock(&(mm)->mmu_notifier.lock); \
rcu_read_unlock();
> + } \
> + } while (0)
> +
> +#else /* CONFIG_MMU_NOTIFIER */
> +
> +#define mmu_notifier_register(mn, mm) do {} while(0)
> +#define mmu_notifier_unregister(mn, mm) do {} while (0)
> +#define mmu_notifier_release(mm) do {} while (0)
> +#define mmu_notifier_head_init(mmh) do {} while (0)
> +
> +#define mmu_notifier(function, mm, args...) \
> + do { } while (0)
> +
> +#endif /* CONFIG_MMU_NOTIFIER */
> +
> +#endif /* _LINUX_MMU_NOTIFIER_H */
> diff --git a/mm/mmu_notifier.c b/mm/mmu_notifier.c
> new file mode 100644
> --- /dev/null
> +++ b/mm/mmu_notifier.c
> @@ -0,0 +1,44 @@
> +/*
> + * linux/mm/mmu_notifier.c
> + *
> + * Copyright (C) 2008 Qumranet, Inc.
> + *
> + * This work is licensed under the terms of the GNU GPL, version 2. See
> + * the COPYING file in the top-level directory.
> + */
> +
> +#include <linux/mmu_notifier.h>
> +#include <linux/module.h>
> +
> +void mmu_notifier_release(struct mm_struct *mm)
> +{
> + struct mmu_notifier *mn;
> + struct hlist_node *n, *tmp;
> +
> + if (unlikely(!hlist_empty(&mm->mmu_notifier.head))) {
> + read_lock(&mm->mmu_notifier.lock);
rcu_read_lock();
> + hlist_for_each_entry_safe(mn, n, tmp,
hlist_for_each_entry_safe_rcu
> + &mm->mmu_notifier.head, hlist) {
> + if (mn->ops->release)
> + mn->ops->release(mn, mm);
> + hlist_del(&mn->hlist);
hlist_del_rcu
> + }
> + read_unlock(&mm->mmu_notifier.lock);
rcu_read_unlock();
> + }
> +}
> +
> +void mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm)
> +{
> + write_lock(&mm->mmu_notifier.lock);
spin_lock
> + hlist_add_head(&mn->hlist, &mm->mmu_notifier.head);
hlist_add_head_rcu
> + write_unlock(&mm->mmu_notifier.lock);
spin_unlock
> +}
> +EXPORT_SYMBOL_GPL(mmu_notifier_register);
> +
> +void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm)
> +{
> + write_lock(&mm->mmu_notifier.lock);
spin_lock
> + hlist_del(&mn->hlist);
hlist_del_rcu
> + write_unlock(&mm->mmu_notifier.lock);
spin_unlock
> +}
> +EXPORT_SYMBOL_GPL(mmu_notifier_unregister);
#define hlist_for_each_entry_safe(tpos, pos, n, head, member) \
for (pos = (head)->first; \
rcu_dereference(pos) && ({ n = pos->next; 1; }) && \
({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
pos = n)
WARNING: multiple messages have this Message-ID (diff)
From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: Andrea Arcangeli <andrea@qumranet.com>
Cc: Izik Eidus <izike@qumranet.com>, Rik van Riel <riel@redhat.com>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
kvm-devel@lists.sourceforge.net, Avi Kivity <avi@qumranet.com>,
clameter@sgi.com, daniel.blueman@quadrics.com, holt@sgi.com,
steiner@sgi.com, Andrew Morton <akpm@osdl.org>,
Hugh Dickins <hugh@veritas.com>, Nick Piggin <npiggin@suse.de>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>
Subject: Re: [PATCH] mmu notifiers #v3
Date: Tue, 22 Jan 2008 20:28:47 +0100 [thread overview]
Message-ID: <1201030127.6341.39.camel@lappy> (raw)
In-Reply-To: <20080121125204.GJ6970@v2.random>
On Mon, 2008-01-21 at 13:52 +0100, Andrea Arcangeli wrote:
> diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h
> new file mode 100644
> --- /dev/null
> +++ b/include/linux/mmu_notifier.h
> @@ -0,0 +1,79 @@
> +#ifndef _LINUX_MMU_NOTIFIER_H
> +#define _LINUX_MMU_NOTIFIER_H
> +
> +#include <linux/list.h>
> +#include <linux/spinlock.h>
> +
> +#ifdef CONFIG_MMU_NOTIFIER
> +
> +struct mmu_notifier;
> +
> +struct mmu_notifier_ops {
> + void (*release)(struct mmu_notifier *mn,
> + struct mm_struct *mm);
> + void (*age_page)(struct mmu_notifier *mn,
> + struct mm_struct *mm,
> + unsigned long address);
> + void (*invalidate_page)(struct mmu_notifier *mn,
> + struct mm_struct *mm,
> + unsigned long address);
> + void (*invalidate_range)(struct mmu_notifier *mn,
> + struct mm_struct *mm,
> + unsigned long start, unsigned long end);
> +};
> +
> +struct mmu_notifier_head {
> + struct hlist_head head;
> + rwlock_t lock;
spinlock_t lock;
I think we can get rid of this rwlock as I think this will seriously
hurt larger machines.
> +};
> +
> +struct mmu_notifier {
> + struct hlist_node hlist;
> + const struct mmu_notifier_ops *ops;
> +};
> +
> +#include <linux/mm_types.h>
> +
> +extern void mmu_notifier_register(struct mmu_notifier *mn,
> + struct mm_struct *mm);
> +extern void mmu_notifier_unregister(struct mmu_notifier *mn,
> + struct mm_struct *mm);
> +extern void mmu_notifier_release(struct mm_struct *mm);
> +
> +static inline void mmu_notifier_head_init(struct mmu_notifier_head *mnh)
> +{
> + INIT_HLIST_HEAD(&mnh->head);
> + rwlock_init(&mnh->lock);
> +}
> +
> +#define mmu_notifier(function, mm, args...) \
> + do { \
> + struct mmu_notifier *__mn; \
> + struct hlist_node *__n; \
> + \
> + if (unlikely(!hlist_empty(&(mm)->mmu_notifier.head))) { \
> + read_lock(&(mm)->mmu_notifier.lock); \
rcu_read_lock();
> + hlist_for_each_entry(__mn, __n, \
hlist_for_each_entry_rcu
> + &(mm)->mmu_notifier.head, \
> + hlist) \
> + if (__mn->ops->function) \
> + __mn->ops->function(__mn, \
> + mm, \
> + args); \
> + read_unlock(&(mm)->mmu_notifier.lock); \
rcu_read_unlock();
> + } \
> + } while (0)
> +
> +#else /* CONFIG_MMU_NOTIFIER */
> +
> +#define mmu_notifier_register(mn, mm) do {} while(0)
> +#define mmu_notifier_unregister(mn, mm) do {} while (0)
> +#define mmu_notifier_release(mm) do {} while (0)
> +#define mmu_notifier_head_init(mmh) do {} while (0)
> +
> +#define mmu_notifier(function, mm, args...) \
> + do { } while (0)
> +
> +#endif /* CONFIG_MMU_NOTIFIER */
> +
> +#endif /* _LINUX_MMU_NOTIFIER_H */
> diff --git a/mm/mmu_notifier.c b/mm/mmu_notifier.c
> new file mode 100644
> --- /dev/null
> +++ b/mm/mmu_notifier.c
> @@ -0,0 +1,44 @@
> +/*
> + * linux/mm/mmu_notifier.c
> + *
> + * Copyright (C) 2008 Qumranet, Inc.
> + *
> + * This work is licensed under the terms of the GNU GPL, version 2. See
> + * the COPYING file in the top-level directory.
> + */
> +
> +#include <linux/mmu_notifier.h>
> +#include <linux/module.h>
> +
> +void mmu_notifier_release(struct mm_struct *mm)
> +{
> + struct mmu_notifier *mn;
> + struct hlist_node *n, *tmp;
> +
> + if (unlikely(!hlist_empty(&mm->mmu_notifier.head))) {
> + read_lock(&mm->mmu_notifier.lock);
rcu_read_lock();
> + hlist_for_each_entry_safe(mn, n, tmp,
hlist_for_each_entry_safe_rcu
> + &mm->mmu_notifier.head, hlist) {
> + if (mn->ops->release)
> + mn->ops->release(mn, mm);
> + hlist_del(&mn->hlist);
hlist_del_rcu
> + }
> + read_unlock(&mm->mmu_notifier.lock);
rcu_read_unlock();
> + }
> +}
> +
> +void mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm)
> +{
> + write_lock(&mm->mmu_notifier.lock);
spin_lock
> + hlist_add_head(&mn->hlist, &mm->mmu_notifier.head);
hlist_add_head_rcu
> + write_unlock(&mm->mmu_notifier.lock);
spin_unlock
> +}
> +EXPORT_SYMBOL_GPL(mmu_notifier_register);
> +
> +void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm)
> +{
> + write_lock(&mm->mmu_notifier.lock);
spin_lock
> + hlist_del(&mn->hlist);
hlist_del_rcu
> + write_unlock(&mm->mmu_notifier.lock);
spin_unlock
> +}
> +EXPORT_SYMBOL_GPL(mmu_notifier_unregister);
#define hlist_for_each_entry_safe(tpos, pos, n, head, member) \
for (pos = (head)->first; \
rcu_dereference(pos) && ({ n = pos->next; 1; }) && \
({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
pos = n)
--
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:[~2008-01-22 19:29 UTC|newest]
Thread overview: 192+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-13 16:24 [PATCH] mmu notifiers #v2 Andrea Arcangeli
2008-01-13 16:24 ` Andrea Arcangeli
2008-01-13 16:24 ` Andrea Arcangeli
2008-01-13 21:11 ` Benjamin Herrenschmidt
2008-01-13 21:11 ` Benjamin Herrenschmidt
2008-01-13 21:11 ` Benjamin Herrenschmidt
2008-01-14 20:02 ` Christoph Lameter
2008-01-14 20:02 ` Christoph Lameter
2008-01-14 20:02 ` Christoph Lameter
2008-01-15 4:28 ` Benjamin Herrenschmidt
2008-01-15 4:28 ` Benjamin Herrenschmidt
2008-01-15 4:28 ` Benjamin Herrenschmidt
2008-01-15 12:44 ` Andrea Arcangeli
2008-01-15 12:44 ` Andrea Arcangeli
2008-01-15 12:44 ` Andrea Arcangeli
2008-01-15 20:18 ` Benjamin Herrenschmidt
2008-01-15 20:18 ` Benjamin Herrenschmidt
2008-01-15 20:18 ` Benjamin Herrenschmidt
2008-01-16 1:06 ` Andrea Arcangeli
2008-01-16 1:06 ` Andrea Arcangeli
2008-01-16 9:01 ` Brice Goglin
2008-01-16 9:01 ` Brice Goglin
2008-01-16 10:19 ` Andrea Arcangeli
2008-01-16 10:19 ` Andrea Arcangeli
2008-01-16 17:42 ` Rik van Riel
2008-01-16 17:42 ` Rik van Riel
2008-01-16 17:42 ` Rik van Riel
2008-01-16 17:48 ` Izik Eidus
2008-01-16 17:48 ` Izik Eidus
2008-01-16 17:48 ` Izik Eidus
2008-01-17 16:23 ` Andrea Arcangeli
2008-01-17 16:23 ` Andrea Arcangeli
2008-01-17 16:23 ` Andrea Arcangeli
2008-01-17 18:21 ` Izik Eidus
2008-01-17 18:21 ` Izik Eidus
2008-01-17 19:32 ` Andrea Arcangeli
2008-01-17 19:32 ` Andrea Arcangeli
2008-01-17 19:32 ` Andrea Arcangeli
2008-01-21 12:52 ` [PATCH] mmu notifiers #v3 Andrea Arcangeli
2008-01-21 12:52 ` Andrea Arcangeli
2008-01-21 12:52 ` Andrea Arcangeli
2008-01-22 2:21 ` Rik van Riel
2008-01-22 2:21 ` Rik van Riel
2008-01-22 2:21 ` Rik van Riel
2008-01-22 14:12 ` [kvm-devel] " Avi Kivity
2008-01-22 14:12 ` Avi Kivity
2008-01-22 14:12 ` Avi Kivity
2008-01-22 14:43 ` [kvm-devel] " Andrea Arcangeli
2008-01-22 14:43 ` Andrea Arcangeli
2008-01-22 14:43 ` Andrea Arcangeli
2008-01-22 20:08 ` [kvm-devel] [PATCH] mmu notifiers #v4 Andrea Arcangeli
2008-01-22 20:08 ` Andrea Arcangeli
2008-01-22 20:08 ` Andrea Arcangeli
2008-01-22 20:34 ` [kvm-devel] [PATCH] export notifier #1 Christoph Lameter
2008-01-22 20:34 ` Christoph Lameter
2008-01-22 20:34 ` Christoph Lameter
2008-01-22 22:31 ` [kvm-devel] " Andrea Arcangeli
2008-01-22 22:31 ` Andrea Arcangeli
2008-01-22 22:31 ` Andrea Arcangeli
2008-01-22 22:53 ` [kvm-devel] " Christoph Lameter
2008-01-22 22:53 ` Christoph Lameter
2008-01-22 22:53 ` Christoph Lameter
2008-01-23 10:27 ` [kvm-devel] " Avi Kivity
2008-01-23 10:27 ` Avi Kivity
2008-01-23 10:27 ` Avi Kivity
2008-01-23 10:52 ` [kvm-devel] " Robin Holt
2008-01-23 10:52 ` Robin Holt
2008-01-23 10:52 ` Robin Holt
2008-01-23 12:04 ` [kvm-devel] " Andrea Arcangeli
2008-01-23 12:04 ` Andrea Arcangeli
2008-01-23 12:34 ` Robin Holt
2008-01-23 12:34 ` Robin Holt
2008-01-23 12:34 ` Robin Holt
2008-01-23 19:48 ` [kvm-devel] " Christoph Lameter
2008-01-23 19:48 ` Christoph Lameter
2008-01-23 19:48 ` Christoph Lameter
2008-01-23 19:58 ` [kvm-devel] " Robin Holt
2008-01-23 19:58 ` Robin Holt
2008-01-23 19:58 ` Robin Holt
2008-01-23 19:47 ` [kvm-devel] " Christoph Lameter
2008-01-23 19:47 ` Christoph Lameter
2008-01-23 19:47 ` Christoph Lameter
2008-01-24 5:56 ` [kvm-devel] " Avi Kivity
2008-01-24 5:56 ` Avi Kivity
2008-01-24 5:56 ` Avi Kivity
2008-01-24 12:26 ` [kvm-devel] " Andrea Arcangeli
2008-01-24 12:26 ` Andrea Arcangeli
2008-01-24 12:26 ` Andrea Arcangeli
2008-01-24 12:34 ` [kvm-devel] " Avi Kivity
2008-01-24 12:34 ` Avi Kivity
2008-01-24 12:34 ` Avi Kivity
2008-01-23 11:41 ` [kvm-devel] " Andrea Arcangeli
2008-01-23 11:41 ` Andrea Arcangeli
2008-01-23 11:41 ` Andrea Arcangeli
2008-01-23 12:32 ` [kvm-devel] " Robin Holt
2008-01-23 12:32 ` Robin Holt
2008-01-23 12:32 ` Robin Holt
2008-01-23 17:33 ` [kvm-devel] " Andrea Arcangeli
2008-01-23 17:33 ` Andrea Arcangeli
2008-01-23 17:33 ` Andrea Arcangeli
2008-01-23 20:27 ` [kvm-devel] " Christoph Lameter
2008-01-23 20:27 ` Christoph Lameter
2008-01-23 20:27 ` Christoph Lameter
2008-01-24 15:42 ` [kvm-devel] " Andrea Arcangeli
2008-01-24 15:42 ` Andrea Arcangeli
2008-01-24 20:07 ` Christoph Lameter
2008-01-24 20:07 ` Christoph Lameter
2008-01-24 20:07 ` Christoph Lameter
2008-01-25 6:35 ` [kvm-devel] " Avi Kivity
2008-01-25 6:35 ` Avi Kivity
2008-01-25 6:35 ` Avi Kivity
2008-01-23 20:18 ` [kvm-devel] " Christoph Lameter
2008-01-23 20:18 ` Christoph Lameter
2008-01-23 20:18 ` Christoph Lameter
2008-01-24 14:34 ` [kvm-devel] " Andrea Arcangeli
2008-01-24 14:34 ` Andrea Arcangeli
2008-01-24 14:34 ` Andrea Arcangeli
2008-01-24 14:41 ` [kvm-devel] " Andrea Arcangeli
2008-01-24 14:41 ` Andrea Arcangeli
2008-01-24 14:41 ` Andrea Arcangeli
2008-01-24 15:15 ` [kvm-devel] " Avi Kivity
2008-01-24 15:15 ` Avi Kivity
2008-01-24 15:15 ` Avi Kivity
2008-01-24 15:18 ` [kvm-devel] " Avi Kivity
2008-01-24 15:18 ` Avi Kivity
2008-01-24 15:18 ` Avi Kivity
2008-01-24 20:01 ` [kvm-devel] " Christoph Lameter
2008-01-24 20:01 ` Christoph Lameter
2008-01-24 20:01 ` Christoph Lameter
2008-01-22 23:36 ` [kvm-devel] " Benjamin Herrenschmidt
2008-01-22 23:36 ` Benjamin Herrenschmidt
2008-01-22 23:36 ` Benjamin Herrenschmidt
2008-01-23 0:40 ` [kvm-devel] " Christoph Lameter
2008-01-23 0:40 ` Christoph Lameter
2008-01-23 0:40 ` Christoph Lameter
2008-01-23 1:21 ` [kvm-devel] " Robin Holt
2008-01-23 1:21 ` Robin Holt
2008-01-23 1:21 ` Robin Holt
2008-01-23 12:51 ` [kvm-devel] " Gerd Hoffmann
2008-01-23 12:51 ` Gerd Hoffmann
2008-01-23 12:51 ` Gerd Hoffmann
2008-01-23 13:19 ` [kvm-devel] " Robin Holt
2008-01-23 13:19 ` Robin Holt
2008-01-23 13:19 ` Robin Holt
2008-01-23 14:12 ` [kvm-devel] " Gerd Hoffmann
2008-01-23 14:12 ` Gerd Hoffmann
2008-01-23 14:12 ` Gerd Hoffmann
2008-01-23 14:18 ` [kvm-devel] " Robin Holt
2008-01-23 14:18 ` Robin Holt
2008-01-23 14:18 ` Robin Holt
2008-01-23 14:35 ` [kvm-devel] " Gerd Hoffmann
2008-01-23 14:35 ` Gerd Hoffmann
2008-01-23 14:35 ` Gerd Hoffmann
2008-01-23 15:48 ` [kvm-devel] " Robin Holt
2008-01-23 15:48 ` Robin Holt
2008-01-23 15:48 ` Robin Holt
2008-01-23 14:17 ` [kvm-devel] " Avi Kivity
2008-01-23 14:17 ` Avi Kivity
2008-01-23 14:17 ` Avi Kivity
2008-01-24 4:03 ` [kvm-devel] " Benjamin Herrenschmidt
2008-01-24 4:03 ` Benjamin Herrenschmidt
2008-01-24 4:03 ` Benjamin Herrenschmidt
2008-01-23 15:41 ` [kvm-devel] " Andrea Arcangeli
2008-01-23 15:41 ` Andrea Arcangeli
2008-01-23 17:47 ` Gerd Hoffmann
2008-01-23 17:47 ` Gerd Hoffmann
2008-01-23 17:47 ` Gerd Hoffmann
2008-01-24 6:01 ` [kvm-devel] " Avi Kivity
2008-01-24 6:01 ` Avi Kivity
2008-01-24 6:01 ` Avi Kivity
2008-01-24 6:45 ` [kvm-devel] " Jeremy Fitzhardinge
2008-01-24 6:45 ` Jeremy Fitzhardinge
2008-01-23 20:40 ` Christoph Lameter
2008-01-23 20:40 ` Christoph Lameter
2008-01-23 20:40 ` Christoph Lameter
2008-01-24 2:00 ` Enhance mmu notifiers to accomplish a lockless implementation (incomplete) Robin Holt
2008-01-24 2:00 ` Robin Holt
2008-01-24 2:00 ` Robin Holt
2008-01-24 4:05 ` Robin Holt
2008-01-24 4:05 ` Robin Holt
2008-01-24 4:05 ` Robin Holt
2008-01-22 19:28 ` Peter Zijlstra [this message]
2008-01-22 19:28 ` [PATCH] mmu notifiers #v3 Peter Zijlstra
2008-01-22 20:31 ` Christoph Lameter
2008-01-22 20:31 ` Christoph Lameter
2008-01-22 20:31 ` Christoph Lameter
2008-01-22 20:31 ` Andrea Arcangeli
2008-01-22 20:31 ` Andrea Arcangeli
2008-01-22 20:31 ` Andrea Arcangeli
2008-01-22 22:10 ` Hugh Dickins
2008-01-22 22:10 ` Hugh Dickins
2008-01-22 22:10 ` Hugh Dickins
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=1201030127.6341.39.camel@lappy \
--to=a.p.zijlstra@chello.nl \
--cc=akpm@osdl.org \
--cc=andrea@qumranet.com \
--cc=avi@qumranet.com \
--cc=benh@kernel.crashing.org \
--cc=clameter@sgi.com \
--cc=daniel.blueman@quadrics.com \
--cc=holt@sgi.com \
--cc=hugh@veritas.com \
--cc=izike@qumranet.com \
--cc=kvm-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=npiggin@suse.de \
--cc=riel@redhat.com \
--cc=steiner@sgi.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 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.