The patch titled Add assembler equivalents to __init{,date}_refok has been removed from the -mm tree. Its filename was add-assembler-equivalents-to-__initdate_refok.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Add assembler equivalents to __init{,date}_refok From: Ralf Baechle <ralf@xxxxxxxxxxxxxx> I need __INIT_REFOK to fix a MODPOST warning for a few MIPS configs which have to call init code from .text very early in the game due to bootloader issues. __INITDATA_REFOK is just for consistency. Signed-off-by: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/init.h | 2 ++ 1 file changed, 2 insertions(+) diff -puN include/linux/init.h~add-assembler-equivalents-to-__initdate_refok include/linux/init.h --- a/include/linux/init.h~add-assembler-equivalents-to-__initdate_refok +++ a/include/linux/init.h @@ -67,8 +67,10 @@ /* For assembly routines */ #define __INIT .section ".init.text","ax" +#define __INIT_REFOK .section ".text.init.refok","ax" #define __FINIT .previous #define __INITDATA .section ".init.data","aw" +#define __INITDATA_REFOK .section ".data.init.refok","aw" #ifndef __ASSEMBLY__ /* _ Patches currently in -mm which might be from ralf@xxxxxxxxxxxxxx are origin.patch drivers-pmc-msp71xx-gpio-char-driver.patch clean-up-duplicate-includes-in-drivers-char.patch spelling-fix-weired-weird.patch remove-dma_cache_wbackinvwback_inv-functions.patch lk201-remove-obsolete-driver.patch fix-wrong-filename-reference-in-drivers-testingtxt.patch completely-remove-deprecated-irq-flags-sa_.patch compile-handle_percpu_irq-even-for-uniprocessor-kernels.patch break-elf_platform-and-stack-pointer-randomization-dependency.patch add-a-00-index-file-to-documentation-mips.patch define-global-bit-macro.patch bitops-introduce-lock-ops.patch mips-fix-bitops.patch mips-lock-bitops.patch replace-__attribute_pure__-with-__pure.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