linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs/ntfs: Use '%lx' instead of '%zx'
@ 2014-06-22  3:14 Chen Gang
  2014-06-22  6:06 ` Joe Perches
  0 siblings, 1 reply; 3+ messages in thread
From: Chen Gang @ 2014-06-22  3:14 UTC (permalink / raw)
  To: anton; +Cc: linux-ntfs-dev, linux-kernel@vger.kernel.org, Liqin Chen,
	Lennox Wu

For subtraction between 2 pointers, the result's type is 'long', so
need use '%lx' instead of '%zx'.

The related warning (allmodconfig under unicore32):

    CC [M]  fs/ntfs/compress.o
  fs/ntfs/compress.c: In function 'ntfs_decompress':
  fs/ntfs/compress.c:207:2: warning: format '%zx' expects argument of type 'size_t', but argument 5 has type 'long int' [-Wformat=]
    ntfs_debug("Beginning sub-block at offset = 0x%zx in the cb.",
    ^
    CC [M]  fs/ntfs/dir.o
  fs/ntfs/dir.c: In function 'ntfs_readdir':
  fs/ntfs/dir.c:1197:3: warning: format '%zx' expects argument of type 'size_t', but argument 5 has type 'long int' [-Wformat=]
     ntfs_debug("In index root, offset 0x%zx.", (u8*)ie - (u8*)ir);
     ^

Also let the related code match linux kernel styles which is found by
'scripts/checkpatch.pl'.


Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
---
 fs/ntfs/compress.c | 2 +-
 fs/ntfs/dir.c      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/ntfs/compress.c b/fs/ntfs/compress.c
index f82498c..51abeb3 100644
--- a/fs/ntfs/compress.c
+++ b/fs/ntfs/compress.c
@@ -204,7 +204,7 @@ static int ntfs_decompress(struct page *dest_pages[], int *dest_index,
 
 	ntfs_debug("Entering, cb_size = 0x%x.", cb_size);
 do_next_sb:
-	ntfs_debug("Beginning sub-block at offset = 0x%zx in the cb.",
+	ntfs_debug("Beginning sub-block at offset = 0x%lx in the cb.",
 			cb - cb_start);
 	/*
 	 * Have we reached the end of the compression block or the end of the
diff --git a/fs/ntfs/dir.c b/fs/ntfs/dir.c
index 9e38daf..cf85530 100644
--- a/fs/ntfs/dir.c
+++ b/fs/ntfs/dir.c
@@ -1194,7 +1194,7 @@ static int ntfs_readdir(struct file *file, struct dir_context *actor)
 	 * or signals an error (both covered by the rc test).
 	 */
 	for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) {
-		ntfs_debug("In index root, offset 0x%zx.", (u8*)ie - (u8*)ir);
+		ntfs_debug("In index root, offset 0x%lx.", (u8 *)ie - (u8 *)ir);
 		/* Bounds checks. */
 		if (unlikely((u8*)ie < (u8*)ir || (u8*)ie +
 				sizeof(INDEX_ENTRY_HEADER) > index_end ||
-- 
1.9.2.459.g68773ac

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] fs/ntfs: Use '%lx' instead of '%zx'
  2014-06-22  3:14 [PATCH] fs/ntfs: Use '%lx' instead of '%zx' Chen Gang
@ 2014-06-22  6:06 ` Joe Perches
  2014-06-23  1:29   ` Chen Gang
  0 siblings, 1 reply; 3+ messages in thread
From: Joe Perches @ 2014-06-22  6:06 UTC (permalink / raw)
  To: Chen Gang
  Cc: anton, linux-ntfs-dev, linux-kernel@vger.kernel.org, Liqin Chen,
	Lennox Wu

On Sun, 2014-06-22 at 11:14 +0800, Chen Gang wrote:
> For subtraction between 2 pointers, the result's type is 'long', so
> need use '%lx' instead of '%zx'.

result should be a ptrdiff_t so please use %tx




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] fs/ntfs: Use '%lx' instead of '%zx'
  2014-06-22  6:06 ` Joe Perches
@ 2014-06-23  1:29   ` Chen Gang
  0 siblings, 0 replies; 3+ messages in thread
From: Chen Gang @ 2014-06-23  1:29 UTC (permalink / raw)
  To: Joe Perches
  Cc: anton, linux-ntfs-dev, linux-kernel@vger.kernel.org, Liqin Chen,
	Lennox Wu

On 06/22/2014 02:06 PM, Joe Perches wrote:
> On Sun, 2014-06-22 at 11:14 +0800, Chen Gang wrote:
>> For subtraction between 2 pointers, the result's type is 'long', so
>> need use '%lx' instead of '%zx'.
> 
> result should be a ptrdiff_t so please use %tx
> 

OK, thanks, I shall send patch v2 for it.

Thanks.
-- 
Chen Gang

Open, share, and attitude like air, water, and life which God blessed

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-06-23  1:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-22  3:14 [PATCH] fs/ntfs: Use '%lx' instead of '%zx' Chen Gang
2014-06-22  6:06 ` Joe Perches
2014-06-23  1:29   ` Chen Gang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).