All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrea Arcangeli <andrea@qumranet.com>
To: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Christoph Lameter <clameter@sgi.com>,
	Jack Steiner <steiner@sgi.com>, Nick Piggin <npiggin@suse.de>,
	akpm@linux-foundation.org, Robin Holt <holt@sgi.com>,
	Avi Kivity <avi@qumranet.com>,
	kvm-devel@lists.sourceforge.net, general@lists.openfabrics.org,
	Steve Wise <swise@opengridcomputing.com>,
	Roland Dreier <rdreier@cisco.com>,
	Kanoj Sarcar <kanojsarcar@yahoo.com>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	daniel.blueman@quadrics.com
Subject: Re: [PATCH] 3/4 combine RCU with seqlock to allow mmu notifier methods to sleep (#v9 was 1/4)
Date: Fri, 7 Mar 2008 20:47:28 +0100	[thread overview]
Message-ID: <20080307194728.GP24114@v2.random> (raw)
In-Reply-To: <20080307184552.GL24114@v2.random>

On Fri, Mar 07, 2008 at 07:45:52PM +0100, Andrea Arcangeli wrote:
> On Fri, Mar 07, 2008 at 07:01:35PM +0100, Peter Zijlstra wrote:
> > The reason Christoph can do without RCU is because he doesn't allow
> > unregister, and as soon as you drop that you'll end up with something
> 
> Not sure to follow, what do you mean "he doesn't allow"? We'll also
> have to rip unregister regardless after you pointed out the ->release
> won't be called after calling my mmu_notifier_unregister in 3/4. If
> you figured out how to retain mmu_notifier_unregister I'm not seeing
> it anymore.

Given I don't see other (buggy ;) ways anymore to retain
mmu_notifier_unregister, I did like in EMM and I dropped the
unregister function.

To me it looks like this will be enough and equally efficient as the
expanded version in EMM that is not using the highlevel hlist_rcu
macros. If you can see any pitfall let me know! Thanks a lot for the
help.

------
This is a replacement for the previously posted 3/4, one of the pieces
to allow the mmu notifier methods to sleep.

Signed-off-by: Andrea Arcangeli <andrea@qumranet.com>

diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h
--- a/include/linux/mmu_notifier.h
+++ b/include/linux/mmu_notifier.h
@@ -70,17 +70,6 @@ static inline int mm_has_notifiers(struc
  */
 extern void mmu_notifier_register(struct mmu_notifier *mn,
 				  struct mm_struct *mm);
-/*
- * Must hold the mmap_sem for write.
- *
- * RCU is used to traverse the list. A quiescent period needs to pass
- * before the "struct mmu_notifier" can be freed. Alternatively it
- * can be synchronously freed inside ->release when the list can't
- * change anymore and nobody could possibly walk it.
- */
-extern void mmu_notifier_unregister(struct mmu_notifier *mn,
-				    struct mm_struct *mm);
-
 extern void __mmu_notifier_release(struct mm_struct *mm);
 extern int __mmu_notifier_clear_flush_young(struct mm_struct *mm,
 					  unsigned long address);
diff --git a/mm/mmu_notifier.c b/mm/mmu_notifier.c
--- a/mm/mmu_notifier.c
+++ b/mm/mmu_notifier.c
@@ -43,12 +43,10 @@ int __mmu_notifier_clear_flush_young(str
 	struct hlist_node *n;
 	int young = 0;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->clear_flush_young)
 			young |= mn->ops->clear_flush_young(mn, mm, address);
 	}
-	rcu_read_unlock();
 
 	return young;
 }
@@ -59,12 +57,10 @@ void __mmu_notifier_invalidate_page(stru
 	struct mmu_notifier *mn;
 	struct hlist_node *n;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->invalidate_page)
 			mn->ops->invalidate_page(mn, mm, address);
 	}
-	rcu_read_unlock();
 }
 
 void __mmu_notifier_invalidate_range_begin(struct mm_struct *mm,
@@ -73,12 +69,10 @@ void __mmu_notifier_invalidate_range_beg
 	struct mmu_notifier *mn;
 	struct hlist_node *n;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->invalidate_range_begin)
 			mn->ops->invalidate_range_begin(mn, mm, start, end);
 	}
-	rcu_read_unlock();
 }
 
 void __mmu_notifier_invalidate_range_end(struct mm_struct *mm,
@@ -87,12 +81,10 @@ void __mmu_notifier_invalidate_range_end
 	struct mmu_notifier *mn;
 	struct hlist_node *n;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->invalidate_range_end)
 			mn->ops->invalidate_range_end(mn, mm, start, end);
 	}
-	rcu_read_unlock();
 }
 
 /*
@@ -106,9 +98,3 @@ void mmu_notifier_register(struct mmu_no
 	hlist_add_head_rcu(&mn->hlist, &mm->mmu_notifier_list);
 }
 EXPORT_SYMBOL_GPL(mmu_notifier_register);
-
-void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm)
-{
-	hlist_del_rcu(&mn->hlist);
-}
-EXPORT_SYMBOL_GPL(mmu_notifier_unregister);

WARNING: multiple messages have this Message-ID (diff)
From: Andrea Arcangeli <andrea@qumranet.com>
To: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Nick Piggin <npiggin@suse.de>,
	kvm-devel@lists.sourceforge.net,
	Kanoj Sarcar <kanojsarcar@yahoo.com>,
	Roland Dreier <rdreier@cisco.com>, Jack Steiner <steiner@sgi.com>,
	linux-kernel@vger.kernel.org, Avi Kivity <avi@qumranet.com>,
	linux-mm@kvack.org, daniel.blueman@quadrics.com,
	Robin Holt <holt@sgi.com>,
	general@lists.openfabrics.org, akpm@linux-foundation.org,
	Christoph Lameter <clameter@sgi.com>
Subject: [ofa-general] Re: [PATCH] 3/4 combine RCU with seqlock to allow mmu notifier methods to sleep (#v9 was 1/4)
Date: Fri, 7 Mar 2008 20:47:28 +0100	[thread overview]
Message-ID: <20080307194728.GP24114@v2.random> (raw)
In-Reply-To: <20080307184552.GL24114@v2.random>

On Fri, Mar 07, 2008 at 07:45:52PM +0100, Andrea Arcangeli wrote:
> On Fri, Mar 07, 2008 at 07:01:35PM +0100, Peter Zijlstra wrote:
> > The reason Christoph can do without RCU is because he doesn't allow
> > unregister, and as soon as you drop that you'll end up with something
> 
> Not sure to follow, what do you mean "he doesn't allow"? We'll also
> have to rip unregister regardless after you pointed out the ->release
> won't be called after calling my mmu_notifier_unregister in 3/4. If
> you figured out how to retain mmu_notifier_unregister I'm not seeing
> it anymore.

Given I don't see other (buggy ;) ways anymore to retain
mmu_notifier_unregister, I did like in EMM and I dropped the
unregister function.

To me it looks like this will be enough and equally efficient as the
expanded version in EMM that is not using the highlevel hlist_rcu
macros. If you can see any pitfall let me know! Thanks a lot for the
help.

------
This is a replacement for the previously posted 3/4, one of the pieces
to allow the mmu notifier methods to sleep.

Signed-off-by: Andrea Arcangeli <andrea@qumranet.com>

diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h
--- a/include/linux/mmu_notifier.h
+++ b/include/linux/mmu_notifier.h
@@ -70,17 +70,6 @@ static inline int mm_has_notifiers(struc
  */
 extern void mmu_notifier_register(struct mmu_notifier *mn,
 				  struct mm_struct *mm);
-/*
- * Must hold the mmap_sem for write.
- *
- * RCU is used to traverse the list. A quiescent period needs to pass
- * before the "struct mmu_notifier" can be freed. Alternatively it
- * can be synchronously freed inside ->release when the list can't
- * change anymore and nobody could possibly walk it.
- */
-extern void mmu_notifier_unregister(struct mmu_notifier *mn,
-				    struct mm_struct *mm);
-
 extern void __mmu_notifier_release(struct mm_struct *mm);
 extern int __mmu_notifier_clear_flush_young(struct mm_struct *mm,
 					  unsigned long address);
diff --git a/mm/mmu_notifier.c b/mm/mmu_notifier.c
--- a/mm/mmu_notifier.c
+++ b/mm/mmu_notifier.c
@@ -43,12 +43,10 @@ int __mmu_notifier_clear_flush_young(str
 	struct hlist_node *n;
 	int young = 0;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->clear_flush_young)
 			young |= mn->ops->clear_flush_young(mn, mm, address);
 	}
-	rcu_read_unlock();
 
 	return young;
 }
@@ -59,12 +57,10 @@ void __mmu_notifier_invalidate_page(stru
 	struct mmu_notifier *mn;
 	struct hlist_node *n;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->invalidate_page)
 			mn->ops->invalidate_page(mn, mm, address);
 	}
-	rcu_read_unlock();
 }
 
 void __mmu_notifier_invalidate_range_begin(struct mm_struct *mm,
@@ -73,12 +69,10 @@ void __mmu_notifier_invalidate_range_beg
 	struct mmu_notifier *mn;
 	struct hlist_node *n;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->invalidate_range_begin)
 			mn->ops->invalidate_range_begin(mn, mm, start, end);
 	}
-	rcu_read_unlock();
 }
 
 void __mmu_notifier_invalidate_range_end(struct mm_struct *mm,
@@ -87,12 +81,10 @@ void __mmu_notifier_invalidate_range_end
 	struct mmu_notifier *mn;
 	struct hlist_node *n;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->invalidate_range_end)
 			mn->ops->invalidate_range_end(mn, mm, start, end);
 	}
-	rcu_read_unlock();
 }
 
 /*
@@ -106,9 +98,3 @@ void mmu_notifier_register(struct mmu_no
 	hlist_add_head_rcu(&mn->hlist, &mm->mmu_notifier_list);
 }
 EXPORT_SYMBOL_GPL(mmu_notifier_register);
-
-void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm)
-{
-	hlist_del_rcu(&mn->hlist);
-}
-EXPORT_SYMBOL_GPL(mmu_notifier_unregister);

WARNING: multiple messages have this Message-ID (diff)
From: Andrea Arcangeli <andrea@qumranet.com>
To: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Christoph Lameter <clameter@sgi.com>,
	Jack Steiner <steiner@sgi.com>, Nick Piggin <npiggin@suse.de>,
	akpm@linux-foundation.org, Robin Holt <holt@sgi.com>,
	Avi Kivity <avi@qumranet.com>,
	kvm-devel@lists.sourceforge.net, general@lists.openfabrics.org,
	Steve Wise <swise@opengridcomputing.com>,
	Roland Dreier <rdreier@cisco.com>,
	Kanoj Sarcar <kanojsarcar@yahoo.com>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	daniel.blueman@quadrics.com
Subject: Re: [PATCH] 3/4 combine RCU with seqlock to allow mmu notifier methods to sleep (#v9 was 1/4)
Date: Fri, 7 Mar 2008 20:47:28 +0100	[thread overview]
Message-ID: <20080307194728.GP24114@v2.random> (raw)
In-Reply-To: <20080307184552.GL24114@v2.random>

On Fri, Mar 07, 2008 at 07:45:52PM +0100, Andrea Arcangeli wrote:
> On Fri, Mar 07, 2008 at 07:01:35PM +0100, Peter Zijlstra wrote:
> > The reason Christoph can do without RCU is because he doesn't allow
> > unregister, and as soon as you drop that you'll end up with something
> 
> Not sure to follow, what do you mean "he doesn't allow"? We'll also
> have to rip unregister regardless after you pointed out the ->release
> won't be called after calling my mmu_notifier_unregister in 3/4. If
> you figured out how to retain mmu_notifier_unregister I'm not seeing
> it anymore.

Given I don't see other (buggy ;) ways anymore to retain
mmu_notifier_unregister, I did like in EMM and I dropped the
unregister function.

To me it looks like this will be enough and equally efficient as the
expanded version in EMM that is not using the highlevel hlist_rcu
macros. If you can see any pitfall let me know! Thanks a lot for the
help.

------
This is a replacement for the previously posted 3/4, one of the pieces
to allow the mmu notifier methods to sleep.

Signed-off-by: Andrea Arcangeli <andrea@qumranet.com>

diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h
--- a/include/linux/mmu_notifier.h
+++ b/include/linux/mmu_notifier.h
@@ -70,17 +70,6 @@ static inline int mm_has_notifiers(struc
  */
 extern void mmu_notifier_register(struct mmu_notifier *mn,
 				  struct mm_struct *mm);
-/*
- * Must hold the mmap_sem for write.
- *
- * RCU is used to traverse the list. A quiescent period needs to pass
- * before the "struct mmu_notifier" can be freed. Alternatively it
- * can be synchronously freed inside ->release when the list can't
- * change anymore and nobody could possibly walk it.
- */
-extern void mmu_notifier_unregister(struct mmu_notifier *mn,
-				    struct mm_struct *mm);
-
 extern void __mmu_notifier_release(struct mm_struct *mm);
 extern int __mmu_notifier_clear_flush_young(struct mm_struct *mm,
 					  unsigned long address);
diff --git a/mm/mmu_notifier.c b/mm/mmu_notifier.c
--- a/mm/mmu_notifier.c
+++ b/mm/mmu_notifier.c
@@ -43,12 +43,10 @@ int __mmu_notifier_clear_flush_young(str
 	struct hlist_node *n;
 	int young = 0;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->clear_flush_young)
 			young |= mn->ops->clear_flush_young(mn, mm, address);
 	}
-	rcu_read_unlock();
 
 	return young;
 }
@@ -59,12 +57,10 @@ void __mmu_notifier_invalidate_page(stru
 	struct mmu_notifier *mn;
 	struct hlist_node *n;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->invalidate_page)
 			mn->ops->invalidate_page(mn, mm, address);
 	}
-	rcu_read_unlock();
 }
 
 void __mmu_notifier_invalidate_range_begin(struct mm_struct *mm,
@@ -73,12 +69,10 @@ void __mmu_notifier_invalidate_range_beg
 	struct mmu_notifier *mn;
 	struct hlist_node *n;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->invalidate_range_begin)
 			mn->ops->invalidate_range_begin(mn, mm, start, end);
 	}
-	rcu_read_unlock();
 }
 
 void __mmu_notifier_invalidate_range_end(struct mm_struct *mm,
@@ -87,12 +81,10 @@ void __mmu_notifier_invalidate_range_end
 	struct mmu_notifier *mn;
 	struct hlist_node *n;
 
-	rcu_read_lock();
 	hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_list, hlist) {
 		if (mn->ops->invalidate_range_end)
 			mn->ops->invalidate_range_end(mn, mm, start, end);
 	}
-	rcu_read_unlock();
 }
 
 /*
@@ -106,9 +98,3 @@ void mmu_notifier_register(struct mmu_no
 	hlist_add_head_rcu(&mn->hlist, &mm->mmu_notifier_list);
 }
 EXPORT_SYMBOL_GPL(mmu_notifier_register);
-
-void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm)
-{
-	hlist_del_rcu(&mn->hlist);
-}
-EXPORT_SYMBOL_GPL(mmu_notifier_unregister);

--
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-03-07 19:47 UTC|newest]

Thread overview: 334+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-19  8:43 [patch] my mmu notifiers Nick Piggin
2008-02-19  8:43 ` Nick Piggin
2008-02-19  8:44 ` [patch] my mmu notifier sample driver Nick Piggin
2008-02-19  8:44   ` Nick Piggin
2008-02-19  8:44   ` Nick Piggin
2008-02-19 11:59 ` [patch] my mmu notifiers Robin Holt
2008-02-19 11:59   ` Robin Holt
2008-02-19 11:59   ` Robin Holt
2008-02-19 13:58 ` Andrea Arcangeli
2008-02-19 13:58   ` Andrea Arcangeli
2008-02-19 13:58   ` [ofa-general] " Andrea Arcangeli
2008-02-19 14:27   ` Jack Steiner
2008-02-19 14:27     ` Jack Steiner
2008-02-19 14:27     ` Jack Steiner
2008-02-19 23:04     ` Nick Piggin
2008-02-19 23:04       ` Nick Piggin
2008-02-20  0:52       ` Andrea Arcangeli
2008-02-20  0:52         ` Andrea Arcangeli
2008-02-20  0:52         ` [ofa-general] " Andrea Arcangeli
2008-02-20  2:46         ` Robin Holt
2008-02-20  2:46           ` Robin Holt
2008-02-20  2:46           ` [ofa-general] " Robin Holt
2008-02-27 22:50     ` Christoph Lameter
2008-02-27 22:50       ` Christoph Lameter
2008-02-27 22:50       ` [ofa-general] " Christoph Lameter
2008-02-19 22:59   ` Nick Piggin
2008-02-19 22:59     ` Nick Piggin
2008-02-19 22:59     ` [ofa-general] " Nick Piggin
2008-02-20  0:46     ` Andrea Arcangeli
2008-02-20  0:46       ` Andrea Arcangeli
2008-02-20  0:46       ` Andrea Arcangeli
2008-02-27 22:55     ` Christoph Lameter
2008-02-27 22:55       ` Christoph Lameter
2008-02-27 22:55       ` Christoph Lameter
2008-02-19 23:11   ` Nick Piggin
2008-02-19 23:11     ` Nick Piggin
2008-02-19 23:11     ` Nick Piggin
2008-02-19 23:40     ` Jack Steiner
2008-02-19 23:40       ` Jack Steiner
2008-02-19 23:40       ` Jack Steiner
2008-02-21  4:42       ` Nick Piggin
2008-02-21  4:42         ` Nick Piggin
2008-02-21  4:42         ` [ofa-general] " Nick Piggin
2008-02-22 16:31         ` Jack Steiner
2008-02-22 16:31           ` Jack Steiner
2008-02-22 16:31           ` [ofa-general] " Jack Steiner
2008-02-20  1:09     ` Andrea Arcangeli
2008-02-20  1:09       ` Andrea Arcangeli
2008-02-20  1:09       ` [ofa-general] " Andrea Arcangeli
2008-02-20 10:39       ` [PATCH] mmu notifiers #v6 Andrea Arcangeli
2008-02-20 10:39         ` Andrea Arcangeli
2008-02-20 10:39         ` Andrea Arcangeli
2008-02-20 10:45         ` [PATCH] KVM swapping (+ seqlock fix) with " Andrea Arcangeli
2008-02-20 10:45           ` Andrea Arcangeli
2008-02-20 10:45           ` [ofa-general] " Andrea Arcangeli
2008-02-27 22:06           ` [PATCH] KVM swapping with mmu notifiers #v7 Andrea Arcangeli
2008-02-27 22:06             ` Andrea Arcangeli
2008-02-27 22:06             ` [ofa-general] " Andrea Arcangeli
2008-02-28  8:42             ` izik eidus
2008-02-28  8:42               ` izik eidus
2008-02-28  8:42               ` [ofa-general] " izik eidus
2008-02-20 11:33         ` [PATCH] mmu notifiers #v6 Robin Holt
2008-02-20 11:33           ` Robin Holt
2008-02-20 11:33           ` [ofa-general] " Robin Holt
2008-02-20 12:03           ` Andrea Arcangeli
2008-02-20 12:03             ` Andrea Arcangeli
2008-02-20 12:03             ` [ofa-general] " Andrea Arcangeli
2008-02-20 12:24             ` Robin Holt
2008-02-20 12:24               ` Robin Holt
2008-02-20 12:24               ` [ofa-general] " Robin Holt
2008-02-20 12:32               ` Andrea Arcangeli
2008-02-20 12:32                 ` Andrea Arcangeli
2008-02-20 12:32                 ` Andrea Arcangeli
2008-02-20 13:15                 ` Robin Holt
2008-02-20 13:15                   ` Robin Holt
2008-02-20 13:15                   ` Robin Holt
2008-02-21  5:02             ` Nick Piggin
2008-02-21  5:02               ` Nick Piggin
2008-02-21  5:02               ` [ofa-general] " Nick Piggin
2008-02-20 14:41         ` Robin Holt
2008-02-20 14:41           ` Robin Holt
2008-02-20 14:41           ` Robin Holt
2008-02-20 15:34           ` Andrea Arcangeli
2008-02-20 15:34             ` Andrea Arcangeli
2008-02-20 15:34             ` [ofa-general] " Andrea Arcangeli
2008-02-20 21:03         ` Jack Steiner
2008-02-20 21:03           ` Jack Steiner
2008-02-20 21:03           ` [ofa-general] " Jack Steiner
2008-02-21  4:54         ` Nick Piggin
2008-02-21  4:54           ` Nick Piggin
2008-02-21  4:54           ` [ofa-general] " Nick Piggin
2008-02-21 14:40           ` Andrea Arcangeli
2008-02-21 14:40             ` Andrea Arcangeli
2008-02-21 16:10             ` Jack Steiner
2008-02-21 16:10               ` Jack Steiner
2008-02-21 16:10               ` [ofa-general] " Jack Steiner
2008-02-27 19:26               ` [PATCH] mmu notifiers #v7 Andrea Arcangeli
2008-02-27 19:26                 ` Andrea Arcangeli
2008-02-27 19:26                 ` Andrea Arcangeli
2008-02-27 20:04                 ` Peter Zijlstra
2008-02-27 20:04                   ` Peter Zijlstra
2008-02-27 22:11                 ` Andrea Arcangeli
2008-02-27 23:06                 ` Christoph Lameter
2008-02-27 23:06                   ` Christoph Lameter
2008-02-27 23:06                   ` Christoph Lameter
2008-02-27 23:43                   ` [kvm-devel] " Andrea Arcangeli
2008-02-27 23:43                     ` Andrea Arcangeli
2008-02-27 23:43                     ` [ofa-general] " Andrea Arcangeli
2008-02-28  0:08                     ` Christoph Lameter
2008-02-28  0:08                       ` Christoph Lameter
2008-02-28  0:08                       ` [ofa-general] " Christoph Lameter
2008-02-28  0:21                       ` Andrea Arcangeli
2008-02-28  0:21                         ` Andrea Arcangeli
2008-02-28  0:21                         ` [ofa-general] " Andrea Arcangeli
2008-02-28  0:24                         ` Christoph Lameter
2008-02-28  0:24                           ` Christoph Lameter
2008-02-28  0:24                           ` [ofa-general] " Christoph Lameter
2008-02-28 19:48                 ` Christoph Lameter
2008-02-28 19:48                   ` Christoph Lameter
2008-02-28 19:48                   ` [ofa-general] " Christoph Lameter
2008-02-28 21:52                   ` Andrea Arcangeli
2008-02-28 21:52                     ` Andrea Arcangeli
2008-02-28 21:52                     ` [ofa-general] " Andrea Arcangeli
2008-02-28 22:00                     ` Christoph Lameter
2008-02-28 22:00                       ` Christoph Lameter
2008-02-28 22:00                       ` [ofa-general] " Christoph Lameter
2008-02-28 23:17                     ` Jack Steiner
2008-02-28 23:17                       ` Jack Steiner
2008-02-28 23:17                       ` [ofa-general] " Jack Steiner
2008-02-29  0:24                       ` Andrea Arcangeli
2008-02-29  0:24                         ` Andrea Arcangeli
2008-02-29  0:24                         ` [ofa-general] " Andrea Arcangeli
2008-02-29  1:13                         ` Christoph Lameter
2008-02-29  1:13                           ` Christoph Lameter
2008-02-29  1:13                           ` [ofa-general] " Christoph Lameter
2008-02-28 23:05                 ` Christoph Lameter
2008-02-28 23:05                   ` Christoph Lameter
2008-02-29  0:40                   ` Andrea Arcangeli
2008-02-29  0:40                     ` Andrea Arcangeli
2008-02-29  0:40                     ` Andrea Arcangeli
2008-02-29  0:56                     ` Andrew Morton
2008-02-29  0:56                       ` Andrew Morton
2008-02-29  0:56                       ` [ofa-general] " Andrew Morton
2008-02-29  1:03                     ` Christoph Lameter
2008-02-29  1:03                       ` Christoph Lameter
2008-02-29  1:03                       ` Christoph Lameter
2008-02-29 13:09                       ` Andrea Arcangeli
2008-02-29 13:09                         ` Andrea Arcangeli
2008-02-29 13:09                         ` [ofa-general] " Andrea Arcangeli
2008-02-29 19:46                         ` Christoph Lameter
2008-02-29 19:46                           ` Christoph Lameter
2008-02-29 19:46                           ` [ofa-general] " Christoph Lameter
2008-03-02 15:54                 ` [PATCH] mmu notifiers #v8 Andrea Arcangeli
2008-03-02 15:54                   ` Andrea Arcangeli
2008-03-02 16:03                   ` [PATCH] mmu notifiers #v8 + xpmem Andrea Arcangeli
2008-03-02 16:03                     ` Andrea Arcangeli
2008-03-02 16:03                     ` [ofa-general] " Andrea Arcangeli
2008-03-02 16:23                     ` Peter Zijlstra
2008-03-02 16:23                       ` Peter Zijlstra
2008-03-02 16:23                       ` [ofa-general] " Peter Zijlstra
2008-03-03  3:29                   ` [PATCH] mmu notifiers #v8 Nick Piggin
2008-03-03  3:29                     ` Nick Piggin
2008-03-03  3:29                     ` [ofa-general] " Nick Piggin
2008-03-03 12:51                     ` Andrea Arcangeli
2008-03-03 12:51                       ` Andrea Arcangeli
2008-03-03 12:51                       ` [ofa-general] " Andrea Arcangeli
2008-03-03 13:10                       ` Nick Piggin
2008-03-03 13:10                         ` Nick Piggin
2008-03-03 13:10                         ` [ofa-general] " Nick Piggin
2008-03-03 13:24                         ` Andrea Arcangeli
2008-03-03 13:24                           ` Andrea Arcangeli
2008-03-03 13:24                           ` [ofa-general] " Andrea Arcangeli
2008-03-03 15:18                         ` Jack Steiner
2008-03-03 15:18                           ` Jack Steiner
2008-03-03 15:18                           ` [ofa-general] " Jack Steiner
2008-03-03 16:59                           ` Nick Piggin
2008-03-03 16:59                             ` Nick Piggin
2008-03-03 16:59                             ` [ofa-general] " Nick Piggin
2008-03-03 18:06                             ` Jack Steiner
2008-03-03 18:06                               ` Jack Steiner
2008-03-03 18:06                               ` Jack Steiner
2008-03-03 18:09                               ` Avi Kivity
2008-03-03 18:09                                 ` Avi Kivity
2008-03-03 18:09                                 ` [ofa-general] " Avi Kivity
2008-03-03 18:23                                 ` Jack Steiner
2008-03-03 18:23                                   ` Jack Steiner
2008-03-03 18:23                                   ` Jack Steiner
2008-03-03 18:45                               ` Nick Piggin
2008-03-03 18:45                                 ` Nick Piggin
2008-03-03 18:45                                 ` [ofa-general] " Nick Piggin
2008-03-03 19:15                                 ` Jack Steiner
2008-03-03 19:15                                   ` Jack Steiner
2008-03-03 19:15                                   ` [ofa-general] " Jack Steiner
2008-03-04 10:35                                   ` Peter Zijlstra
2008-03-04 10:35                                     ` Peter Zijlstra
2008-03-04 14:44                                     ` Jack Steiner
2008-03-04 14:44                                       ` Jack Steiner
2008-03-04 14:44                                       ` Jack Steiner
2008-03-03 19:02                             ` Christoph Lameter
2008-03-03 19:02                               ` Christoph Lameter
2008-03-03 19:02                               ` [ofa-general] " Christoph Lameter
2008-03-03 19:01                     ` Christoph Lameter
2008-03-03 19:01                       ` Christoph Lameter
2008-03-03 19:01                       ` [ofa-general] " Christoph Lameter
2008-03-03 21:15                       ` Andrea Arcangeli
2008-03-03 21:15                         ` Andrea Arcangeli
2008-03-03 21:15                         ` [ofa-general] " Andrea Arcangeli
2008-03-05  0:37                       ` Nick Piggin
2008-03-05  0:37                         ` Nick Piggin
2008-03-05  0:37                         ` [ofa-general] " Nick Piggin
2008-03-05 18:48                         ` Christoph Lameter
2008-03-05 18:48                           ` Christoph Lameter
2008-03-06  2:59                           ` Nick Piggin
2008-03-06  2:59                             ` Nick Piggin
2008-03-06  2:59                             ` [ofa-general] " Nick Piggin
2008-03-03  3:33                   ` Nick Piggin
2008-03-03  3:33                     ` Nick Piggin
2008-03-03  3:33                     ` [ofa-general] " Nick Piggin
2008-03-03 19:03                     ` Christoph Lameter
2008-03-03 19:03                       ` Christoph Lameter
2008-03-03 19:03                       ` [ofa-general] " Christoph Lameter
2008-03-03  3:34                   ` Nick Piggin
2008-03-03  3:34                     ` Nick Piggin
2008-03-03  3:34                     ` [ofa-general] " Nick Piggin
2008-03-03 19:04                     ` Christoph Lameter
2008-03-03 19:04                       ` Christoph Lameter
2008-03-03 19:04                       ` [ofa-general] " Christoph Lameter
2008-03-03  3:39                   ` Nick Piggin
2008-03-03  3:39                     ` Nick Piggin
2008-03-03  3:39                     ` [ofa-general] " Nick Piggin
2008-03-03 21:37                   ` [PATCH] mmu notifiers #v9 Andrea Arcangeli
2008-03-03 21:37                     ` Andrea Arcangeli
2008-03-03 21:37                     ` [ofa-general] " Andrea Arcangeli
2008-03-03 22:05                     ` [PATCH] KVM swapping with " Andrea Arcangeli
2008-03-03 22:05                       ` Andrea Arcangeli
2008-03-03 22:05                       ` [ofa-general] " Andrea Arcangeli
2008-03-04  0:44                       ` izik eidus
2008-03-04  0:44                         ` izik eidus
2008-03-04  0:44                         ` [ofa-general] " izik eidus
2008-03-04  7:31                         ` [RFC] Notifier for Externally Mapped Memory (EMM) Christoph Lameter
2008-03-04  7:31                           ` Christoph Lameter
2008-03-04  7:31                           ` Christoph Lameter
2008-03-04  7:34                           ` [Early draft] Conversion of i_mmap_lock to semaphore Christoph Lameter
2008-03-04  7:34                             ` Christoph Lameter
2008-03-04  7:34                             ` Christoph Lameter
2008-03-04 13:30                           ` [RFC] Notifier for Externally Mapped Memory (EMM) Andrea Arcangeli
2008-03-04 13:30                             ` Andrea Arcangeli
2008-03-04 13:30                             ` [ofa-general] " Andrea Arcangeli
2008-03-04 19:00                             ` Christoph Lameter
2008-03-04 19:00                               ` Christoph Lameter
2008-03-04 19:00                               ` [ofa-general] " Christoph Lameter
2008-03-04 22:20                               ` Andrea Arcangeli
2008-03-04 22:20                                 ` Andrea Arcangeli
2008-03-04 22:20                                 ` [ofa-general] " Andrea Arcangeli
2008-03-04 22:35                                 ` Christoph Lameter
2008-03-04 22:35                                   ` Christoph Lameter
2008-03-04 22:35                                   ` Christoph Lameter
2008-03-04 22:42                                   ` Peter Zijlstra
2008-03-04 22:42                                     ` Peter Zijlstra
2008-03-04 23:14                                     ` Christoph Lameter
2008-03-04 23:14                                       ` Christoph Lameter
2008-03-04 23:14                                       ` Christoph Lameter
2008-03-04 23:25                                       ` Peter Zijlstra
2008-03-04 23:25                                         ` Peter Zijlstra
2008-03-04 23:30                                         ` Peter Zijlstra
2008-03-04 23:30                                           ` Peter Zijlstra
2008-03-04 23:30                                           ` Peter Zijlstra
2008-03-05  5:09                                     ` Avi Kivity
2008-03-05  5:09                                       ` Avi Kivity
2008-03-05  5:09                                       ` [ofa-general] " Avi Kivity
2008-03-05  9:47                                       ` Robin Holt
2008-03-05  9:47                                         ` Robin Holt
2008-03-05  9:47                                         ` Robin Holt
2008-03-05  9:53                                         ` Avi Kivity
2008-03-05  9:53                                           ` Avi Kivity
2008-03-05  9:53                                           ` [ofa-general] " Avi Kivity
2008-03-05 10:02                                         ` [kvm-devel] " Dor Laor
2008-03-05 10:02                                           ` Dor Laor
2008-03-05 10:02                                           ` [ofa-general] " Dor Laor
2008-03-07 15:17                                   ` [PATCH] 2/4 move all invalidate_page outside of PT lock (#v9 was 1/4) Andrea Arcangeli
2008-03-07 15:17                                     ` Andrea Arcangeli
2008-03-07 15:17                                     ` [ofa-general] " Andrea Arcangeli
2008-03-07 15:23                                     ` [PATCH] 3/4 combine RCU with seqlock to allow mmu notifier methods to sleep " Andrea Arcangeli
2008-03-07 15:23                                       ` Andrea Arcangeli
2008-03-07 15:23                                       ` [ofa-general] " Andrea Arcangeli
2008-03-07 15:52                                       ` [PATCH] 4/4 i_mmap_lock spinlock2rwsem " Andrea Arcangeli
2008-03-07 15:52                                         ` Andrea Arcangeli
2008-03-07 15:52                                         ` [ofa-general] " Andrea Arcangeli
2008-03-07 20:03                                         ` Christoph Lameter
2008-03-07 20:03                                           ` Christoph Lameter
2008-03-07 20:03                                           ` Christoph Lameter
2008-03-19 21:27                                         ` Christoph Lameter
2008-03-19 21:27                                           ` Christoph Lameter
2008-03-19 21:27                                           ` Christoph Lameter
2008-03-07 16:52                                       ` [PATCH] 3/4 combine RCU with seqlock to allow mmu notifier methods to sleep " Peter Zijlstra
2008-03-07 16:52                                         ` Peter Zijlstra
2008-03-07 17:50                                         ` Andrea Arcangeli
2008-03-07 17:50                                           ` Andrea Arcangeli
2008-03-07 17:50                                           ` [ofa-general] " Andrea Arcangeli
2008-03-07 18:01                                           ` Peter Zijlstra
2008-03-07 18:01                                             ` Peter Zijlstra
2008-03-07 18:45                                             ` Andrea Arcangeli
2008-03-07 18:45                                               ` Andrea Arcangeli
2008-03-07 18:45                                               ` Andrea Arcangeli
2008-03-07 19:47                                               ` Andrea Arcangeli [this message]
2008-03-07 19:47                                                 ` Andrea Arcangeli
2008-03-07 19:47                                                 ` [ofa-general] " Andrea Arcangeli
2008-03-07 20:15                                                 ` Christoph Lameter
2008-03-07 20:15                                                   ` Christoph Lameter
2008-03-07 20:15                                                   ` Christoph Lameter
2008-03-07 20:12                                               ` Christoph Lameter
2008-03-07 20:12                                                 ` Christoph Lameter
2008-03-07 20:12                                                 ` [ofa-general] " Christoph Lameter
2008-03-07 20:10                                           ` Christoph Lameter
2008-03-07 20:10                                             ` Christoph Lameter
2008-03-07 20:10                                             ` [ofa-general] " Christoph Lameter
2008-03-07 20:00                                       ` Christoph Lameter
2008-03-07 20:00                                         ` Christoph Lameter
2008-03-07 20:00                                         ` [ofa-general] " Christoph Lameter
2008-03-07 19:54                                     ` [PATCH] 2/4 move all invalidate_page outside of PT lock " Christoph Lameter
2008-03-07 19:54                                       ` Christoph Lameter
2008-03-07 19:54                                       ` Christoph Lameter
2008-03-04 13:21                         ` [PATCH] KVM swapping with mmu notifiers #v9 Andrea Arcangeli
2008-03-04 13:21                           ` Andrea Arcangeli
2008-03-04 13:21                           ` Andrea Arcangeli
2008-02-21  4:47       ` [patch] my mmu notifiers Nick Piggin
2008-02-21  4:47         ` Nick Piggin
2008-02-21  4:47         ` [ofa-general] " Nick Piggin
2008-02-20  2:49     ` Robin Holt
2008-02-20  2:49       ` Robin Holt
2008-02-20  2:49       ` Robin Holt
2008-02-27 22:56     ` Christoph Lameter
2008-02-27 22:56       ` Christoph Lameter
2008-02-27 22:56       ` Christoph Lameter

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=20080307194728.GP24114@v2.random \
    --to=andrea@qumranet.com \
    --cc=a.p.zijlstra@chello.nl \
    --cc=akpm@linux-foundation.org \
    --cc=avi@qumranet.com \
    --cc=clameter@sgi.com \
    --cc=daniel.blueman@quadrics.com \
    --cc=general@lists.openfabrics.org \
    --cc=holt@sgi.com \
    --cc=kanojsarcar@yahoo.com \
    --cc=kvm-devel@lists.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=npiggin@suse.de \
    --cc=rdreier@cisco.com \
    --cc=steiner@sgi.com \
    --cc=swise@opengridcomputing.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.