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

sched/core: Remove unused prefetch_stack()

prefetch_stack() is defined by IA64, but not actually used anywhere anymore.

Remove it.

Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>

-31
-2
arch/ia64/include/asm/processor.h
··· 19 19 #include <asm/ptrace.h> 20 20 #include <asm/ustack.h> 21 21 22 - #define ARCH_HAS_PREFETCH_SWITCH_STACK 23 - 24 22 #define IA64_NUM_PHYS_STACK_REG 96 25 23 #define IA64_NUM_DBG_REGS 8 26 24
-23
arch/ia64/kernel/entry.S
··· 455 455 br.cond.sptk.many b7 456 456 END(load_switch_stack) 457 457 458 - GLOBAL_ENTRY(prefetch_stack) 459 - add r14 = -IA64_SWITCH_STACK_SIZE, sp 460 - add r15 = IA64_TASK_THREAD_KSP_OFFSET, in0 461 - ;; 462 - ld8 r16 = [r15] // load next's stack pointer 463 - lfetch.fault.excl [r14], 128 464 - ;; 465 - lfetch.fault.excl [r14], 128 466 - lfetch.fault [r16], 128 467 - ;; 468 - lfetch.fault.excl [r14], 128 469 - lfetch.fault [r16], 128 470 - ;; 471 - lfetch.fault.excl [r14], 128 472 - lfetch.fault [r16], 128 473 - ;; 474 - lfetch.fault.excl [r14], 128 475 - lfetch.fault [r16], 128 476 - ;; 477 - lfetch.fault [r16], 128 478 - br.ret.sptk.many rp 479 - END(prefetch_stack) 480 - 481 458 /* 482 459 * Invoke a system call, but do some tracing before and after the call. 483 460 * We MUST preserve the current register frame throughout this routine
-6
include/linux/sched.h
··· 247 247 # define SCHED_FIXEDPOINT_SHIFT 10 248 248 # define SCHED_FIXEDPOINT_SCALE (1L << SCHED_FIXEDPOINT_SHIFT) 249 249 250 - #ifdef ARCH_HAS_PREFETCH_SWITCH_STACK 251 - extern void prefetch_stack(struct task_struct *t); 252 - #else 253 - static inline void prefetch_stack(struct task_struct *t) { } 254 - #endif 255 - 256 250 struct load_weight { 257 251 unsigned long weight; 258 252 u32 inv_weight;