diff options
author | rmacklem <rmacklem@FreeBSD.org> | 2011-11-20 16:46:50 +0000 |
---|---|---|
committer | rmacklem <rmacklem@FreeBSD.org> | 2011-11-20 16:46:50 +0000 |
commit | fcaf5b834dfce723c27a8c8fad656119742cf4dc (patch) | |
tree | 31c951c0ff4751be9f24e13ed8d38fdc852c4c5e /sys/fs/nfs | |
parent | 1aa32dd4315e6d7d4c12a79a107d8717f66f04a6 (diff) | |
download | FreeBSD-src-fcaf5b834dfce723c27a8c8fad656119742cf4dc.zip FreeBSD-src-fcaf5b834dfce723c27a8c8fad656119742cf4dc.tar.gz |
Add two arguments to the nfsrpc_rellockown() function in the NFSv4
client. This does not change the client's behaviour, but prepares
the code so that nfsrpc_rellockown() can be called elsewhere in a
future commit.
MFC after: 2 weeks
Diffstat (limited to 'sys/fs/nfs')
-rw-r--r-- | sys/fs/nfs/nfs_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/nfs/nfs_var.h b/sys/fs/nfs/nfs_var.h index f095641..d733073 100644 --- a/sys/fs/nfs/nfs_var.h +++ b/sys/fs/nfs/nfs_var.h @@ -418,8 +418,8 @@ int nfsrpc_pathconf(vnode_t, struct nfsv3_pathconf *, struct ucred *, NFSPROC_T *, struct nfsvattr *, int *, void *); int nfsrpc_renew(struct nfsclclient *, struct ucred *, NFSPROC_T *); -int nfsrpc_rellockown(struct nfsmount *, struct nfscllockowner *, - struct ucred *, NFSPROC_T *); +int nfsrpc_rellockown(struct nfsmount *, struct nfscllockowner *, uint8_t *, + int, struct ucred *, NFSPROC_T *); int nfsrpc_getdirpath(struct nfsmount *, u_char *, struct ucred *, NFSPROC_T *); int nfsrpc_delegreturn(struct nfscldeleg *, struct ucred *, |