Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

frv: Use generic init_task

Same code. Use the generic version. The special Makefile treatment is
pointless anyway as init_task.o contains only data which is handled by
the linker script. So no point on being treated like head text.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: David Howells <dhowells@redhat.com>
Link: http://lkml.kernel.org/r/20120503085034.546687215@linutronix.de

+3 -34
+1
arch/frv/Kconfig
··· 9 9 select GENERIC_IRQ_SHOW 10 10 select ARCH_HAVE_NMI_SAFE_CMPXCHG 11 11 select GENERIC_CPU_DEVICES 12 + select HAVE_GENERIC_INIT_TASK 12 13 13 14 config ZONE_DMA 14 15 bool
+1 -1
arch/frv/Makefile
··· 81 81 KBUILD_AFLAGS += -Wa,--gdwarf2 82 82 endif 83 83 84 - head-y := arch/frv/kernel/head.o arch/frv/kernel/init_task.o 84 + head-y := arch/frv/kernel/head.o 85 85 86 86 core-y += arch/frv/kernel/ arch/frv/mm/ 87 87 libs-y += arch/frv/lib/
+1 -1
arch/frv/kernel/Makefile
··· 5 5 heads-y := head-uc-fr401.o head-uc-fr451.o head-uc-fr555.o 6 6 heads-$(CONFIG_MMU) := head-mmu-fr451.o 7 7 8 - extra-y:= head.o init_task.o vmlinux.lds 8 + extra-y:= head.o vmlinux.lds 9 9 10 10 obj-y := $(heads-y) entry.o entry-table.o break.o switch_to.o kernel_thread.o \ 11 11 kernel_execve.o process.o traps.o ptrace.o signal.o dma.o \
-32
arch/frv/kernel/init_task.c
··· 1 - #include <linux/mm.h> 2 - #include <linux/module.h> 3 - #include <linux/sched.h> 4 - #include <linux/init.h> 5 - #include <linux/init_task.h> 6 - #include <linux/fs.h> 7 - #include <linux/mqueue.h> 8 - 9 - #include <asm/uaccess.h> 10 - #include <asm/pgtable.h> 11 - 12 - 13 - static struct signal_struct init_signals = INIT_SIGNALS(init_signals); 14 - static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand); 15 - /* 16 - * Initial thread structure. 17 - * 18 - * We need to make sure that this is THREAD_SIZE aligned due to the 19 - * way process stacks are handled. This is done by having a special 20 - * "init_task" linker map entry.. 21 - */ 22 - union thread_union init_thread_union __init_task_data = 23 - { INIT_THREAD_INFO(init_task) }; 24 - 25 - /* 26 - * Initial task structure. 27 - * 28 - * All other task structs will be allocated on slabs in fork.c 29 - */ 30 - struct task_struct init_task = INIT_TASK(init_task); 31 - 32 - EXPORT_SYMBOL(init_task);