mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 16:54:21 +00:00 
			
		
		
		
	frontswap: enable call to invalidate area on swapoff
During swapoff the frontswap_map was NULL-ified before calling frontswap_invalidate_area(). However the frontswap_invalidate_area() exits early if frontswap_map is NULL. Invalidate was never called during swapoff. This patch moves frontswap_map_set() in swapoff just after calling frontswap_invalidate_area() so outside of locks (swap_lock and swap_info_struct->lock). This shouldn't be a problem as during swapon the frontswap_map_set() is called also outside of any locks. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Reviewed-by: Seth Jennings <sjenning@linux.vnet.ibm.com> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Cc: Shaohua Li <shli@fusionio.com> Cc: Minchan Kim <minchan@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									2de1a7e40a
								
							
						
					
					
						commit
						58e97ba6b1
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -1924,10 +1924,10 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile) | |||
| 	p->cluster_info = NULL; | ||||
| 	p->flags = 0; | ||||
| 	frontswap_map = frontswap_map_get(p); | ||||
| 	frontswap_map_set(p, NULL); | ||||
| 	spin_unlock(&p->lock); | ||||
| 	spin_unlock(&swap_lock); | ||||
| 	frontswap_invalidate_area(type); | ||||
| 	frontswap_map_set(p, NULL); | ||||
| 	mutex_unlock(&swapon_mutex); | ||||
| 	free_percpu(p->percpu_cluster); | ||||
| 	p->percpu_cluster = NULL; | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Krzysztof Kozlowski
						Krzysztof Kozlowski