From: Al Viro Date: Sat, 9 Jun 2012 17:03:04 +0000 (-0400) Subject: affs: get rid of open-coded list_for_each_entry() X-Git-Tag: v3.6-rc1~18^2~166 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3084ee95f08ce353ae26c18c7627c4e9786983ca;p=platform%2Fkernel%2Flinux-3.10.git affs: get rid of open-coded list_for_each_entry() Signed-off-by: Al Viro --- diff --git a/fs/affs/amigaffs.c b/fs/affs/amigaffs.c index 52a6407..1c7fd79 100644 --- a/fs/affs/amigaffs.c +++ b/fs/affs/amigaffs.c @@ -126,18 +126,13 @@ affs_fix_dcache(struct dentry *dentry, u32 entry_ino) { struct inode *inode = dentry->d_inode; void *data = dentry->d_fsdata; - struct list_head *head, *next; spin_lock(&inode->i_lock); - head = &inode->i_dentry; - next = head->next; - while (next != head) { - dentry = list_entry(next, struct dentry, d_alias); + list_for_each_entry(dentry, &inode->i_dentry, d_alias) { if (entry_ino == (u32)(long)dentry->d_fsdata) { dentry->d_fsdata = data; break; } - next = next->next; } spin_unlock(&inode->i_lock); }