Return 64 for pathconf(_PC_FILESIZEBITS) on tmpfs.

Sponsored by:	Chelsio Communications
This commit is contained in:
John Baldwin 2017-10-02 23:23:12 +00:00
parent af3b49ef41
commit 9d1d1d1900

View File

@ -1353,7 +1353,7 @@ tmpfs_pathconf(struct vop_pathconf_args *v)
break;
case _PC_FILESIZEBITS:
*retval = 0; /* XXX Don't know which value should I return. */
*retval = 64;
break;
default: