diff options
author | Hugh Dickins <hugh@veritas.com> | 2008-02-05 01:28:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:15 -0500 |
commit | 2e0e26c76a35de8f8bec6b2b917518cfeb52888a (patch) | |
tree | 1357781bfe035c2401c65b2d0203385a47516bf5 /mm/swapfile.c | |
parent | cb5f7b9a47963d9238398cd0c2676473e3c6896d (diff) |
tmpfs: open a window in shmem_unuse_inode
There are a couple of reasons (patches follow) why it would be good to open a
window for sleep in shmem_unuse_inode, between its search for a matching swap
entry, and its handling of the entry found.
shmem_unuse_inode must then use igrab to hold the inode against deletion in
that window, and its corresponding iput might result in deletion: so it had
better unlock_page before the iput, and might as well release the page too.
Nor is there any need to hold on to shmem_swaplist_mutex once we know we'll
leave the loop. So this unwinding moves from try_to_unuse and shmem_unuse
into shmem_unuse_inode, in the case when it finds a match.
Let try_to_unuse break on error in the shmem_unuse case, as it does in the
unuse_mm case: though at this point in the series, no error to break on.
Signed-off-by: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/swapfile.c')
-rw-r--r-- | mm/swapfile.c | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c index 14bc4f28a8cc..eade24da9310 100644 --- a/mm/swapfile.c +++ b/mm/swapfile.c | |||
@@ -814,7 +814,7 @@ static int try_to_unuse(unsigned int type) | |||
814 | atomic_inc(&new_start_mm->mm_users); | 814 | atomic_inc(&new_start_mm->mm_users); |
815 | atomic_inc(&prev_mm->mm_users); | 815 | atomic_inc(&prev_mm->mm_users); |
816 | spin_lock(&mmlist_lock); | 816 | spin_lock(&mmlist_lock); |
817 | while (*swap_map > 1 && !retval && | 817 | while (*swap_map > 1 && !retval && !shmem && |
818 | (p = p->next) != &start_mm->mmlist) { | 818 | (p = p->next) != &start_mm->mmlist) { |
819 | mm = list_entry(p, struct mm_struct, mmlist); | 819 | mm = list_entry(p, struct mm_struct, mmlist); |
820 | if (!atomic_inc_not_zero(&mm->mm_users)) | 820 | if (!atomic_inc_not_zero(&mm->mm_users)) |
@@ -846,6 +846,13 @@ static int try_to_unuse(unsigned int type) | |||
846 | mmput(start_mm); | 846 | mmput(start_mm); |
847 | start_mm = new_start_mm; | 847 | start_mm = new_start_mm; |
848 | } | 848 | } |
849 | if (shmem) { | ||
850 | /* page has already been unlocked and released */ | ||
851 | if (shmem > 0) | ||
852 | continue; | ||
853 | retval = shmem; | ||
854 | break; | ||
855 | } | ||
849 | if (retval) { | 856 | if (retval) { |
850 | unlock_page(page); | 857 | unlock_page(page); |
851 | page_cache_release(page); | 858 | page_cache_release(page); |
@@ -884,12 +891,6 @@ static int try_to_unuse(unsigned int type) | |||
884 | * read from disk into another page. Splitting into two | 891 | * read from disk into another page. Splitting into two |
885 | * pages would be incorrect if swap supported "shared | 892 | * pages would be incorrect if swap supported "shared |
886 | * private" pages, but they are handled by tmpfs files. | 893 | * private" pages, but they are handled by tmpfs files. |
887 | * | ||
888 | * Note shmem_unuse already deleted a swappage from | ||
889 | * the swap cache, unless the move to filepage failed: | ||
890 | * in which case it left swappage in cache, lowered its | ||
891 | * swap count to pass quickly through the loops above, | ||
892 | * and now we must reincrement count to try again later. | ||
893 | */ | 894 | */ |
894 | if ((*swap_map > 1) && PageDirty(page) && PageSwapCache(page)) { | 895 | if ((*swap_map > 1) && PageDirty(page) && PageSwapCache(page)) { |
895 | struct writeback_control wbc = { | 896 | struct writeback_control wbc = { |
@@ -900,12 +901,8 @@ static int try_to_unuse(unsigned int type) | |||
900 | lock_page(page); | 901 | lock_page(page); |
901 | wait_on_page_writeback(page); | 902 | wait_on_page_writeback(page); |
902 | } | 903 | } |
903 | if (PageSwapCache(page)) { | 904 | if (PageSwapCache(page)) |
904 | if (shmem) | 905 | delete_from_swap_cache(page); |
905 | swap_duplicate(entry); | ||
906 | else | ||
907 | delete_from_swap_cache(page); | ||
908 | } | ||
909 | 906 | ||
910 | /* | 907 | /* |
911 | * So we could skip searching mms once swap count went | 908 | * So we could skip searching mms once swap count went |