aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorCesar Eduardo Barros <cesarb@cesarb.net>2011-03-22 19:33:36 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-03-22 20:44:08 -0400
commitc6a2b64ba5d09a1e281e85988ffd650655fa0f39 (patch)
tree5d3787b45e2e4ad7377c47cd601a1fcb1fec0bde /mm
parentc69dbfb84e88503468b6c481aecdb48d76ad5bc6 (diff)
sys_swapoff: change order to match sys_swapon
The block in sys_swapon which does the final adjustments to the swap_info_struct and to swap_list is the same as the block which re-inserts it again at sys_swapoff on failure of try_to_unuse(), except for the order of the operations within the lock. Since the order should not matter, arbitrarily change sys_swapoff to match sys_swapon, in preparation to making both share the same code. Signed-off-by: Cesar Eduardo Barros <cesarb@cesarb.net> Tested-by: Eric B Munson <emunson@mgebm.net> Acked-by: Eric B Munson <emunson@mgebm.net> Reviewed-by: Pekka Enberg <penberg@kernel.org> Reviewed-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Hugh Dickins <hughd@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/swapfile.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c
index df3dc7a3c2e2..465d972f4c7c 100644
--- a/mm/swapfile.c
+++ b/mm/swapfile.c
@@ -1625,6 +1625,10 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
1625 spin_lock(&swap_lock); 1625 spin_lock(&swap_lock);
1626 if (p->prio < 0) 1626 if (p->prio < 0)
1627 p->prio = --least_priority; 1627 p->prio = --least_priority;
1628 p->flags |= SWP_WRITEOK;
1629 nr_swap_pages += p->pages;
1630 total_swap_pages += p->pages;
1631
1628 prev = -1; 1632 prev = -1;
1629 for (i = swap_list.head; i >= 0; i = swap_info[i]->next) { 1633 for (i = swap_list.head; i >= 0; i = swap_info[i]->next) {
1630 if (p->prio >= swap_info[i]->prio) 1634 if (p->prio >= swap_info[i]->prio)
@@ -1636,9 +1640,6 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
1636 swap_list.head = swap_list.next = type; 1640 swap_list.head = swap_list.next = type;
1637 else 1641 else
1638 swap_info[prev]->next = type; 1642 swap_info[prev]->next = type;
1639 nr_swap_pages += p->pages;
1640 total_swap_pages += p->pages;
1641 p->flags |= SWP_WRITEOK;
1642 spin_unlock(&swap_lock); 1643 spin_unlock(&swap_lock);
1643 goto out_dput; 1644 goto out_dput;
1644 } 1645 }