The patch titled ecryptfs: fix forgotten format specifier has been added to the -mm tree. Its filename is ecryptfs-fix-forgotten-format-specifier.patch *** 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 ------------------------------------------------------ Subject: ecryptfs: fix forgotten format specifier From: Thomas Hisch <t.hisch@xxxxxxxxx> Add format specifier %d for uid in ecryptfs_printk Signed-off-by: Thomas Hisch <t.hisch@xxxxxxxxx> Cc: Michael Halcrow <mhalcrow@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ecryptfs/messaging.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN fs/ecryptfs/messaging.c~ecryptfs-fix-forgotten-format-specifier fs/ecryptfs/messaging.c --- a/fs/ecryptfs/messaging.c~ecryptfs-fix-forgotten-format-specifier +++ a/fs/ecryptfs/messaging.c @@ -169,7 +169,8 @@ int ecryptfs_process_helo(unsigned int t if (!new_id) { rc = -ENOMEM; ecryptfs_printk(KERN_ERR, "Failed to allocate memory; unable " - "to register daemon [%d] for user\n", pid, uid); + "to register daemon [%d] for user [%d]\n", + pid, uid); goto unlock; } if (!ecryptfs_find_daemon_id(uid, &old_id)) { _ Patches currently in -mm which might be from t.hisch@xxxxxxxxx are ecryptfs-fix-forgotten-format-specifier.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