aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2018-11-19 17:33:44 +0000
committerMark Johnston <markj@FreeBSD.org>2018-11-19 17:33:44 +0000
commit3d2a0fe762b03afcad0c174c13a22776e24cd922 (patch)
tree5b10690e2b5a78d7000b6fc670db405c838d6047 /sys
parent2863fd2f271c6a69e00787d827f67f367815af1a (diff)
downloadsrc-3d2a0fe762b03afcad0c174c13a22776e24cd922.tar.gz
src-3d2a0fe762b03afcad0c174c13a22776e24cd922.zip
Remove comments made obsolete by the ino64 work.
MFC after: 3 days Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=340639
Diffstat (limited to 'sys')
-rw-r--r--sys/fs/fuse/fuse_internal.c2
-rw-r--r--sys/fs/fuse/fuse_internal.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/fuse/fuse_internal.c b/sys/fs/fuse/fuse_internal.c
index f8cb51d4549d..5982ccc7eafd 100644
--- a/sys/fs/fuse/fuse_internal.c
+++ b/sys/fs/fuse/fuse_internal.c
@@ -350,7 +350,7 @@ fuse_internal_readdir_processdata(struct uio *uio,
fiov_adjust(cookediov, bytesavail);
de = (struct dirent *)cookediov->base;
- de->d_fileno = fudge->ino; /* XXX: truncation */
+ de->d_fileno = fudge->ino;
de->d_reclen = bytesavail;
de->d_type = fudge->type;
de->d_namlen = fudge->namelen;
diff --git a/sys/fs/fuse/fuse_internal.h b/sys/fs/fuse/fuse_internal.h
index aeea9028125f..94ede8453754 100644
--- a/sys/fs/fuse/fuse_internal.h
+++ b/sys/fs/fuse/fuse_internal.h
@@ -212,7 +212,7 @@ fuse_internal_attr_fat2vat(struct mount *mp,
vattr_null(vap);
vap->va_fsid = mp->mnt_stat.f_fsid.val[0];
- vap->va_fileid = fat->ino; /* XXX cast from 64 bits to 32 */
+ vap->va_fileid = fat->ino;
vap->va_mode = fat->mode & ~S_IFMT;
vap->va_nlink = fat->nlink;
vap->va_uid = fat->uid;