The patch titled
     arch/um/kernel/initrd.c: fix a missed conversion specifier
has been added to the -mm tree.  Its filename is
     arch-um-kernel-initrdc-fix-a-missed-conversion-specifier.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: arch/um/kernel/initrd.c: fix a missed conversion specifier
From: WANG Cong <[EMAIL PROTECTED]>

Fix a missed conversion specifier of a printk in arch/um/kernel/initrd.c.

Signed-off-by: WANG Cong <[EMAIL PROTECTED]>
Acked-by: Jeff Dike <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 arch/um/kernel/initrd.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN 
arch/um/kernel/initrd.c~arch-um-kernel-initrdc-fix-a-missed-conversion-specifier
 arch/um/kernel/initrd.c
--- 
a/arch/um/kernel/initrd.c~arch-um-kernel-initrdc-fix-a-missed-conversion-specifier
+++ a/arch/um/kernel/initrd.c
@@ -32,7 +32,7 @@ static int __init read_initrd(void)
         * ask for no memory.
         */
        if (size == 0) {
-               printk(KERN_ERR "\"%\" is a zero-size initrd\n");
+               printk(KERN_ERR "\"%s\" is a zero-size initrd\n", initrd);
                return 0;
        }
 
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

arch-um-kernel-initrdc-fix-a-missed-conversion-specifier.patch
uml-fix-initrd-printk.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to