Return 64 for pathconf(_PC_FILESIZEBITS) on tmpfs.

Sponsored by:	Chelsio Communications
This commit is contained in:
jhb 2017-10-02 23:23:12 +00:00
parent 4c002e6d8f
commit a0f436b3ed

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: