diff options
author | Milind Arun Choudhary <milindchoudhary@gmail.com> | 2007-04-15 13:21:23 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-05-08 15:00:39 -0400 |
commit | 8737d59579c5e61ea3d5da4bd63303159fd1cf7e (patch) | |
tree | afa05a729bc597e97688de3c70389fb9ade29389 /arch | |
parent | 1cfb9c94b6525763ee0eb9551842ded093c5827f (diff) |
[IA64] SPIN_LOCK_UNLOCKED macro cleanup in arch/ia64
SPIN_LOCK_UNLOCKED macro cleanup, use __SPIN_LOCK_UNLOCKED instead.
Signed-off-by: Milind Arun Choudhary <milindchoudhary@gmail.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/kernel/traps.c | 6 | ||||
-rw-r--r-- | arch/ia64/kernel/unwind.c | 2 | ||||
-rw-r--r-- | arch/ia64/mm/tlb.c | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/arch/ia64/kernel/traps.c b/arch/ia64/kernel/traps.c index 765cbe5ba6ae..cd5189f99629 100644 --- a/arch/ia64/kernel/traps.c +++ b/arch/ia64/kernel/traps.c | |||
@@ -59,9 +59,9 @@ die (const char *str, struct pt_regs *regs, long err) | |||
59 | u32 lock_owner; | 59 | u32 lock_owner; |
60 | int lock_owner_depth; | 60 | int lock_owner_depth; |
61 | } die = { | 61 | } die = { |
62 | .lock = SPIN_LOCK_UNLOCKED, | 62 | .lock = __SPIN_LOCK_UNLOCKED(die.lock), |
63 | .lock_owner = -1, | 63 | .lock_owner = -1, |
64 | .lock_owner_depth = 0 | 64 | .lock_owner_depth = 0 |
65 | }; | 65 | }; |
66 | static int die_counter; | 66 | static int die_counter; |
67 | int cpu = get_cpu(); | 67 | int cpu = get_cpu(); |
diff --git a/arch/ia64/kernel/unwind.c b/arch/ia64/kernel/unwind.c index 93d5a3b41f69..e3be21c7bd49 100644 --- a/arch/ia64/kernel/unwind.c +++ b/arch/ia64/kernel/unwind.c | |||
@@ -145,7 +145,7 @@ static struct { | |||
145 | # endif | 145 | # endif |
146 | } unw = { | 146 | } unw = { |
147 | .tables = &unw.kernel_table, | 147 | .tables = &unw.kernel_table, |
148 | .lock = SPIN_LOCK_UNLOCKED, | 148 | .lock = __SPIN_LOCK_UNLOCKED(unw.lock), |
149 | .save_order = { | 149 | .save_order = { |
150 | UNW_REG_RP, UNW_REG_PFS, UNW_REG_PSP, UNW_REG_PR, | 150 | UNW_REG_RP, UNW_REG_PFS, UNW_REG_PSP, UNW_REG_PR, |
151 | UNW_REG_UNAT, UNW_REG_LC, UNW_REG_FPSR, UNW_REG_PRI_UNAT_GR | 151 | UNW_REG_UNAT, UNW_REG_LC, UNW_REG_FPSR, UNW_REG_PRI_UNAT_GR |
diff --git a/arch/ia64/mm/tlb.c b/arch/ia64/mm/tlb.c index ffad7624436c..fa4e6d4810f3 100644 --- a/arch/ia64/mm/tlb.c +++ b/arch/ia64/mm/tlb.c | |||
@@ -32,9 +32,9 @@ static struct { | |||
32 | } purge; | 32 | } purge; |
33 | 33 | ||
34 | struct ia64_ctx ia64_ctx = { | 34 | struct ia64_ctx ia64_ctx = { |
35 | .lock = SPIN_LOCK_UNLOCKED, | 35 | .lock = __SPIN_LOCK_UNLOCKED(ia64_ctx.lock), |
36 | .next = 1, | 36 | .next = 1, |
37 | .max_ctx = ~0U | 37 | .max_ctx = ~0U |
38 | }; | 38 | }; |
39 | 39 | ||
40 | DEFINE_PER_CPU(u8, ia64_need_tlb_flush); | 40 | DEFINE_PER_CPU(u8, ia64_need_tlb_flush); |