Subject: [merged] ncpfs-inode-fix-mismatch-printk-formats-and-arguments.patch removed from -mm tree To: joe@xxxxxxxxxxx,petr@xxxxxxxxxxxxxx,mm-commits@xxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Wed, 09 Apr 2014 10:55:45 -0700 The patch titled Subject: ncpfs/inode.c: fix mismatch printk formats and arguments has been removed from the -mm tree. Its filename was ncpfs-inode-fix-mismatch-printk-formats-and-arguments.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Joe Perches <joe@xxxxxxxxxxx> Subject: ncpfs/inode.c: fix mismatch printk formats and arguments Conversions to ncp_dbg showed some format/argument mismatches so fix them. Signed-off-by: Joe Perches <joe@xxxxxxxxxxx> Cc: Petr Vandrovec <petr@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ncpfs/inode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN fs/ncpfs/inode.c~ncpfs-inode-fix-mismatch-printk-formats-and-arguments fs/ncpfs/inode.c --- a/fs/ncpfs/inode.c~ncpfs-inode-fix-mismatch-printk-formats-and-arguments +++ a/fs/ncpfs/inode.c @@ -683,7 +683,7 @@ static int ncp_fill_super(struct super_b ncp_unlock_server(server); if (error < 0) goto out_rxbuf; - ncp_dbg(1, "NCP_SBP(sb) = %x\n", (int) NCP_SBP(sb)); + ncp_dbg(1, "NCP_SBP(sb) = %p\n", NCP_SBP(sb)); error = -EMSGSIZE; /* -EREMOTESIDEINCOMPATIBLE */ #ifdef CONFIG_NCPFS_PACKET_SIGNING @@ -986,7 +986,7 @@ int ncp_notify_change(struct dentry *den if ((attr->ia_valid & ATTR_SIZE) != 0) { int written; - ncp_dbg(1, "trying to change size to %ld\n", attr->ia_size); + ncp_dbg(1, "trying to change size to %llu\n", attr->ia_size); if ((result = ncp_make_open(inode, O_WRONLY)) < 0) { result = -EACCES; _ Patches currently in -mm which might be from joe@xxxxxxxxxxx are origin.patch mm-utilc-add-kstrimdup.patch checkpatch-always-warn-on-missing-blank-line-after-variable-declaration-block.patch checkpatch-reduce-false-positives-for-missing-blank-line-after-declarations-test.patch checkpatch-reduce-false-positives-for-missing-blank-line-after-declarations-test-fix.patch linux-next.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