aboutsummaryrefslogtreecommitdiffstats
path: root/mm/swapfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/swapfile.c')
-rw-r--r--mm/swapfile.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c
index d417efddfe74..6c340d908b27 100644
--- a/mm/swapfile.c
+++ b/mm/swapfile.c
@@ -1509,8 +1509,7 @@ static int setup_swap_extents(struct swap_info_struct *sis, sector_t *span)
1509} 1509}
1510 1510
1511static void _enable_swap_info(struct swap_info_struct *p, int prio, 1511static void _enable_swap_info(struct swap_info_struct *p, int prio,
1512 unsigned char *swap_map, 1512 unsigned char *swap_map)
1513 unsigned long *frontswap_map)
1514{ 1513{
1515 int i, prev; 1514 int i, prev;
1516 1515
@@ -1519,7 +1518,6 @@ static void _enable_swap_info(struct swap_info_struct *p, int prio,
1519 else 1518 else
1520 p->prio = --least_priority; 1519 p->prio = --least_priority;
1521 p->swap_map = swap_map; 1520 p->swap_map = swap_map;
1522 frontswap_map_set(p, frontswap_map);
1523 p->flags |= SWP_WRITEOK; 1521 p->flags |= SWP_WRITEOK;
1524 atomic_long_add(p->pages, &nr_swap_pages); 1522 atomic_long_add(p->pages, &nr_swap_pages);
1525 total_swap_pages += p->pages; 1523 total_swap_pages += p->pages;
@@ -1542,10 +1540,10 @@ static void enable_swap_info(struct swap_info_struct *p, int prio,
1542 unsigned char *swap_map, 1540 unsigned char *swap_map,
1543 unsigned long *frontswap_map) 1541 unsigned long *frontswap_map)
1544{ 1542{
1543 frontswap_init(p->type, frontswap_map);
1545 spin_lock(&swap_lock); 1544 spin_lock(&swap_lock);
1546 spin_lock(&p->lock); 1545 spin_lock(&p->lock);
1547 _enable_swap_info(p, prio, swap_map, frontswap_map); 1546 _enable_swap_info(p, prio, swap_map);
1548 frontswap_init(p->type);
1549 spin_unlock(&p->lock); 1547 spin_unlock(&p->lock);
1550 spin_unlock(&swap_lock); 1548 spin_unlock(&swap_lock);
1551} 1549}
@@ -1554,7 +1552,7 @@ static void reinsert_swap_info(struct swap_info_struct *p)
1554{ 1552{
1555 spin_lock(&swap_lock); 1553 spin_lock(&swap_lock);
1556 spin_lock(&p->lock); 1554 spin_lock(&p->lock);
1557 _enable_swap_info(p, p->prio, p->swap_map, frontswap_map_get(p)); 1555 _enable_swap_info(p, p->prio, p->swap_map);
1558 spin_unlock(&p->lock); 1556 spin_unlock(&p->lock);
1559 spin_unlock(&swap_lock); 1557 spin_unlock(&swap_lock);
1560} 1558}
@@ -1563,6 +1561,7 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
1563{ 1561{
1564 struct swap_info_struct *p = NULL; 1562 struct swap_info_struct *p = NULL;
1565 unsigned char *swap_map; 1563 unsigned char *swap_map;
1564 unsigned long *frontswap_map;
1566 struct file *swap_file, *victim; 1565 struct file *swap_file, *victim;
1567 struct address_space *mapping; 1566 struct address_space *mapping;
1568 struct inode *inode; 1567 struct inode *inode;
@@ -1662,12 +1661,14 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
1662 swap_map = p->swap_map; 1661 swap_map = p->swap_map;
1663 p->swap_map = NULL; 1662 p->swap_map = NULL;
1664 p->flags = 0; 1663 p->flags = 0;
1665 frontswap_invalidate_area(type); 1664 frontswap_map = frontswap_map_get(p);
1665 frontswap_map_set(p, NULL);
1666 spin_unlock(&p->lock); 1666 spin_unlock(&p->lock);
1667 spin_unlock(&swap_lock); 1667 spin_unlock(&swap_lock);
1668 frontswap_invalidate_area(type);
1668 mutex_unlock(&swapon_mutex); 1669 mutex_unlock(&swapon_mutex);
1669 vfree(swap_map); 1670 vfree(swap_map);
1670 vfree(frontswap_map_get(p)); 1671 vfree(frontswap_map);
1671 /* Destroy swap account informatin */ 1672 /* Destroy swap account informatin */
1672 swap_cgroup_swapoff(type); 1673 swap_cgroup_swapoff(type);
1673 1674