~ubuntu-branches/debian/experimental/linux-tools/experimental

« back to all changes in this revision

Viewing changes to arch/s390/include/asm/smp.h

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings
  • Date: 2014-02-02 16:57:49 UTC
  • mfrom: (1.1.10) (0.1.21 sid)
  • Revision ID: package-import@ubuntu.com-20140202165749-tw94o9t1t0a8txk6
Tags: 3.13-1~exp2
Merge changes from sid up to 3.12.6-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#define raw_smp_processor_id()  (S390_lowcore.cpu_nr)
15
15
 
16
16
extern struct mutex smp_cpu_state_mutex;
17
 
extern struct save_area *zfcpdump_save_areas[NR_CPUS + 1];
18
17
 
19
18
extern int __cpu_up(unsigned int cpu, struct task_struct *tidle);
20
19
 
32
31
extern void smp_stop_cpu(void);
33
32
extern void smp_cpu_set_polarization(int cpu, int val);
34
33
extern int smp_cpu_get_polarization(int cpu);
 
34
extern void smp_fill_possible_mask(void);
35
35
 
36
36
#else /* CONFIG_SMP */
37
37
 
51
51
static inline void smp_yield_cpu(int cpu) { }
52
52
static inline void smp_yield(void) { }
53
53
static inline void smp_stop_cpu(void) { }
 
54
static inline void smp_fill_possible_mask(void) { }
54
55
 
55
56
#endif /* CONFIG_SMP */
56
57