Deleted Added
full compact
26c26
< * $FreeBSD: head/sys/sparc64/include/smp.h 169796 2007-05-20 14:49:01Z marius $
---
> * $FreeBSD: head/sys/sparc64/include/smp.h 170846 2007-06-16 23:26:00Z marius $
42,43c42,47
< #define IDR_BUSY (1<<0)
< #define IDR_NACK (1<<1)
---
> #define IDR_BUSY 0x0000000000000001ULL
> #define IDR_NACK 0x0000000000000002ULL
> #define IDR_CHEETAH_ALL_BUSY 0x5555555555555555ULL
> #define IDR_CHEETAH_ALL_NACK (~IDR_CHEETAH_ALL_BUSY)
> #define IDR_CHEETAH_MAX_BN_PAIRS 32
> #define IDR_JALAPENO_MAX_BN_PAIRS 4
45a50
> #define IDC_BN_SHIFT 24
83c88,89
< void cpu_ipi_selected(u_int cpus, u_long d0, u_long d1, u_long d2);
---
> typedef void cpu_ipi_selected_t(u_int, u_long, u_long, u_long);
> extern cpu_ipi_selected_t *cpu_ipi_selected;
89c95
< vm_offset_t mp_tramp_alloc(void);
---
> void mp_init(void);
95d100
< extern vm_offset_t mp_tramp;