aboutsummaryrefslogtreecommitdiffstats
path: root/fs/inode.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2010-10-24 13:40:24 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2010-10-25 21:26:15 -0400
commitd895a1c96af8c2a0f6a5e0119695a7c6b92df8db (patch)
tree6c6c72f5a071eb3c1c31b9188e8237d64001b2eb /fs/inode.c
parent7ccf19a8042e343f8159f8a5fdd6a9422aa90c78 (diff)
fs: do not drop inode_lock in dispose_list
Despite the comment above it we can not safely drop the lock here. invalidate_list is called from many other places that just umount. Also switch to proper list macros now that we never drop the lock. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/inode.c')
-rw-r--r--fs/inode.c20
1 files changed, 2 insertions, 18 deletions
diff --git a/fs/inode.c b/fs/inode.c
index 09e2d7a5f1d2..1bf2be41257a 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -482,26 +482,10 @@ static void dispose_list(struct list_head *head)
482 */ 482 */
483static int invalidate_list(struct list_head *head, struct list_head *dispose) 483static int invalidate_list(struct list_head *head, struct list_head *dispose)
484{ 484{
485 struct list_head *next; 485 struct inode *inode, *next;
486 int busy = 0; 486 int busy = 0;
487 487
488 next = head->next; 488 list_for_each_entry_safe(inode, next, head, i_sb_list) {
489 for (;;) {
490 struct list_head *tmp = next;
491 struct inode *inode;
492
493 /*
494 * We can reschedule here without worrying about the list's
495 * consistency because the per-sb list of inodes must not
496 * change during umount anymore, and because iprune_sem keeps
497 * shrink_icache_memory() away.
498 */
499 cond_resched_lock(&inode_lock);
500
501 next = next->next;
502 if (tmp == head)
503 break;
504 inode = list_entry(tmp, struct inode, i_sb_list);
505 if (inode->i_state & I_NEW) 489 if (inode->i_state & I_NEW)
506 continue; 490 continue;
507 if (atomic_read(&inode->i_count)) { 491 if (atomic_read(&inode->i_count)) {