[PATCH] mm ecryptfs warning spew on 64bit

From: Alan Cox
Date: Wed Sep 26 2007 - 18:29:26 EST


Its a size_t to use %Zd

Signed-off-by: Alan Cox <alan@xxxxxxxxxx>

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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/