mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Return 64 for pathconf(_PC_FILESIZEBITS) on tmpfs.
Sponsored by: Chelsio Communications
This commit is contained in:
parent
af3b49ef41
commit
9d1d1d1900
1 changed files with 1 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue