Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=acffc84ad9c1c8a79b8c1d6b9f4f530f37cba9ab
Commit:     acffc84ad9c1c8a79b8c1d6b9f4f530f37cba9ab
Parent:     410ab512e5c5716287a399145df0905c1dcddb04
Author:     Hidetoshi Seto <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 30 12:17:42 2008 +0900
Committer:  Tony Luck <[EMAIL PROTECTED]>
CommitDate: Mon Feb 4 15:36:36 2008 -0800

    [IA64] generalize attribute of fsyscall_gtod_data
    
    In an ordinary way,
    
    > } __attribute__ ((aligned (L1_CACHE_BYTES)));
    
    should be
    
    > } ____cacheline_aligned;
    
    to save some bytes on an uni-processor.
    
    Signed-off-by: Hidetoshi Seto <[EMAIL PROTECTED]>
    Signed-off-by: Tony Luck <[EMAIL PROTECTED]>
---
 arch/ia64/kernel/fsyscall_gtod_data.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/ia64/kernel/fsyscall_gtod_data.h 
b/arch/ia64/kernel/fsyscall_gtod_data.h
index 490dab5..57d2ee6 100644
--- a/arch/ia64/kernel/fsyscall_gtod_data.h
+++ b/arch/ia64/kernel/fsyscall_gtod_data.h
@@ -14,10 +14,10 @@ struct fsyscall_gtod_data_t {
        u32             clk_shift;
        void            *clk_fsys_mmio;
        cycle_t         clk_cycle_last;
-} __attribute__ ((aligned (L1_CACHE_BYTES)));
+} ____cacheline_aligned;
 
 struct itc_jitter_data_t {
        int             itc_jitter;
        cycle_t         itc_lastcycle;
-} __attribute__ ((aligned (L1_CACHE_BYTES)));
+} ____cacheline_aligned;
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to