x86/mm: Don't leak kernel addresses
Since commit:ad67b74d24("printk: hash addresses printed with %p") at boot "____ptrval____" is printed instead of actual addresses: found SMP MP-table at [mem 0x000f5cc0-0x000f5ccf] mapped at [(____ptrval____)] Instead of changing the print to "%px", and leaking a kernel addresses, just remove the print completely, like in:071929dbdd("arm64: Stop printing the virtual memory layout"). Signed-off-by: Matteo Croce <mcroce@redhat.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
		
				
					committed by
					
						
						Ingo Molnar
					
				
			
			
				
	
			
			
			
						parent
						
							9e98c678c2
						
					
				
				
					commit
					a315172443
				
			@@ -598,8 +598,8 @@ static int __init smp_scan_config(unsigned long base, unsigned long length)
 | 
				
			|||||||
			mpf_base = base;
 | 
								mpf_base = base;
 | 
				
			||||||
			mpf_found = true;
 | 
								mpf_found = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			pr_info("found SMP MP-table at [mem %#010lx-%#010lx] mapped at [%p]\n",
 | 
								pr_info("found SMP MP-table at [mem %#010lx-%#010lx]\n",
 | 
				
			||||||
				base, base + sizeof(*mpf) - 1, mpf);
 | 
									base, base + sizeof(*mpf) - 1);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			memblock_reserve(base, sizeof(*mpf));
 | 
								memblock_reserve(base, sizeof(*mpf));
 | 
				
			||||||
			if (mpf->physptr)
 | 
								if (mpf->physptr)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user