Re: [PATCH v2 046/110] udf: use PRIino format for i_ino
Jan Kara <[email protected]> Tue, 3 Mar 2026 12:27:07 +0100
| Newsgroups | gmane.linux.file-systems.f2fs,gmane.comp.video.dri.devel,gmane.linux.hams,gmane.comp.file-systems.ceph.devel,gmane.linux.kernel,gmane.linux.kernel.perf.user,gmane.linux.drivers.video-input-infrastructure,gmane.linux.kernel.cifs,gmane.comp.file-systems.nilfs.user,gmane.comp.file-systems.coda.general,gmane.linux.can,gmane.linux.drivers.mtd,gmane.comp.freedesktop.amd-gfx,gmane.linux.kernel.autofs,gmane.linux.nfs,gmane.comp.file-systems.ext4,gmane.linux.kernel.mm,gmane.network.samba.internals,gmane.linux.network,gmane.linux.file-systems,gmane.linux.kernel.bpf,gmane.comp.file-systems.ecryptfs.general,gmane.linux.file-systems.union,gmane.linux.x25,gmane.linux.bluez.kernel,gmane.comp.security.apparmor,gmane.linux.kernel.lsm |
|---|---|
| Message-ID | <m67mgdgcjw6hhbrluvsdipezmgzmdfewqw4dlkbmqlbxi6gv5x@bd3aqfjjcqsv> |
On Mon 02-03-26 15:24:30, Jeff Layton wrote: > Convert udf i_ino format strings to use the PRIino format > macro in preparation for the widening of i_ino via kino_t. > > Signed-off-by: Jeff Layton <[email protected]> Looks good. Feel free to add: Reviewed-by: Jan Kara <[email protected]> Honza > --- > fs/udf/directory.c | 18 +++++++++--------- > fs/udf/file.c | 2 +- > fs/udf/inode.c | 12 ++++++------ > fs/udf/namei.c | 8 ++++---- > fs/udf/super.c | 2 +- > 5 files changed, 21 insertions(+), 21 deletions(-) > > diff --git a/fs/udf/directory.c b/fs/udf/directory.c > index 632453aa38934a0b58b420717ec0674c85627ce5..c825e11c017f652500a3dfc83905679ef86ec570 100644 > --- a/fs/udf/directory.c > +++ b/fs/udf/directory.c > @@ -22,7 +22,7 @@ static int udf_verify_fi(struct udf_fileident_iter *iter) > > if (iter->fi.descTag.tagIdent != cpu_to_le16(TAG_IDENT_FID)) { > udf_err(iter->dir->i_sb, > - "directory (ino %lu) has entry at pos %llu with incorrect tag %x\n", > + "directory (ino %" PRIino "u) has entry at pos %llu with incorrect tag %x\n", > iter->dir->i_ino, (unsigned long long)iter->pos, > le16_to_cpu(iter->fi.descTag.tagIdent)); > return -EFSCORRUPTED; > @@ -30,7 +30,7 @@ static int udf_verify_fi(struct udf_fileident_iter *iter) > len = udf_dir_entry_len(&iter->fi); > if (le16_to_cpu(iter->fi.lengthOfImpUse) & 3) { > udf_err(iter->dir->i_sb, > - "directory (ino %lu) has entry at pos %llu with unaligned length of impUse field\n", > + "directory (ino %" PRIino "u) has entry at pos %llu with unaligned length of impUse field\n", > iter->dir->i_ino, (unsigned long long)iter->pos); > return -EFSCORRUPTED; > } > @@ -41,20 +41,20 @@ static int udf_verify_fi(struct udf_fileident_iter *iter) > */ > if (len > 1 << iter->dir->i_blkbits) { > udf_err(iter->dir->i_sb, > - "directory (ino %lu) has too big (%u) entry at pos %llu\n", > + "directory (ino %" PRIino "u) has too big (%u) entry at pos %llu\n", > iter->dir->i_ino, len, (unsigned long long)iter->pos); > return -EFSCORRUPTED; > } > if (iter->pos + len > iter->dir->i_size) { > udf_err(iter->dir->i_sb, > - "directory (ino %lu) has entry past directory size at pos %llu\n", > + "directory (ino %" PRIino "u) has entry past directory size at pos %llu\n", > iter->dir->i_ino, (unsigned long long)iter->pos); > return -EFSCORRUPTED; > } > if (udf_dir_entry_len(&iter->fi) != > sizeof(struct tag) + le16_to_cpu(iter->fi.descTag.descCRCLength)) { > udf_err(iter->dir->i_sb, > - "directory (ino %lu) has entry where CRC length (%u) does not match entry length (%u)\n", > + "directory (ino %" PRIino "u) has entry where CRC length (%u) does not match entry length (%u)\n", > iter->dir->i_ino, > (unsigned)le16_to_cpu(iter->fi.descTag.descCRCLength), > (unsigned)(udf_dir_entry_len(&iter->fi) - > @@ -78,7 +78,7 @@ static int udf_copy_fi(struct udf_fileident_iter *iter) > } > if (iter->dir->i_size < iter->pos + sizeof(struct fileIdentDesc)) { > udf_err(iter->dir->i_sb, > - "directory (ino %lu) has entry straddling EOF\n", > + "directory (ino %" PRIino "u) has entry straddling EOF\n", > iter->dir->i_ino); > return -EFSCORRUPTED; > } > @@ -184,7 +184,7 @@ static int udf_fiiter_advance_blk(struct udf_fileident_iter *iter) > return 0; > } > udf_err(iter->dir->i_sb, > - "extent after position %llu not allocated in directory (ino %lu)\n", > + "extent after position %llu not allocated in directory (ino %" PRIino "u)\n", > (unsigned long long)iter->pos, iter->dir->i_ino); > return -EFSCORRUPTED; > } > @@ -272,7 +272,7 @@ int udf_fiiter_init(struct udf_fileident_iter *iter, struct inode *dir, > if (pos == dir->i_size) > return 0; > udf_err(dir->i_sb, > - "position %llu not allocated in directory (ino %lu)\n", > + "position %llu not allocated in directory (ino %" PRIino "u)\n", > (unsigned long long)pos, dir->i_ino); > err = -EFSCORRUPTED; > goto out; > @@ -483,7 +483,7 @@ int udf_fiiter_append_blk(struct udf_fileident_iter *iter) > &iter->loffset, &etype); > if (err <= 0 || etype != (EXT_RECORDED_ALLOCATED >> 30)) { > udf_err(iter->dir->i_sb, > - "block %llu not allocated in directory (ino %lu)\n", > + "block %llu not allocated in directory (ino %" PRIino "u)\n", > (unsigned long long)block, iter->dir->i_ino); > return -EFSCORRUPTED; > } > diff --git a/fs/udf/file.c b/fs/udf/file.c > index 32ae7cfd72c549958b70824b449cf146f6750f44..ab8093b87dc8f21ce8af6a72621e2868fb4b9a82 100644 > --- a/fs/udf/file.c > +++ b/fs/udf/file.c > @@ -133,7 +133,7 @@ long udf_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) > int result; > > if (file_permission(filp, MAY_READ) != 0) { > - udf_debug("no permission to access inode %lu\n", inode->i_ino); > + udf_debug("no permission to access inode %" PRIino "u\n", inode->i_ino); > return -EPERM; > } > > diff --git a/fs/udf/inode.c b/fs/udf/inode.c > index 7fae8002344a0e1e7e51022e97f1e0e2424185f9..ecc22aded0d287ccdfb34b42a0d82e392054f585 100644 > --- a/fs/udf/inode.c > +++ b/fs/udf/inode.c > @@ -147,7 +147,7 @@ void udf_evict_inode(struct inode *inode) > if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB && > inode->i_size != iinfo->i_lenExtents) { > udf_warn(inode->i_sb, > - "Inode %lu (mode %o) has inode size %llu different from extent length %llu. Filesystem need not be standards compliant.\n", > + "Inode %" PRIino "u (mode %o) has inode size %llu different from extent length %llu. Filesystem need not be standards compliant.\n", > inode->i_ino, inode->i_mode, > (unsigned long long)inode->i_size, > (unsigned long long)iinfo->i_lenExtents); > @@ -1386,13 +1386,13 @@ static int udf_read_inode(struct inode *inode, bool hidden_inode) > */ > bh = udf_read_ptagged(inode->i_sb, iloc, 0, &ident); > if (!bh) { > - udf_err(inode->i_sb, "(ino %lu) failed !bh\n", inode->i_ino); > + udf_err(inode->i_sb, "(ino %" PRIino "u) failed !bh\n", inode->i_ino); > return -EIO; > } > > if (ident != TAG_IDENT_FE && ident != TAG_IDENT_EFE && > ident != TAG_IDENT_USE) { > - udf_err(inode->i_sb, "(ino %lu) failed ident=%u\n", > + udf_err(inode->i_sb, "(ino %" PRIino "u) failed ident=%u\n", > inode->i_ino, ident); > goto out; > } > @@ -1641,7 +1641,7 @@ static int udf_read_inode(struct inode *inode, bool hidden_inode) > udf_debug("METADATA BITMAP FILE-----\n"); > break; > default: > - udf_err(inode->i_sb, "(ino %lu) failed unknown file type=%u\n", > + udf_err(inode->i_sb, "(ino %" PRIino "u) failed unknown file type=%u\n", > inode->i_ino, fe->icbTag.fileType); > goto out; > } > @@ -1942,7 +1942,7 @@ static int udf_update_inode(struct inode *inode, int do_sync) > if (do_sync) { > sync_dirty_buffer(bh); > if (buffer_write_io_error(bh)) { > - udf_warn(inode->i_sb, "IO error syncing udf inode [%08lx]\n", > + udf_warn(inode->i_sb, "IO error syncing udf inode [%08" PRIino "x]\n", > inode->i_ino); > err = -EIO; > } > @@ -2224,7 +2224,7 @@ int udf_next_aext(struct inode *inode, struct extent_position *epos, > > if (++indirections > UDF_MAX_INDIR_EXTS) { > udf_err(inode->i_sb, > - "too many indirect extents in inode %lu\n", > + "too many indirect extents in inode %" PRIino "u\n", > inode->i_ino); > return -EFSCORRUPTED; > } > diff --git a/fs/udf/namei.c b/fs/udf/namei.c > index 5f2e9a892bffa9579143cedf71d80efa7ad6e9fb..32209549a31f451a486918e673a41497bef42e89 100644 > --- a/fs/udf/namei.c > +++ b/fs/udf/namei.c > @@ -550,7 +550,7 @@ static int udf_unlink(struct inode *dir, struct dentry *dentry) > goto end_unlink; > > if (!inode->i_nlink) { > - udf_debug("Deleting nonexistent file (%lu), %u\n", > + udf_debug("Deleting nonexistent file (%" PRIino "u), %u\n", > inode->i_ino, inode->i_nlink); > set_nlink(inode, 1); > } > @@ -809,7 +809,7 @@ static int udf_rename(struct mnt_idmap *idmap, struct inode *old_dir, > &diriter); > if (retval == -ENOENT) { > udf_err(old_inode->i_sb, > - "directory (ino %lu) has no '..' entry\n", > + "directory (ino %" PRIino "u) has no '..' entry\n", > old_inode->i_ino); > retval = -EFSCORRUPTED; > } > @@ -821,7 +821,7 @@ static int udf_rename(struct mnt_idmap *idmap, struct inode *old_dir, > old_dir->i_ino) { > retval = -EFSCORRUPTED; > udf_err(old_inode->i_sb, > - "directory (ino %lu) has parent entry pointing to another inode (%lu != %u)\n", > + "directory (ino %" PRIino "u) has parent entry pointing to another inode (%" PRIino "u != %u)\n", > old_inode->i_ino, old_dir->i_ino, > udf_get_lb_pblock(old_inode->i_sb, &tloc, 0)); > goto out_oiter; > @@ -869,7 +869,7 @@ static int udf_rename(struct mnt_idmap *idmap, struct inode *old_dir, > retval = udf_fiiter_find_entry(old_dir, &old_dentry->d_name, &oiter); > if (retval) { > udf_err(old_dir->i_sb, > - "failed to find renamed entry again in directory (ino %lu)\n", > + "failed to find renamed entry again in directory (ino %" PRIino "u)\n", > old_dir->i_ino); > } else { > udf_fiiter_delete_entry(&oiter); > diff --git a/fs/udf/super.c b/fs/udf/super.c > index 27f463fd1d89e8ae4844cd70c291d737aee1589e..c6e372d573885742745d3ff4b3b017facf228a32 100644 > --- a/fs/udf/super.c > +++ b/fs/udf/super.c > @@ -1166,7 +1166,7 @@ static int udf_fill_partdesc_info(struct super_block *sb, > } > map->s_uspace.s_table = inode; > map->s_partition_flags |= UDF_PART_FLAG_UNALLOC_TABLE; > - udf_debug("unallocSpaceTable (part %d) @ %lu\n", > + udf_debug("unallocSpaceTable (part %d) @ %" PRIino "u\n", > p_index, map->s_uspace.s_table->i_ino); > } > > > -- > 2.53.0 > -- Jan Kara <[email protected]> SUSE Labs, CR