The patch titled x86 cpuid and msr notifier callback section mismatches has been added to the -mm tree. Its filename is x86-cpuid-and-msr-notifier-callback-section-mismatches.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Fix section mismatch warnings in x86 cpuid and msr notifier callback functions. We can't have these as init (discarded) code. WARNING: arch/x86_64/kernel/cpuid.o - Section mismatch: reference to .init.text: from .data between 'cpuid_class_cpu_notifier' (at offset 0x0) and 'cpuid_fops' WARNING: arch/x86_64/kernel/msr.o - Section mismatch: reference to .init.text: from .data between 'msr_class_cpu_notifier' (at offset 0x0) and 'msr_fops' Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/cpuid.c | 2 +- arch/i386/kernel/msr.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/i386/kernel/cpuid.c~x86-cpuid-and-msr-notifier-callback-section-mismatches arch/i386/kernel/cpuid.c --- devel/arch/i386/kernel/cpuid.c~x86-cpuid-and-msr-notifier-callback-section-mismatches 2006-04-14 22:19:40.000000000 -0700 +++ devel-akpm/arch/i386/kernel/cpuid.c 2006-04-14 22:19:40.000000000 -0700 @@ -168,7 +168,7 @@ static int cpuid_class_device_create(int return err; } -static int __devinit cpuid_class_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) +static int cpuid_class_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) { unsigned int cpu = (unsigned long)hcpu; diff -puN arch/i386/kernel/msr.c~x86-cpuid-and-msr-notifier-callback-section-mismatches arch/i386/kernel/msr.c --- devel/arch/i386/kernel/msr.c~x86-cpuid-and-msr-notifier-callback-section-mismatches 2006-04-14 22:19:40.000000000 -0700 +++ devel-akpm/arch/i386/kernel/msr.c 2006-04-14 22:19:40.000000000 -0700 @@ -251,7 +251,7 @@ static int msr_class_device_create(int i return err; } -static int __devinit msr_class_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) +static int msr_class_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) { unsigned int cpu = (unsigned long)hcpu; _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxx are origin.patch config-exit-if-no-beginning-filename.patch git-mtd.patch net-drivers-fix-section-attributes-for-gcc.patch areca-raid-linux-scsi-driver.patch git-watchdog.patch softmac-uses-wiress-ext.patch bcm43-wireless-fix-printk-format-warnings.patch bcm43-fix-config-menu-alignment.patch x86-cpuid-and-msr-notifier-callback-section-mismatches.patch doc-vm-hugetlbpage-update-2.patch ipmi-fix-devinit-placement.patch config-update-usage-help-info.patch add-poisonh-and-patch-primary-users.patch update-2-drivers-for-poisonh.patch acpi-identify-which-device-is-not-power-manageable.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html