mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	f2fs: fix conflict on page->private usage
This patch fixes confilct on page->private value between f2fs_trace_pid and atomic page. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
		
							parent
							
								
									17c19120eb
								
							
						
					
					
						commit
						d48dfc2073
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -183,7 +183,7 @@ struct segment_allocation {
 | 
			
		|||
 * this value is set in page as a private data which indicate that
 | 
			
		||||
 * the page is atomically written, and it is in inmem_pages list.
 | 
			
		||||
 */
 | 
			
		||||
#define ATOMIC_WRITTEN_PAGE		0x0000ffff
 | 
			
		||||
#define ATOMIC_WRITTEN_PAGE		((unsigned long)-1)
 | 
			
		||||
 | 
			
		||||
#define IS_ATOMIC_WRITTEN_PAGE(page)			\
 | 
			
		||||
		(page_private(page) == (unsigned long)ATOMIC_WRITTEN_PAGE)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue