aboutsummaryrefslogtreecommitdiffstats
path: root/mm/swapfile.c
diff options
context:
space:
mode:
authorMinchan Kim <minchan@kernel.org>2013-04-30 18:26:54 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-04-30 20:04:00 -0400
commit4f89849da22db9d0edb378acea65e23fcd546173 (patch)
tree8af95a340c8d8605ad8f492ef0f6f98f2a4e4523 /mm/swapfile.c
parentf066ea230a65f939afc354beae62716ab5f0e645 (diff)
frontswap: get rid of swap_lock dependency
Frontswap initialization routine depends on swap_lock, which want to be atomic about frontswap's first appearance. IOW, frontswap is not present and will fail all calls OR frontswap is fully functional but if new swap_info_struct isn't registered by enable_swap_info, swap subsystem doesn't start I/O so there is no race between init procedure and page I/O working on frontswap. So let's remove unnecessary swap_lock dependency. Cc: Dan Magenheimer <dan.magenheimer@oracle.com> Signed-off-by: Minchan Kim <minchan@kernel.org> [v1: Rebased on my branch, reworked to work with backends loading late] [v2: Added a check for !map] [v3: Made the invalidate path follow the init path] [v4: Address comments by Wanpeng Li <liwanp@linux.vnet.ibm.com>] Signed-off-by: Konrad Rzeszutek Wilk <konrad@darnok.org> Signed-off-by: Bob Liu <lliubbo@gmail.com> Cc: Wanpeng Li <liwanp@linux.vnet.ibm.com> Cc: Andor Daam <andor.daam@googlemail.com> Cc: Florian Schmaus <fschmaus@gmail.com> Cc: Stefan Hengelein <ilendir@googlemail.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.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