Skip to content

Commit

Permalink
block, dax: use correct format string in bdev_dax_supported
Browse files Browse the repository at this point in the history
The new message has an incorrect format string, causing a warning in some
configurations:

fs/block_dev.c: In function 'bdev_dax_supported':
fs/block_dev.c:779:5: error: format '%d' expects argument of type 'int', but argument 2 has type 'long int' [-Werror=format=]
     "error: dax access failed (%d)", len);

This changes it to use the correct %ld instead of %d.

Fixes: 2093f2e ("block, dax: convert bdev_dax_supported() to dax_direct_access()")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
  • Loading branch information
Arnd Bergmann authored and Dan Williams committed May 1, 2017
1 parent 6abccd1 commit 67fd389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/block_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ int bdev_dax_supported(struct super_block *sb, int blocksize)

if (len < 1) {
vfs_msg(sb, KERN_ERR,
"error: dax access failed (%d)", len);
"error: dax access failed (%ld)", len);
return len < 0 ? len : -EIO;
}

Expand Down

0 comments on commit 67fd389

Please sign in to comment.