From: janitor@sternwelten.at
To: akpm@osdl.org
Cc: linux-kernel@vger.kernel.org, janitor@sternwelten.at, domen@coderock.org
Subject: [patch 8/9] list_for_each_entry: fs-dquot.c
Date: Sat, 20 Nov 2004 03:32:04 +0100 [thread overview]
Message-ID: <E1CVL2i-0000yp-L5@sputnik> (raw)
Make code more readable with list_for_each_entry_safe.
(Didn't compile before, doesn't compile now)
Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: Maximilian Attems <janitor@sternwelten.at>
---
linux-2.6.10-rc2-bk4-max/fs/dquot.c | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)
diff -puN fs/dquot.c~list-for-each-entry-safe-fs_dquot fs/dquot.c
--- linux-2.6.10-rc2-bk4/fs/dquot.c~list-for-each-entry-safe-fs_dquot 2004-11-19 17:15:07.000000000 +0100
+++ linux-2.6.10-rc2-bk4-max/fs/dquot.c 2004-11-19 17:15:07.000000000 +0100
@@ -406,13 +406,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)
_
reply other threads:[~2004-11-20 4:34 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=E1CVL2i-0000yp-L5@sputnik \
--to=janitor@sternwelten.at \
--cc=akpm@osdl.org \
--cc=domen@coderock.org \
--cc=linux-kernel@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox