aboutsummaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorDomen Puncer <domen@coderock.org>2005-06-25 14:59:36 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-25 16:25:11 -0700
commitc33ed271263f5fb6ca5ab888b98a55ae5d138c0b (patch)
tree07b1e1603593cdf990ba7f85e8e093b9fd70cd76 /fs
parent97998d8fdb5530edd466b006423a422ea790cf23 (diff)
[PATCH] list_for_each_entry: fs-dquot.c
Make code more readable with list_for_each_entry_safe. Signed-off-by: Domen Puncer <domen@coderock.org> Signed-off-by: Maximilian Attems <janitor@sternwelten.at> Signed-off-by: Domen Puncer <domen@coderock.org> Acked-by: Jan Kara <jack@suse.cz> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/dquot.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/fs/dquot.c b/fs/dquot.c
index 37212b039a4..b9732335bcd 100644
--- a/fs/dquot.c
+++ b/fs/dquot.c
@@ -409,13 +409,10 @@ out_dqlock:
* for this sb+type at all. */
static void invalidate_dquots(struct super_block *sb, int type)
{
- struct dquot *dquot;
- struct list_head *head;
+ struct dquot *dquot, *tmp;
spin_lock(&dq_list_lock);
- for (head = inuse_list.next; head != &inuse_list;) {
- dquot = list_entry(head, struct dquot, dq_inuse);
- head = head->next;
+ list_for_each_entry_safe(dquot, tmp, &inuse_list, dq_inuse) {
if (dquot->dq_sb != sb)
continue;
if (dquot->dq_type != type)