Re: [PATCH 1/3] raid: replace list_for_each_continue_rcu with new interface

2012-09-11 Thread Paul E. McKenney
On Tue, Sep 11, 2012 at 02:27:42PM +0800, Michael Wang wrote: > On 09/11/2012 02:21 PM, NeilBrown wrote: > > On Mon, 10 Sep 2012 16:30:11 +0800 Michael Wang > > wrote: > > > >> On 08/24/2012 08:51 AM, Michael Wang wrote: > >>> On 08/17/2012 12:33 PM, Michael Wang wrote: > From: Michael Wang

Re: [PATCH 1/3] raid: replace list_for_each_continue_rcu with new interface

2012-09-10 Thread Michael Wang
On 09/11/2012 02:21 PM, NeilBrown wrote: > On Mon, 10 Sep 2012 16:30:11 +0800 Michael Wang > wrote: > >> On 08/24/2012 08:51 AM, Michael Wang wrote: >>> On 08/17/2012 12:33 PM, Michael Wang wrote: From: Michael Wang This patch replaces list_for_each_continue_rcu() with list_f

Re: [PATCH 1/3] raid: replace list_for_each_continue_rcu with new interface

2012-09-10 Thread NeilBrown
On Mon, 10 Sep 2012 16:30:11 +0800 Michael Wang wrote: > On 08/24/2012 08:51 AM, Michael Wang wrote: > > On 08/17/2012 12:33 PM, Michael Wang wrote: > >> From: Michael Wang > >> > >> This patch replaces list_for_each_continue_rcu() with > >> list_for_each_entry_continue_rcu() to save a few lines

Re: [PATCH 1/3] raid: replace list_for_each_continue_rcu with new interface

2012-09-10 Thread Michael Wang
On 08/24/2012 08:51 AM, Michael Wang wrote: > On 08/17/2012 12:33 PM, Michael Wang wrote: >> From: Michael Wang >> >> This patch replaces list_for_each_continue_rcu() with >> list_for_each_entry_continue_rcu() to save a few lines >> of code and allow removing list_for_each_continue_rcu(). >> > >

Re: [PATCH 1/3] raid: replace list_for_each_continue_rcu with new interface

2012-08-23 Thread Michael Wang
On 08/17/2012 12:33 PM, Michael Wang wrote: > From: Michael Wang > > This patch replaces list_for_each_continue_rcu() with > list_for_each_entry_continue_rcu() to save a few lines > of code and allow removing list_for_each_continue_rcu(). > Hi, Neil Could I get some comments on this patch? Re

Re: [PATCH 1/3] raid: replace list_for_each_continue_rcu with new interface

2012-08-20 Thread Paul E. McKenney
On Fri, Aug 17, 2012 at 12:33:29PM +0800, Michael Wang wrote: > From: Michael Wang > > This patch replaces list_for_each_continue_rcu() with > list_for_each_entry_continue_rcu() to save a few lines > of code and allow removing list_for_each_continue_rcu(). > > Signed-off-by: Michael Wang Getti

[PATCH 1/3] raid: replace list_for_each_continue_rcu with new interface

2012-08-16 Thread Michael Wang
From: Michael Wang This patch replaces list_for_each_continue_rcu() with list_for_each_entry_continue_rcu() to save a few lines of code and allow removing list_for_each_continue_rcu(). Signed-off-by: Michael Wang --- drivers/md/bitmap.c |9 +++-- 1 files changed, 3 insertions(+), 6 del