Now that i_ino is u64 and the PRIino format macro has been removed, replace all uses in hpfs with the concrete format strings.
Signed-off-by: Jeff Layton <[email protected]> --- fs/hpfs/dir.c | 2 +- fs/hpfs/dnode.c | 2 +- fs/hpfs/ea.c | 2 +- fs/hpfs/inode.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/hpfs/dir.c b/fs/hpfs/dir.c index 9db0e7a101c2a8d9cc265c14ed74c58533ab31ff..3bf11202e2d3c585a3f1aefb5180da82fd7d4a3f 100644 --- a/fs/hpfs/dir.c +++ b/fs/hpfs/dir.c @@ -96,7 +96,7 @@ static int hpfs_readdir(struct file *file, struct dir_context *ctx) } if (!fnode_is_dir(fno)) { e = 1; - hpfs_error(inode->i_sb, "not a directory, fnode %08" PRIino "x", + hpfs_error(inode->i_sb, "not a directory, fnode %08llx", inode->i_ino); } if (hpfs_inode->i_dno != le32_to_cpu(fno->u.external[0].disk_secno)) { diff --git a/fs/hpfs/dnode.c b/fs/hpfs/dnode.c index 5df10c82f84ca40c4d65b97b6c6b61ec364029b5..8c6aa060fd874ac9ac844268b016491204d978fd 100644 --- a/fs/hpfs/dnode.c +++ b/fs/hpfs/dnode.c @@ -550,7 +550,7 @@ static void delete_empty_dnode(struct inode *i, dnode_secno dno) if (hpfs_sb(i->i_sb)->sb_chk) if (up != i->i_ino) { hpfs_error(i->i_sb, - "bad pointer to fnode, dnode %08x, pointing to %08x, should be %08" PRIino "x", + "bad pointer to fnode, dnode %08x, pointing to %08x, should be %08llx", dno, up, i->i_ino); return; diff --git a/fs/hpfs/ea.c b/fs/hpfs/ea.c index f4fce87110d77c6af47fd45e024fb913c09e82f7..4664f9ab06eef3795b33cebcdc57e598cf83b0e9 100644 --- a/fs/hpfs/ea.c +++ b/fs/hpfs/ea.c @@ -245,7 +245,7 @@ void hpfs_set_ea(struct inode *inode, struct fnode *fnode, const char *key, fnode->ea_offs = cpu_to_le16(0xc4); } if (le16_to_cpu(fnode->ea_offs) < 0xc4 || le16_to_cpu(fnode->ea_offs) + le16_to_cpu(fnode->acl_size_s) + le16_to_cpu(fnode->ea_size_s) > 0x200) { - hpfs_error(s, "fnode %08" PRIino "x: ea_offs == %03x, ea_size_s == %03x", + hpfs_error(s, "fnode %08llx: ea_offs == %03x, ea_size_s == %03x", inode->i_ino, le16_to_cpu(fnode->ea_offs), le16_to_cpu(fnode->ea_size_s)); return; diff --git a/fs/hpfs/inode.c b/fs/hpfs/inode.c index c82f5f7f435a1a6f6c26fc62ff0c680c26c9f4ad..0e932cc8be1b28353cffd8e62e26f77a02394edb 100644 --- a/fs/hpfs/inode.c +++ b/fs/hpfs/inode.c @@ -250,7 +250,7 @@ void hpfs_write_inode_nolock(struct inode *i) hpfs_brelse4(&qbh); } else hpfs_error(i->i_sb, - "directory %08" PRIino "x doesn't have '.' entry", + "directory %08llx doesn't have '.' entry", i->i_ino); } mark_buffer_dirty(bh); -- 2.53.0
