Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 5365
b: refs/heads/master
c: 2ac6608
h: refs/heads/master
i:
  5363: 0144710
v: v3
  • Loading branch information
Linus Torvalds committed Jul 28, 2005
1 parent 009949e commit 8707bcd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 24 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7b70888a192eff457c2ca0a4ffa04815f5e19734
refs/heads/master: 2ac6608c41f8c45371ea9dddae7f99bc2c15d5cf
9 changes: 2 additions & 7 deletions trunk/include/asm-alpha/smp.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,11 @@ extern cpumask_t cpu_online_map;
extern int smp_num_cpus;
#define cpu_possible_map cpu_present_mask

int smp_call_function_on_cpu(void (*) (void *), void *, int, int, cpumask_t);
int smp_call_function_on_cpu(void (*func) (void *info), void *info,int retry, int wait, cpumask_t cpu);

#else /* CONFIG_SMP */

static inline int
smp_call_function_on_cpu (void (*func) (void *), void *info, int retry,
int wait, cpumask_t cpu)
{
return 0;
}
#define smp_call_function_on_cpu(func,info,retry,wait,cpu) ({ 0; })

#endif /* CONFIG_SMP */

Expand Down
20 changes: 4 additions & 16 deletions trunk/include/linux/smp.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,23 +94,11 @@ void smp_prepare_boot_cpu(void);
*/
#define raw_smp_processor_id() 0
#define hard_smp_processor_id() 0
#define num_booting_cpus() 1

static inline int smp_call_function(void (*func) (void *), void *info,
int retry, int wait)
{
return 0;
}

static inline int on_each_cpu(void (*func) (void *), void *info,
int retry, int wait)
{
func(info);
return 0;
}

#define smp_call_function(func,info,retry,wait) ({ 0; })
#define on_each_cpu(func,info,retry,wait) ({ func(info); 0; })
static inline void smp_send_reschedule(int cpu) { }
static inline void smp_prepare_boot_cpu(void) { }
#define num_booting_cpus() 1
#define smp_prepare_boot_cpu() do {} while (0)

#endif /* !SMP */

Expand Down

0 comments on commit 8707bcd

Please sign in to comment.