Re: [PATCH] [SPARC/SPARC64] fix usage of .section .sched.text in assembler code

2008-01-28 Thread David Miller
From: Sam Ravnborg <[EMAIL PROTECTED]>
Date: Sat, 26 Jan 2008 23:54:39 +0100

> ld will generate an unique named section when assembler do not
> use "ax" but gcc does. Add the misisng annotation.
> 
> Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]>
> Cc: Ingo Molnar <[EMAIL PROTECTED]>

Applied, thanks Sam.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] [SPARC/SPARC64] fix usage of .section .sched.text in assembler code

2008-01-28 Thread David Miller
From: Sam Ravnborg [EMAIL PROTECTED]
Date: Sat, 26 Jan 2008 23:54:39 +0100

 ld will generate an unique named section when assembler do not
 use ax but gcc does. Add the misisng annotation.
 
 Signed-off-by: Sam Ravnborg [EMAIL PROTECTED]
 Cc: Ingo Molnar [EMAIL PROTECTED]

Applied, thanks Sam.
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] [SPARC/SPARC64] fix usage of .section .sched.text in assembler code

2008-01-26 Thread Sam Ravnborg
ld will generate an unique named section when assembler do not
use "ax" but gcc does. Add the misisng annotation.

Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]>
Cc: Ingo Molnar <[EMAIL PROTECTED]>
---
 arch/sparc/lib/rwsem.S   |2 +-
 arch/sparc64/lib/rwsem.S |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/sparc/lib/rwsem.S b/arch/sparc/lib/rwsem.S
index 2065774..f406b1f 100644
--- a/arch/sparc/lib/rwsem.S
+++ b/arch/sparc/lib/rwsem.S
@@ -7,7 +7,7 @@
 #include 
 #include 
 
-   .section .sched.text
+   .section .sched.text, "ax"
.align  4
 
.globl  ___down_read
diff --git a/arch/sparc64/lib/rwsem.S b/arch/sparc64/lib/rwsem.S
index 75f0e6b..1a4cc56 100644
--- a/arch/sparc64/lib/rwsem.S
+++ b/arch/sparc64/lib/rwsem.S
@@ -6,7 +6,7 @@
 
 #include 
 
-   .section.sched.text
+   .section.sched.text, "ax"
 
.globl  __down_read
 __down_read:
-- 
1.5.4.rc3.14.g44397

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] [SPARC/SPARC64] fix usage of .section .sched.text in assembler code

2008-01-26 Thread Sam Ravnborg
ld will generate an unique named section when assembler do not
use ax but gcc does. Add the misisng annotation.

Signed-off-by: Sam Ravnborg [EMAIL PROTECTED]
Cc: Ingo Molnar [EMAIL PROTECTED]
---
 arch/sparc/lib/rwsem.S   |2 +-
 arch/sparc64/lib/rwsem.S |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/sparc/lib/rwsem.S b/arch/sparc/lib/rwsem.S
index 2065774..f406b1f 100644
--- a/arch/sparc/lib/rwsem.S
+++ b/arch/sparc/lib/rwsem.S
@@ -7,7 +7,7 @@
 #include asm/ptrace.h
 #include asm/psr.h
 
-   .section .sched.text
+   .section .sched.text, ax
.align  4
 
.globl  ___down_read
diff --git a/arch/sparc64/lib/rwsem.S b/arch/sparc64/lib/rwsem.S
index 75f0e6b..1a4cc56 100644
--- a/arch/sparc64/lib/rwsem.S
+++ b/arch/sparc64/lib/rwsem.S
@@ -6,7 +6,7 @@
 
 #include asm/rwsem-const.h
 
-   .section.sched.text
+   .section.sched.text, ax
 
.globl  __down_read
 __down_read:
-- 
1.5.4.rc3.14.g44397

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/