The patch titled fs/super.c: use list_for_each_entry() instead of list_for_each() has been removed from the -mm tree. Its filename was fs-superc-use-list_for_each_entry-instead-of-list_for_each.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fs/super.c: use list_for_each_entry() instead of list_for_each() From: Matthias Kaehlcke <matthias.kaehlcke@xxxxxxxxx> fs/super.c: use list_for_each_entry() instead of list_for_each() in sget() [akpm@xxxxxxxxxxxxxxxxxxxx: clean up some crap while we're there] Signed-off-by: Matthias Kaehlcke <matthias.kaehlcke@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/super.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff -puN fs/super.c~fs-superc-use-list_for_each_entry-instead-of-list_for_each fs/super.c --- a/fs/super.c~fs-superc-use-list_for_each_entry-instead-of-list_for_each +++ a/fs/super.c @@ -332,21 +332,21 @@ struct super_block *sget(struct file_sys void *data) { struct super_block *s = NULL; - struct list_head *p; + struct super_block *old; int err; retry: spin_lock(&sb_lock); - if (test) list_for_each(p, &type->fs_supers) { - struct super_block *old; - old = list_entry(p, struct super_block, s_instances); - if (!test(old, data)) - continue; - if (!grab_super(old)) - goto retry; - if (s) - destroy_super(s); - return old; + if (test) { + list_for_each_entry(old, &type->fs_supers, s_instances) { + if (!test(old, data)) + continue; + if (!grab_super(old)) + goto retry; + if (s) + destroy_super(s); + return old; + } } if (!s) { spin_unlock(&sb_lock); _ Patches currently in -mm which might be from matthias.kaehlcke@xxxxxxxxx are origin.patch generic-ac97-mixer-modem-oss-use-list_for_each_entry.patch ftdi-elan-driver-convert-ftdi-u132_lock-to-mutex.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html