[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20070926233520.5db0e8c0@the-village.bc.nu>
Date: Wed, 26 Sep 2007 23:35:20 +0100
From: Alan Cox <alan@...rguk.ukuu.org.uk>
To: akpm@...l.org, linux-kernel@...r.kernel.org
Subject: [PATCH] mm ecryptfs warning spew on 64bit
Its a size_t to use %Zd
Signed-off-by: Alan Cox <alan@...hat.com>
diff -u --new-file --exclude-from /usr/src/exclude --recursive linux.vanilla-2.6.23rc8-mm1/fs/ecryptfs/crypto.c linux-2.6.23rc8-mm1/fs/ecryptfs/crypto.c
--- linux.vanilla-2.6.23rc8-mm1/fs/ecryptfs/crypto.c 2007-09-26 16:46:54.000000000 +0100
+++ linux-2.6.23rc8-mm1/fs/ecryptfs/crypto.c 2007-09-26 17:31:47.000000000 +0100
@@ -1439,7 +1439,7 @@
* crypt_stat->num_header_extents_at_front)
< ECRYPTFS_MINIMUM_HEADER_EXTENT_SIZE)) {
rc = -EINVAL;
- printk(KERN_WARNING "Invalid number of header extents: [%d]\n",
+ printk(KERN_WARNING "Invalid number of header extents: [%Zd]\n",
crypt_stat->num_header_extents_at_front);
}
return rc;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists