LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [patch 0/3] eliminate .data.idt section for the archs which do not use it
@ 2008-02-20 19:41 gorcunov
2008-02-20 19:41 ` [patch 1/3] m32r: cleanup - drop .data.idt section in vmlinux.lds script gorcunov
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: gorcunov @ 2008-02-20 19:41 UTC (permalink / raw)
To: takata, dhowells, schwidefsky; +Cc: sam, gorcunov, linux-kernel
This patch series do a small clean up over vmlinux.lds script for several
architectures where the section .data.idt is not used.
Please review.
Thanks.
- Cyrill -
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* [patch 1/3] m32r: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-20 19:41 [patch 0/3] eliminate .data.idt section for the archs which do not use it gorcunov
@ 2008-02-20 19:41 ` gorcunov
2008-02-20 22:05 ` Sam Ravnborg
2008-02-20 19:41 ` [patch 2/3] mn10300: " gorcunov
2008-02-20 19:41 ` [patch 3/3] s390: " gorcunov
2 siblings, 1 reply; 11+ messages in thread
From: gorcunov @ 2008-02-20 19:41 UTC (permalink / raw)
To: takata, dhowells, schwidefsky; +Cc: sam, gorcunov, linux-kernel
[-- Attachment #1: m32r-idt --]
[-- Type: text/plain, Size: 685 bytes --]
The section .data.idt is not used at all - so drop it.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
---
vmlinux.lds.S | 3 ---
1 file changed, 3 deletions(-)
Index: linux-2.6.git/arch/m32r/kernel/vmlinux.lds.S
===================================================================
--- linux-2.6.git.orig/arch/m32r/kernel/vmlinux.lds.S 2008-02-10 10:46:37.000000000 +0300
+++ linux-2.6.git/arch/m32r/kernel/vmlinux.lds.S 2008-02-20 22:23:46.000000000 +0300
@@ -60,9 +60,6 @@ SECTIONS
. = ALIGN(4096);
__nosave_end = .;
- . = ALIGN(4096);
- .data.page_aligned : { *(.data.idt) }
-
. = ALIGN(32);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [patch 1/3] m32r: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-20 19:41 ` [patch 1/3] m32r: cleanup - drop .data.idt section in vmlinux.lds script gorcunov
@ 2008-02-20 22:05 ` Sam Ravnborg
0 siblings, 0 replies; 11+ messages in thread
From: Sam Ravnborg @ 2008-02-20 22:05 UTC (permalink / raw)
To: gorcunov; +Cc: takata, dhowells, schwidefsky, linux-kernel
On Wed, Feb 20, 2008 at 10:41:24PM +0300, gorcunov@gmail.com wrote:
> The section .data.idt is not used at all - so drop it.
Only used by 32 bit x86 to be precise.
>
> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
> ---
>
> vmlinux.lds.S | 3 ---
> 1 file changed, 3 deletions(-)
>
> Index: linux-2.6.git/arch/m32r/kernel/vmlinux.lds.S
> ===================================================================
> --- linux-2.6.git.orig/arch/m32r/kernel/vmlinux.lds.S 2008-02-10 10:46:37.000000000 +0300
> +++ linux-2.6.git/arch/m32r/kernel/vmlinux.lds.S 2008-02-20 22:23:46.000000000 +0300
> @@ -60,9 +60,6 @@ SECTIONS
> . = ALIGN(4096);
> __nosave_end = .;
>
> - . = ALIGN(4096);
> - .data.page_aligned : { *(.data.idt) }
> -
> . = ALIGN(32);
> .data.cacheline_aligned : { *(.data.cacheline_aligned) }
>
>
> --
^ permalink raw reply [flat|nested] 11+ messages in thread
* [patch 2/3] mn10300: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-20 19:41 [patch 0/3] eliminate .data.idt section for the archs which do not use it gorcunov
2008-02-20 19:41 ` [patch 1/3] m32r: cleanup - drop .data.idt section in vmlinux.lds script gorcunov
@ 2008-02-20 19:41 ` gorcunov
2008-02-20 22:05 ` Sam Ravnborg
2008-02-21 12:33 ` David Howells
2008-02-20 19:41 ` [patch 3/3] s390: " gorcunov
2 siblings, 2 replies; 11+ messages in thread
From: gorcunov @ 2008-02-20 19:41 UTC (permalink / raw)
To: takata, dhowells, schwidefsky; +Cc: sam, gorcunov, linux-kernel
[-- Attachment #1: mn10300-data-idt --]
[-- Type: text/plain, Size: 694 bytes --]
The section .data.idt is not used at all - so drop it.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
---
vmlinux.lds.S | 3 ---
1 file changed, 3 deletions(-)
Index: linux-2.6.git/arch/mn10300/kernel/vmlinux.lds.S
===================================================================
--- linux-2.6.git.orig/arch/mn10300/kernel/vmlinux.lds.S 2008-02-10 10:46:37.000000000 +0300
+++ linux-2.6.git/arch/mn10300/kernel/vmlinux.lds.S 2008-02-20 22:26:01.000000000 +0300
@@ -61,9 +61,6 @@ SECTIONS
. = ALIGN(4096);
__nosave_end = .;
- . = ALIGN(4096);
- .data.page_aligned : { *(.data.idt) }
-
. = ALIGN(32);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [patch 2/3] mn10300: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-20 19:41 ` [patch 2/3] mn10300: " gorcunov
@ 2008-02-20 22:05 ` Sam Ravnborg
2008-02-21 12:33 ` David Howells
1 sibling, 0 replies; 11+ messages in thread
From: Sam Ravnborg @ 2008-02-20 22:05 UTC (permalink / raw)
To: gorcunov; +Cc: takata, dhowells, schwidefsky, linux-kernel
On Wed, Feb 20, 2008 at 10:41:25PM +0300, gorcunov@gmail.com wrote:
> The section .data.idt is not used at all - so drop it.
>
> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
> ---
>
> vmlinux.lds.S | 3 ---
> 1 file changed, 3 deletions(-)
>
> Index: linux-2.6.git/arch/mn10300/kernel/vmlinux.lds.S
> ===================================================================
> --- linux-2.6.git.orig/arch/mn10300/kernel/vmlinux.lds.S 2008-02-10 10:46:37.000000000 +0300
> +++ linux-2.6.git/arch/mn10300/kernel/vmlinux.lds.S 2008-02-20 22:26:01.000000000 +0300
> @@ -61,9 +61,6 @@ SECTIONS
> . = ALIGN(4096);
> __nosave_end = .;
>
> - . = ALIGN(4096);
> - .data.page_aligned : { *(.data.idt) }
> -
> . = ALIGN(32);
> .data.cacheline_aligned : { *(.data.cacheline_aligned) }
>
>
> --
^ permalink raw reply [flat|nested] 11+ messages in thread
* [patch 2/3] mn10300: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-20 19:41 ` [patch 2/3] mn10300: " gorcunov
2008-02-20 22:05 ` Sam Ravnborg
@ 2008-02-21 12:33 ` David Howells
1 sibling, 0 replies; 11+ messages in thread
From: David Howells @ 2008-02-21 12:33 UTC (permalink / raw)
To: torvalds, akpm; +Cc: dhowells, gorcunov, takata, schwidefsky, linux-kernel, sam
The section .data.idt is not used at all - so drop it.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Acked-by: David Howells <dhowells@redhat.com>
---
vmlinux.lds.S | 3 ---
1 file changed, 3 deletions(-)
Index: linux-2.6.git/arch/mn10300/kernel/vmlinux.lds.S
===================================================================
--- linux-2.6.git.orig/arch/mn10300/kernel/vmlinux.lds.S 2008-02-10 10:46:37.000000000 +0300
+++ linux-2.6.git/arch/mn10300/kernel/vmlinux.lds.S 2008-02-20 22:26:01.000000000 +0300
@@ -61,9 +61,6 @@ SECTIONS
. = ALIGN(4096);
__nosave_end = .;
- . = ALIGN(4096);
- .data.page_aligned : { *(.data.idt) }
-
. = ALIGN(32);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
^ permalink raw reply [flat|nested] 11+ messages in thread
* [patch 3/3] s390: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-20 19:41 [patch 0/3] eliminate .data.idt section for the archs which do not use it gorcunov
2008-02-20 19:41 ` [patch 1/3] m32r: cleanup - drop .data.idt section in vmlinux.lds script gorcunov
2008-02-20 19:41 ` [patch 2/3] mn10300: " gorcunov
@ 2008-02-20 19:41 ` gorcunov
2008-02-20 22:06 ` Sam Ravnborg
2008-02-21 11:26 ` Martin Schwidefsky
2 siblings, 2 replies; 11+ messages in thread
From: gorcunov @ 2008-02-20 19:41 UTC (permalink / raw)
To: takata, dhowells, schwidefsky; +Cc: sam, gorcunov, linux-kernel
[-- Attachment #1: s390-idt --]
[-- Type: text/plain, Size: 699 bytes --]
The section .data.idt is not used at all - so drop it.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
---
vmlinux.lds.S | 5 -----
1 file changed, 5 deletions(-)
Index: linux-2.6.git/arch/s390/kernel/vmlinux.lds.S
===================================================================
--- linux-2.6.git.orig/arch/s390/kernel/vmlinux.lds.S 2008-02-06 23:15:14.000000000 +0300
+++ linux-2.6.git/arch/s390/kernel/vmlinux.lds.S 2008-02-20 22:30:30.000000000 +0300
@@ -71,11 +71,6 @@ SECTIONS
. = ALIGN(PAGE_SIZE);
__nosave_end = .;
- . = ALIGN(PAGE_SIZE);
- .data.page_aligned : {
- *(.data.idt)
- }
-
. = ALIGN(0x100);
.data.cacheline_aligned : {
*(.data.cacheline_aligned)
--
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [patch 3/3] s390: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-20 19:41 ` [patch 3/3] s390: " gorcunov
@ 2008-02-20 22:06 ` Sam Ravnborg
2008-02-21 11:26 ` Martin Schwidefsky
1 sibling, 0 replies; 11+ messages in thread
From: Sam Ravnborg @ 2008-02-20 22:06 UTC (permalink / raw)
To: gorcunov; +Cc: takata, dhowells, schwidefsky, linux-kernel
On Wed, Feb 20, 2008 at 10:41:26PM +0300, gorcunov@gmail.com wrote:
> The section .data.idt is not used at all - so drop it.
>
> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
> ---
>
> vmlinux.lds.S | 5 -----
> 1 file changed, 5 deletions(-)
>
> Index: linux-2.6.git/arch/s390/kernel/vmlinux.lds.S
> ===================================================================
> --- linux-2.6.git.orig/arch/s390/kernel/vmlinux.lds.S 2008-02-06 23:15:14.000000000 +0300
> +++ linux-2.6.git/arch/s390/kernel/vmlinux.lds.S 2008-02-20 22:30:30.000000000 +0300
> @@ -71,11 +71,6 @@ SECTIONS
> . = ALIGN(PAGE_SIZE);
> __nosave_end = .;
>
> - . = ALIGN(PAGE_SIZE);
> - .data.page_aligned : {
> - *(.data.idt)
> - }
> -
> . = ALIGN(0x100);
> .data.cacheline_aligned : {
> *(.data.cacheline_aligned)
>
> --
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [patch 3/3] s390: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-20 19:41 ` [patch 3/3] s390: " gorcunov
2008-02-20 22:06 ` Sam Ravnborg
@ 2008-02-21 11:26 ` Martin Schwidefsky
2008-02-21 11:56 ` Sam Ravnborg
1 sibling, 1 reply; 11+ messages in thread
From: Martin Schwidefsky @ 2008-02-21 11:26 UTC (permalink / raw)
To: gorcunov; +Cc: takata, dhowells, sam, linux-kernel
On Wed, 2008-02-20 at 22:41 +0300, gorcunov@gmail.com wrote:
> The section .data.idt is not used at all - so drop it.
>
> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
> ---
>
> vmlinux.lds.S | 5 -----
> 1 file changed, 5 deletions(-)
>
> Index: linux-2.6.git/arch/s390/kernel/vmlinux.lds.S
> ===================================================================
> --- linux-2.6.git.orig/arch/s390/kernel/vmlinux.lds.S 2008-02-06 23:15:14.000000000 +0300
> +++ linux-2.6.git/arch/s390/kernel/vmlinux.lds.S 2008-02-20 22:30:30.000000000 +0300
> @@ -71,11 +71,6 @@ SECTIONS
> . = ALIGN(PAGE_SIZE);
> __nosave_end = .;
>
> - . = ALIGN(PAGE_SIZE);
> - .data.page_aligned : {
> - *(.data.idt)
> - }
> -
> . = ALIGN(0x100);
> .data.cacheline_aligned : {
> *(.data.cacheline_aligned)
>
--
blue skies,
Martin.
"Reality continues to ruin my life." - Calvin.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [patch 3/3] s390: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-21 11:26 ` Martin Schwidefsky
@ 2008-02-21 11:56 ` Sam Ravnborg
2008-02-21 13:07 ` Martin Schwidefsky
0 siblings, 1 reply; 11+ messages in thread
From: Sam Ravnborg @ 2008-02-21 11:56 UTC (permalink / raw)
To: Martin Schwidefsky; +Cc: gorcunov, takata, dhowells, linux-kernel
On Thu, Feb 21, 2008 at 12:26:13PM +0100, Martin Schwidefsky wrote:
> On Wed, 2008-02-20 at 22:41 +0300, gorcunov@gmail.com wrote:
> > The section .data.idt is not used at all - so drop it.
> >
> > Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
>
> Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Martin - I expect you to take the patch as it only touches s390.
OK?
Sam
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [patch 3/3] s390: cleanup - drop .data.idt section in vmlinux.lds script
2008-02-21 11:56 ` Sam Ravnborg
@ 2008-02-21 13:07 ` Martin Schwidefsky
0 siblings, 0 replies; 11+ messages in thread
From: Martin Schwidefsky @ 2008-02-21 13:07 UTC (permalink / raw)
To: Sam Ravnborg; +Cc: gorcunov, takata, dhowells, linux-kernel
On Thu, 2008-02-21 at 12:56 +0100, Sam Ravnborg wrote:
> On Thu, Feb 21, 2008 at 12:26:13PM +0100, Martin Schwidefsky wrote:
> > On Wed, 2008-02-20 at 22:41 +0300, gorcunov@gmail.com wrote:
> > > The section .data.idt is not used at all - so drop it.
> > >
> > > Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
> >
> > Acked-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
> Martin - I expect you to take the patch as it only touches s390.
> OK?
Fine with me.
--
blue skies,
Martin.
"Reality continues to ruin my life." - Calvin.
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2008-02-21 13:08 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-20 19:41 [patch 0/3] eliminate .data.idt section for the archs which do not use it gorcunov
2008-02-20 19:41 ` [patch 1/3] m32r: cleanup - drop .data.idt section in vmlinux.lds script gorcunov
2008-02-20 22:05 ` Sam Ravnborg
2008-02-20 19:41 ` [patch 2/3] mn10300: " gorcunov
2008-02-20 22:05 ` Sam Ravnborg
2008-02-21 12:33 ` David Howells
2008-02-20 19:41 ` [patch 3/3] s390: " gorcunov
2008-02-20 22:06 ` Sam Ravnborg
2008-02-21 11:26 ` Martin Schwidefsky
2008-02-21 11:56 ` Sam Ravnborg
2008-02-21 13:07 ` Martin Schwidefsky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).