Re: [PATCH] f2fs: use list_for_each rather than list_for_each_safe, in remove_orphan_inode()

2013-07-23 Thread Nikola Pajkovsky
Gu Zheng writes: > On 07/22/2013 11:36 PM, Nikola Pajkovsky wrote: > >> Gu Zheng writes: >> >>> As we remove the target single node, so list_for_each is enought, in order >>> to >>> clean up, we use list_for_each_entry instead. >>> >>> Signed-off-by: Gu Zheng >>> --- >>>

Re: [PATCH] f2fs: use list_for_each rather than list_for_each_safe, in remove_orphan_inode()

2013-07-23 Thread Nikola Pajkovsky
Gu Zheng guz.f...@cn.fujitsu.com writes: On 07/22/2013 11:36 PM, Nikola Pajkovsky wrote: Gu Zheng guz.f...@cn.fujitsu.com writes: As we remove the target single node, so list_for_each is enought, in order to clean up, we use list_for_each_entry instead. Signed-off-by: Gu Zheng

Re: [PATCH] f2fs: use list_for_each rather than list_for_each_safe, in remove_orphan_inode()

2013-07-22 Thread Gu Zheng
On 07/22/2013 11:36 PM, Nikola Pajkovsky wrote: > Gu Zheng writes: > >> As we remove the target single node, so list_for_each is enought, in order to >> clean up, we use list_for_each_entry instead. >> >> Signed-off-by: Gu Zheng >> --- >> fs/f2fs/checkpoint.c |5 ++--- >> 1 files changed,

Re: [PATCH] f2fs: use list_for_each rather than list_for_each_safe, in remove_orphan_inode()

2013-07-22 Thread Nikola Pajkovsky
Gu Zheng writes: > As we remove the target single node, so list_for_each is enought, in order to > clean up, we use list_for_each_entry instead. > > Signed-off-by: Gu Zheng > --- > fs/f2fs/checkpoint.c |5 ++--- > 1 files changed, 2 insertions(+), 3 deletions(-) > > diff --git

Re: [PATCH] f2fs: use list_for_each rather than list_for_each_safe, in remove_orphan_inode()

2013-07-22 Thread Nikola Pajkovsky
Gu Zheng guz.f...@cn.fujitsu.com writes: As we remove the target single node, so list_for_each is enought, in order to clean up, we use list_for_each_entry instead. Signed-off-by: Gu Zheng guz.f...@cn.fujitsu.com --- fs/f2fs/checkpoint.c |5 ++--- 1 files changed, 2 insertions(+), 3

Re: [PATCH] f2fs: use list_for_each rather than list_for_each_safe, in remove_orphan_inode()

2013-07-22 Thread Gu Zheng
On 07/22/2013 11:36 PM, Nikola Pajkovsky wrote: Gu Zheng guz.f...@cn.fujitsu.com writes: As we remove the target single node, so list_for_each is enought, in order to clean up, we use list_for_each_entry instead. Signed-off-by: Gu Zheng guz.f...@cn.fujitsu.com --- fs/f2fs/checkpoint.c |

[PATCH] f2fs: use list_for_each rather than list_for_each_safe, in remove_orphan_inode()

2013-07-19 Thread Gu Zheng
As we remove the target single node, so list_for_each is enought, in order to clean up, we use list_for_each_entry instead. Signed-off-by: Gu Zheng --- fs/f2fs/checkpoint.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c

[PATCH] f2fs: use list_for_each rather than list_for_each_safe, in remove_orphan_inode()

2013-07-19 Thread Gu Zheng
As we remove the target single node, so list_for_each is enought, in order to clean up, we use list_for_each_entry instead. Signed-off-by: Gu Zheng guz.f...@cn.fujitsu.com --- fs/f2fs/checkpoint.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/f2fs/checkpoint.c