Lines Matching refs:sop
356 nfs4_get_stateowner(struct nfs4_stateowner *sop) in nfs4_get_stateowner() argument
358 atomic_inc(&sop->so_count); in nfs4_get_stateowner()
359 return sop; in nfs4_get_stateowner()
363 same_owner_str(struct nfs4_stateowner *sop, struct xdr_netobj *owner) in same_owner_str() argument
365 return (sop->so_owner.len == owner->len) && in same_owner_str()
366 0 == memcmp(sop->so_owner.data, owner->data, owner->len); in same_owner_str()
1244 static inline void nfs4_free_stateowner(struct nfs4_stateowner *sop) in nfs4_free_stateowner() argument
1246 kfree(sop->so_owner.data); in nfs4_free_stateowner()
1247 sop->so_ops->so_free(sop); in nfs4_free_stateowner()
1250 static void nfs4_put_stateowner(struct nfs4_stateowner *sop) in nfs4_put_stateowner() argument
1252 struct nfs4_client *clp = sop->so_client; in nfs4_put_stateowner()
1256 if (!atomic_dec_and_lock(&sop->so_count, &clp->cl_lock)) in nfs4_put_stateowner()
1258 sop->so_ops->so_unhash(sop); in nfs4_put_stateowner()
1260 nfs4_free_stateowner(sop); in nfs4_put_stateowner()
4054 struct nfs4_stateowner *sop; in alloc_stateowner() local
4056 sop = kmem_cache_alloc(slab, GFP_KERNEL); in alloc_stateowner()
4057 if (!sop) in alloc_stateowner()
4060 xdr_netobj_dup(&sop->so_owner, owner, GFP_KERNEL); in alloc_stateowner()
4061 if (!sop->so_owner.data) { in alloc_stateowner()
4062 kmem_cache_free(slab, sop); in alloc_stateowner()
4066 INIT_LIST_HEAD(&sop->so_stateids); in alloc_stateowner()
4067 sop->so_client = clp; in alloc_stateowner()
4068 init_nfs4_replay(&sop->so_replay); in alloc_stateowner()
4069 atomic_set(&sop->so_count, 1); in alloc_stateowner()
4070 return sop; in alloc_stateowner()
5770 struct nfs4_stateowner *sop = stp->st_stateowner; in nfs4_seqid_op_checks() local
5773 status = nfsd4_check_seqid(cstate, sop, seqid); in nfs4_seqid_op_checks()
6197 static void nfs4_unhash_lockowner(struct nfs4_stateowner *sop) in nfs4_unhash_lockowner() argument
6199 unhash_lockowner_locked(lockowner(sop)); in nfs4_unhash_lockowner()
6202 static void nfs4_free_lockowner(struct nfs4_stateowner *sop) in nfs4_free_lockowner() argument
6204 struct nfs4_lockowner *lo = lockowner(sop); in nfs4_free_lockowner()
6831 struct nfs4_stateowner *sop; in nfsd4_release_lockowner() local
6851 list_for_each_entry(sop, &clp->cl_ownerstr_hashtbl[hashval], in nfsd4_release_lockowner()
6854 if (sop->so_is_open_owner || !same_owner_str(sop, owner)) in nfsd4_release_lockowner()
6858 lo = lockowner(sop); in nfsd4_release_lockowner()
6859 list_for_each_entry(stp, &sop->so_stateids, st_perstateowner) { in nfsd4_release_lockowner()
6867 nfs4_get_stateowner(sop); in nfsd4_release_lockowner()