瀏覽代碼

[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>
Milind Arun Choudhary 18 年之前
父節點
當前提交
8737d59579
共有 3 個文件被更改,包括 7 次插入7 次删除
  1. 3 3
      arch/ia64/kernel/traps.c
  2. 1 1
      arch/ia64/kernel/unwind.c
  3. 3 3
      arch/ia64/mm/tlb.c

+ 3 - 3
arch/ia64/kernel/traps.c

@@ -59,9 +59,9 @@ die (const char *str, struct pt_regs *regs, long err)
 		u32 lock_owner;
 		u32 lock_owner;
 		int lock_owner_depth;
 		int lock_owner_depth;
 	} die = {
 	} die = {
-		.lock =			SPIN_LOCK_UNLOCKED,
-		.lock_owner =		-1,
-		.lock_owner_depth =	0
+		.lock =	__SPIN_LOCK_UNLOCKED(die.lock),
+		.lock_owner = -1,
+		.lock_owner_depth = 0
 	};
 	};
 	static int die_counter;
 	static int die_counter;
 	int cpu = get_cpu();
 	int cpu = get_cpu();

+ 1 - 1
arch/ia64/kernel/unwind.c

@@ -145,7 +145,7 @@ static struct {
 # endif
 # endif
 } unw = {
 } unw = {
 	.tables = &unw.kernel_table,
 	.tables = &unw.kernel_table,
-	.lock = SPIN_LOCK_UNLOCKED,
+	.lock = __SPIN_LOCK_UNLOCKED(unw.lock),
 	.save_order = {
 	.save_order = {
 		UNW_REG_RP, UNW_REG_PFS, UNW_REG_PSP, UNW_REG_PR,
 		UNW_REG_RP, UNW_REG_PFS, UNW_REG_PSP, UNW_REG_PR,
 		UNW_REG_UNAT, UNW_REG_LC, UNW_REG_FPSR, UNW_REG_PRI_UNAT_GR
 		UNW_REG_UNAT, UNW_REG_LC, UNW_REG_FPSR, UNW_REG_PRI_UNAT_GR

+ 3 - 3
arch/ia64/mm/tlb.c

@@ -32,9 +32,9 @@ static struct {
 } purge;
 } purge;
 
 
 struct ia64_ctx ia64_ctx = {
 struct ia64_ctx ia64_ctx = {
-	.lock =		SPIN_LOCK_UNLOCKED,
-	.next =		1,
-	.max_ctx =	~0U
+	.lock =	__SPIN_LOCK_UNLOCKED(ia64_ctx.lock),
+	.next =	1,
+	.max_ctx = ~0U
 };
 };
 
 
 DEFINE_PER_CPU(u8, ia64_need_tlb_flush);
 DEFINE_PER_CPU(u8, ia64_need_tlb_flush);