UML needs it's own probe_kernel_read() to handle kernel mode faults correctly. The implementation uses mincore() on the host side to detect whether a page is owned by the UML kernel process. This fixes also a possible crash when sysrq-t is used. Starting with 3.10 sysrq-t calls probe_kernel_read() to read details from the kernel workers. As kernel worker are completely async pointers may turn NULL while reading them. Cc: <stian@nixia.no> Cc: <tj@kernel.org> Cc: <stable@vger.kernel.org> # 3.10.x Signed-off-by: Richard Weinberger <richard@nod.at>
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			1.4 KiB
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			1.4 KiB
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux,intel}.com)
 | 
						|
# Licensed under the GPL
 | 
						|
#
 | 
						|
 | 
						|
CPPFLAGS_vmlinux.lds := -DSTART=$(LDS_START)		\
 | 
						|
                        -DELF_ARCH=$(LDS_ELF_ARCH)	\
 | 
						|
                        -DELF_FORMAT=$(LDS_ELF_FORMAT)	\
 | 
						|
			$(LDS_EXTRA)
 | 
						|
extra-y := vmlinux.lds
 | 
						|
clean-files :=
 | 
						|
 | 
						|
obj-y = config.o exec.o exitcode.o irq.o ksyms.o mem.o \
 | 
						|
	physmem.o process.o ptrace.o reboot.o sigio.o \
 | 
						|
	signal.o smp.o syscall.o sysrq.o time.o tlb.o trap.o \
 | 
						|
	um_arch.o umid.o maccess.o skas/
 | 
						|
 | 
						|
obj-$(CONFIG_BLK_DEV_INITRD) += initrd.o
 | 
						|
obj-$(CONFIG_GPROF)	+= gprof_syms.o
 | 
						|
obj-$(CONFIG_GCOV)	+= gmon_syms.o
 | 
						|
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
 | 
						|
 | 
						|
USER_OBJS := config.o
 | 
						|
 | 
						|
include arch/um/scripts/Makefile.rules
 | 
						|
 | 
						|
targets := config.c config.tmp
 | 
						|
 | 
						|
# Be careful with the below Sed code - sed is pitfall-rich!
 | 
						|
# We use sed to lower build requirements, for "embedded" builders for instance.
 | 
						|
 | 
						|
$(obj)/config.tmp: $(objtree)/.config FORCE
 | 
						|
	$(call if_changed,quote1)
 | 
						|
 | 
						|
quiet_cmd_quote1 = QUOTE   $@
 | 
						|
      cmd_quote1 = sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n",/' \
 | 
						|
		   $< > $@
 | 
						|
 | 
						|
$(obj)/config.c: $(src)/config.c.in $(obj)/config.tmp FORCE
 | 
						|
	$(call if_changed,quote2)
 | 
						|
 | 
						|
quiet_cmd_quote2 = QUOTE   $@
 | 
						|
      cmd_quote2 = sed -e '/CONFIG/{'          \
 | 
						|
		  -e 's/"CONFIG"//'            \
 | 
						|
		  -e 'r $(obj)/config.tmp'     \
 | 
						|
		  -e 'a \'                     \
 | 
						|
		  -e '""'                      \
 | 
						|
		  -e '}'                       \
 | 
						|
		  $< > $@
 |