]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Merge remote-tracking branch 'signal/for-next'
authorStephen Rothwell <sfr@canb.auug.org.au>
Thu, 18 Oct 2012 01:56:30 +0000 (12:56 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 18 Oct 2012 01:56:30 +0000 (12:56 +1100)
12 files changed:
1  2 
arch/arm64/Kconfig
arch/arm64/include/asm/processor.h
arch/m68k/include/asm/unistd.h
arch/mips/Kconfig
arch/mips/kernel/mips_ksyms.c
arch/mips/kernel/scall64-n32.S
arch/parisc/include/asm/unistd.h
arch/powerpc/include/asm/unistd.h
arch/s390/Kconfig
arch/sparc/include/asm/ptrace.h
arch/sparc/kernel/process_64.c
include/linux/sched.h

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index da43bdc622943bf422a396abba301148151f8f96,1e8b818022630a0b35907808aac0fa41876a4c8f..bdfafd7af46fb48eeb04e25787733b0500f66d07
@@@ -42,22 -45,9 +45,20 @@@ struct global_reg_snapshot 
        struct thread_info      *thread;
        unsigned long           pad1;
  };
 -extern struct global_reg_snapshot global_reg_snapshot[NR_CPUS];
 +
 +struct global_pmu_snapshot {
 +      unsigned long           pcr[4];
 +      unsigned long           pic[4];
 +};
 +
 +union global_cpu_snapshot {
 +      struct global_reg_snapshot      reg;
 +      struct global_pmu_snapshot      pmu;
 +};
 +
 +extern union global_cpu_snapshot global_cpu_snapshot[NR_CPUS];
  
- #define force_successful_syscall_return()         \
- do {  current_thread_info()->syscall_noerror = 1; \
- } while (0)
+ #define force_successful_syscall_return() set_thread_noerror(1)
  #define user_mode(regs) (!((regs)->tstate & TSTATE_PRIV))
  #define instruction_pointer(regs) ((regs)->tpc)
  #define instruction_pointer_set(regs, val) ((regs)->tpc = (val))
Simple merge
Simple merge