Loading arch/um/include/asm/Kbuild +1 −0 Original line number Diff line number Diff line generic-y += bug.h cputime.h device.h emergency-restart.h futex.h hardirq.h generic-y += hw_irq.h irq_regs.h kdebug.h percpu.h sections.h topology.h xor.h generic-y += ftrace.h pci.h io.h param.h delay.h mutex.h current.h exec.h generic-y += switch_to.h arch/um/kernel/process.c +1 −5 Original line number Diff line number Diff line Loading @@ -88,11 +88,8 @@ static inline void set_current(struct task_struct *task) extern void arch_switch_to(struct task_struct *to); void *_switch_to(void *prev, void *next, void *last) void *__switch_to(struct task_struct *from, struct task_struct *to) { struct task_struct *from = prev; struct task_struct *to = next; to->thread.prev_sched = from; set_current(to); Loading @@ -111,7 +108,6 @@ void *_switch_to(void *prev, void *next, void *last) } while (current->thread.saved_task); return current->thread.prev_sched; } void interrupt_end(void) Loading arch/x86/um/asm/switch_to.hdeleted 100644 → 0 +0 −7 Original line number Diff line number Diff line #ifndef _ASM_UM_SWITCH_TO_H_ #define _ASM_UM_SWITCH_TO_H_ extern void *_switch_to(void *prev, void *next, void *last); #define switch_to(prev, next, last) prev = _switch_to(prev, next, last) #endif Loading
arch/um/include/asm/Kbuild +1 −0 Original line number Diff line number Diff line generic-y += bug.h cputime.h device.h emergency-restart.h futex.h hardirq.h generic-y += hw_irq.h irq_regs.h kdebug.h percpu.h sections.h topology.h xor.h generic-y += ftrace.h pci.h io.h param.h delay.h mutex.h current.h exec.h generic-y += switch_to.h
arch/um/kernel/process.c +1 −5 Original line number Diff line number Diff line Loading @@ -88,11 +88,8 @@ static inline void set_current(struct task_struct *task) extern void arch_switch_to(struct task_struct *to); void *_switch_to(void *prev, void *next, void *last) void *__switch_to(struct task_struct *from, struct task_struct *to) { struct task_struct *from = prev; struct task_struct *to = next; to->thread.prev_sched = from; set_current(to); Loading @@ -111,7 +108,6 @@ void *_switch_to(void *prev, void *next, void *last) } while (current->thread.saved_task); return current->thread.prev_sched; } void interrupt_end(void) Loading
arch/x86/um/asm/switch_to.hdeleted 100644 → 0 +0 −7 Original line number Diff line number Diff line #ifndef _ASM_UM_SWITCH_TO_H_ #define _ASM_UM_SWITCH_TO_H_ extern void *_switch_to(void *prev, void *next, void *last); #define switch_to(prev, next, last) prev = _switch_to(prev, next, last) #endif