The patch titled fs/file_table.c: use list_for_each_entry() instead of list_for_each() has been removed from the -mm tree. Its filename was fs-file_tablec-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/file_table.c: use list_for_each_entry() instead of list_for_each() From: Matthias Kaehlcke <matthias.kaehlcke@xxxxxxxxx> fs/file_table.c: use list_for_each_entry() instead of list_for_each() in fs_may_remount_ro() Signed-off-by: Matthias Kaehlcke <matthias.kaehlcke@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/file_table.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff -puN fs/file_table.c~fs-file_tablec-use-list_for_each_entry-instead-of-list_for_each fs/file_table.c --- a/fs/file_table.c~fs-file_tablec-use-list_for_each_entry-instead-of-list_for_each +++ a/fs/file_table.c @@ -323,12 +323,11 @@ void file_kill(struct file *file) int fs_may_remount_ro(struct super_block *sb) { - struct list_head *p; + struct file *file; /* Check that no files are currently opened for writing. */ file_list_lock(); - list_for_each(p, &sb->s_files) { - struct file *file = list_entry(p, struct file, f_u.fu_list); + list_for_each_entry(file, &sb->s_files, f_u.fu_list) { struct inode *inode = file->f_path.dentry->d_inode; /* File with pending delete? */ _ 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