提交 c33ed271 编写于 作者: D Domen Puncer 提交者: Linus Torvalds

[PATCH] list_for_each_entry: fs-dquot.c

Make code more readable with list_for_each_entry_safe.
Signed-off-by: NDomen Puncer <domen@coderock.org>
Signed-off-by: NMaximilian Attems <janitor@sternwelten.at>
Signed-off-by: NDomen Puncer <domen@coderock.org>
Acked-by: NJan Kara <jack@suse.cz>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 97998d8f
...@@ -409,13 +409,10 @@ int dquot_release(struct dquot *dquot) ...@@ -409,13 +409,10 @@ int dquot_release(struct dquot *dquot)
* for this sb+type at all. */ * for this sb+type at all. */
static void invalidate_dquots(struct super_block *sb, int type) static void invalidate_dquots(struct super_block *sb, int type)
{ {
struct dquot *dquot; struct dquot *dquot, *tmp;
struct list_head *head;
spin_lock(&dq_list_lock); spin_lock(&dq_list_lock);
for (head = inuse_list.next; head != &inuse_list;) { list_for_each_entry_safe(dquot, tmp, &inuse_list, dq_inuse) {
dquot = list_entry(head, struct dquot, dq_inuse);
head = head->next;
if (dquot->dq_sb != sb) if (dquot->dq_sb != sb)
continue; continue;
if (dquot->dq_type != type) if (dquot->dq_type != type)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册