Remove comments made obsolete by the ino64 work.

MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Mark Johnston 2018-11-19 17:33:44 +00:00
parent 2863fd2f27
commit 3d2a0fe762
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=340639
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;