mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	highmem: round down the address passed to kunmap_flush_on_unmap()
We already round down the address in kunmap_local_indexed() which is the
other implementation of __kunmap_local().  The only implementation of
kunmap_flush_on_unmap() is PA-RISC which is expecting a page-aligned
address.  This may be causing PA-RISC to be flushing the wrong addresses
currently.
Link: https://lkml.kernel.org/r/20230126200727.1680362-1-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Fixes: 298fa1ad55 ("highmem: Provide generic variant of kmap_atomic*")
Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Cc: "Fabio M. De Francesco" <fmdefrancesco@gmail.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Helge Deller <deller@gmx.de>
Cc: Alexander Potapenko <glider@google.com>
Cc: Andrey Konovalov <andreyknvl@gmail.com>
Cc: Bagas Sanjaya <bagasdotme@gmail.com>
Cc: David Sterba <dsterba@suse.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: Tony Luck <tony.luck@intel.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
			
			
This commit is contained in:
		
							parent
							
								
									73bdf65ea7
								
							
						
					
					
						commit
						88d7b12068
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -200,7 +200,7 @@ static inline void *kmap_local_pfn(unsigned long pfn)
 | 
				
			||||||
static inline void __kunmap_local(const void *addr)
 | 
					static inline void __kunmap_local(const void *addr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
#ifdef ARCH_HAS_FLUSH_ON_KUNMAP
 | 
					#ifdef ARCH_HAS_FLUSH_ON_KUNMAP
 | 
				
			||||||
	kunmap_flush_on_unmap(addr);
 | 
						kunmap_flush_on_unmap(PTR_ALIGN_DOWN(addr, PAGE_SIZE));
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -227,7 +227,7 @@ static inline void *kmap_atomic_pfn(unsigned long pfn)
 | 
				
			||||||
static inline void __kunmap_atomic(const void *addr)
 | 
					static inline void __kunmap_atomic(const void *addr)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
#ifdef ARCH_HAS_FLUSH_ON_KUNMAP
 | 
					#ifdef ARCH_HAS_FLUSH_ON_KUNMAP
 | 
				
			||||||
	kunmap_flush_on_unmap(addr);
 | 
						kunmap_flush_on_unmap(PTR_ALIGN_DOWN(addr, PAGE_SIZE));
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
	pagefault_enable();
 | 
						pagefault_enable();
 | 
				
			||||||
	if (IS_ENABLED(CONFIG_PREEMPT_RT))
 | 
						if (IS_ENABLED(CONFIG_PREEMPT_RT))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue