Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0b1937ac0ef1541c0ea44e6f81c33d2f59803957
Commit:     0b1937ac0ef1541c0ea44e6f81c33d2f59803957
Parent:     03ce11048b3832f5f0c471ccdb3363a870a14ac1
Author:     David Howells <[EMAIL PROTECTED]>
AuthorDate: Fri Jul 20 17:02:04 2007 +0100
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Fri Jul 20 12:01:34 2007 -0700

    FRV: Fix linkage problems
    
    Make it possible to use __start_notes and __stop_notes without getting a 
GPREL
    overflow error from the FRV linker.
    
    Small variables that would otherwise be in .data or .bss may, depending on 
the
    arch, be placed in special sections (.sdata or .sbss) that permit single
    instruction references on fixed instruction width machines.
    
    __start_notes and __stop_notes aren't really char variables, and certainly
    don't refer to data in .data or .bss.  Making them type "void" fools the
    compiler into not assuming anything about them.
    
    Signed-off-by: David Howells <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 kernel/ksysfs.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/ksysfs.c b/kernel/ksysfs.c
index 2565e1b..d0e5c48 100644
--- a/kernel/ksysfs.c
+++ b/kernel/ksysfs.c
@@ -65,8 +65,8 @@ KERNEL_ATTR_RO(kexec_crash_loaded);
 /*
  * Make /sys/kernel/notes give the raw contents of our kernel .notes section.
  */
-extern const char __start_notes __attribute__((weak));
-extern const char __stop_notes __attribute__((weak));
+extern const void __start_notes __attribute__((weak));
+extern const void __stop_notes __attribute__((weak));
 #define        notes_size (&__stop_notes - &__start_notes)
 
 static ssize_t notes_read(struct kobject *kobj, struct bin_attribute *bin_attr,
-
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