diff options
author | Rick Macklem <rmacklem@FreeBSD.org> | 2014-04-23 22:13:10 +0000 |
---|---|---|
committer | Rick Macklem <rmacklem@FreeBSD.org> | 2014-04-23 22:13:10 +0000 |
commit | c0990edac68e201e0a5c7eb2c3487bc28eb75a09 (patch) | |
tree | 0a0711bd1767f5e123431f92d08450fe0d4e8ed5 /sys/fs/nfsclient | |
parent | a88393ce0bddc4e074ed3f65380e456418979ad4 (diff) | |
download | src-test2-c0990edac68e201e0a5c7eb2c3487bc28eb75a09.tar.gz src-test2-c0990edac68e201e0a5c7eb2c3487bc28eb75a09.zip |
Notes
Diffstat (limited to 'sys/fs/nfsclient')
-rw-r--r-- | sys/fs/nfsclient/nfs_clvnops.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/fs/nfsclient/nfs_clvnops.c b/sys/fs/nfsclient/nfs_clvnops.c index 43774dd6f62e..2d13b06b6db7 100644 --- a/sys/fs/nfsclient/nfs_clvnops.c +++ b/sys/fs/nfsclient/nfs_clvnops.c @@ -3429,12 +3429,15 @@ nfs_pathconf(struct vop_pathconf_args *ap) struct thread *td = curthread; int attrflag, error; - if (NFS_ISV4(vp) || (NFS_ISV3(vp) && (ap->a_name == _PC_LINK_MAX || + if ((NFS_ISV34(vp) && (ap->a_name == _PC_LINK_MAX || ap->a_name == _PC_NAME_MAX || ap->a_name == _PC_CHOWN_RESTRICTED || - ap->a_name == _PC_NO_TRUNC))) { + ap->a_name == _PC_NO_TRUNC)) || + (NFS_ISV4(vp) && ap->a_name == _PC_ACL_NFS4)) { /* * Since only the above 4 a_names are returned by the NFSv3 * Pathconf RPC, there is no point in doing it for others. + * For NFSv4, the Pathconf RPC (actually a Getattr Op.) can + * be used for _PC_NFS4_ACL as well. */ error = nfsrpc_pathconf(vp, &pc, td->td_ucred, td, &nfsva, &attrflag, NULL); |