[PATCH -next] exofs: fix printk format warnings

From: Randy Dunlap
Date: Thu Mar 26 2009 - 17:45:27 EST


From: Randy Dunlap <randy.dunlap@xxxxxxxxxx>

Fix exofs printk format warnings:

fs/exofs/inode.c:184: warning: format '%zx' expects type 'size_t', but argument 6 has type 'long unsigned int'
fs/exofs/inode.c:291: warning: format '%zx' expects type 'size_t', but argument 6 has type 'long unsigned int'
fs/exofs/inode.c:373: warning: format '%zx' expects type 'size_t', but argument 7 has type 'long unsigned int'
fs/exofs/inode.c:461: warning: format '%zx' expects type 'size_t', but argument 6 has type 'long unsigned int'
fs/exofs/inode.c:534: warning: format '%zx' expects type 'size_t', but argument 7 has type 'long unsigned int'
fs/exofs/inode.c:610: warning: format '%zx' expects type 'size_t', but argument 5 has type 'long unsigned int'

Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx>
cc: Boaz Harrosh <bharrosh@xxxxxxxxxxx>
---
fs/exofs/inode.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

--- linux-next-20090325.orig/fs/exofs/inode.c
+++ linux-next-20090325/fs/exofs/inode.c
@@ -182,7 +182,7 @@ static int __readpages_done(struct osd_r
good_bytes = pcol->length - resid;

EXOFS_DBGMSG("readpages_done(%ld) good_bytes=%llx"
- " length=%zx nr_pages=%u\n",
+ " length=%lx nr_pages=%u\n",
pcol->inode->i_ino, _LLU(good_bytes), pcol->length,
pcol->nr_pages);

@@ -288,7 +288,7 @@ static int read_exec(struct page_collect

atomic_inc(&pcol->sbi->s_curr_pending);

- EXOFS_DBGMSG("read_exec obj=%llx start=%llx length=%zx\n",
+ EXOFS_DBGMSG("read_exec obj=%llx start=%llx length=%lx\n",
obj.id, _LLU(i_start), pcol->length);

/* pages ownership was passed to pcol_copy */
@@ -371,7 +371,7 @@ try_again:
ret = pcol_add_page(pcol, page, len);
if (ret) {
EXOFS_DBGMSG("Failed pcol_add_page pages[i]=%p "
- "len=%zx nr_pages=%u length=%zx\n",
+ "len=%zx nr_pages=%u length=%lx\n",
page, len, pcol->nr_pages, pcol->length);

/* split the request, and start again with current page */
@@ -459,7 +459,7 @@ static void writepages_done(struct osd_r
good_bytes = pcol->length - resid;

EXOFS_DBGMSG("writepages_done(%lx) good_bytes=%llx"
- " length=%zx nr_pages=%u\n",
+ " length=%lx nr_pages=%u\n",
pcol->inode->i_ino, _LLU(good_bytes), pcol->length,
pcol->nr_pages);

@@ -531,7 +531,7 @@ static int write_exec(struct page_collec
}

atomic_inc(&pcol->sbi->s_curr_pending);
- EXOFS_DBGMSG("write_exec(%lx, %lx) start=%llx length=%zx\n",
+ EXOFS_DBGMSG("write_exec(%lx, %lx) start=%llx length=%lx\n",
pcol->inode->i_ino, pcol->pg_first, _LLU(i_start),
pcol->length);
/* pages ownership was passed to pcol_copy */
@@ -608,7 +608,7 @@ try_again:
ret = pcol_add_page(pcol, page, len);
if (unlikely(ret)) {
EXOFS_DBGMSG("Failed pcol_add_page "
- "nr_pages=%u total_length=%zx\n",
+ "nr_pages=%u total_length=%lx\n",
pcol->nr_pages, pcol->length);

/* split the request, next loop will start again */
--
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/