* [PATCH] explicity align tss->stack
@ 2004-09-04 13:45 Brian Gerst
2004-09-05 21:41 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Brian Gerst @ 2004-09-04 13:45 UTC (permalink / raw)
To: Andrew Morton; +Cc: lkml
[-- Attachment #1: Type: text/plain, Size: 150 bytes --]
Use an alignment attribute on the stack member of struct tss_struct
instead of padding. Also mark the limit of the TSS segment.
--
Brian Gerst
[-- Attachment #2: tss-stack-align --]
[-- Type: text/plain, Size: 1323 bytes --]
diff -urN linux-2.6.9-rc1-bk/include/asm-i386/desc.h linux/include/asm-i386/desc.h
--- linux-2.6.9-rc1-bk/include/asm-i386/desc.h 2004-08-25 11:52:00.000000000 -0400
+++ linux/include/asm-i386/desc.h 2004-09-04 09:20:29.216440282 -0400
@@ -47,7 +47,7 @@
static inline void __set_tss_desc(unsigned int cpu, unsigned int entry, void *addr)
{
_set_tssldt_desc(&per_cpu(cpu_gdt_table, cpu)[entry], (int)addr,
- offsetof(struct tss_struct, __cacheline_filler) - 1, 0x89);
+ offsetof(struct tss_struct, tss_limit) - 1, 0x89);
}
#define set_tss_desc(cpu,addr) __set_tss_desc(cpu, GDT_ENTRY_TSS, addr)
diff -urN linux-2.6.9-rc1-bk/include/asm-i386/processor.h linux/include/asm-i386/processor.h
--- linux-2.6.9-rc1-bk/include/asm-i386/processor.h 2004-09-03 02:13:03.000000000 -0400
+++ linux/include/asm-i386/processor.h 2004-09-04 09:20:40.573961012 -0400
@@ -391,14 +391,11 @@
* be within the limit.
*/
unsigned long io_bitmap[IO_BITMAP_LONGS + 1];
- /*
- * pads the TSS to be cacheline-aligned (size is 0x100)
- */
- unsigned long __cacheline_filler[37];
+ unsigned long tss_limit[0];
/*
* .. and then another 0x100 bytes for emergency kernel stack
*/
- unsigned long stack[64];
+ unsigned long stack[64] __attribute__((aligned(0x100)));
} __attribute__((packed));
#define ARCH_MIN_TASKALIGN 16
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] explicity align tss->stack
2004-09-04 13:45 [PATCH] explicity align tss->stack Brian Gerst
@ 2004-09-05 21:41 ` Andrew Morton
2004-09-06 14:33 ` Brian Gerst
0 siblings, 1 reply; 3+ messages in thread
From: Andrew Morton @ 2004-09-05 21:41 UTC (permalink / raw)
To: Brian Gerst; +Cc: linux-kernel
Brian Gerst <bgerst@quark.didntduck.org> wrote:
>
> Use an alignment attribute on the stack member of struct tss_struct
> instead of padding. Also mark the limit of the TSS segment.
The TSS code got a significant working-over recently. Please take a look
at next -mm, see if this patch is still appropriate?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] explicity align tss->stack
2004-09-05 21:41 ` Andrew Morton
@ 2004-09-06 14:33 ` Brian Gerst
0 siblings, 0 replies; 3+ messages in thread
From: Brian Gerst @ 2004-09-06 14:33 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel
Andrew Morton wrote:
> Brian Gerst <bgerst@quark.didntduck.org> wrote:
>
>>Use an alignment attribute on the stack member of struct tss_struct
>> instead of padding. Also mark the limit of the TSS segment.
>
>
> The TSS code got a significant working-over recently. Please take a look
> at next -mm, see if this patch is still appropriate?
>
There are no conflicts in -mm3.
--
Brian Gerst
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-09-06 14:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-09-04 13:45 [PATCH] explicity align tss->stack Brian Gerst
2004-09-05 21:41 ` Andrew Morton
2004-09-06 14:33 ` Brian Gerst
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome