Home | History | Annotate | Download | only in server

Lines Matching defs:other_lop

1533 	struct nfslock *other_lop = NULL;
1585 MALLOC(other_lop, struct nfslock *, sizeof (struct nfslock),
2019 if (other_lop) {
2020 FREE((caddr_t)other_lop, M_NFSDLOCK);
2021 other_lop = NULL;
2043 nfsrv_updatelock(stp, new_lopp, &other_lop, lfp);
2083 if (other_lop) {
2084 FREE((caddr_t)other_lop, M_NFSDLOCK);
2085 other_lop = NULL;
2177 nfsrv_updatelock(lckstp, new_lopp, &other_lop, lfp);
2231 if (other_lop)
2232 FREE((caddr_t)other_lop, M_NFSDLOCK);
3672 struct nfslock *other_lop = *other_lopp;
3758 * For unlock, we use new_lop as other_lop and tmp, since
3759 * other_lop and new_lop are the same for this case.
3764 if (other_lop == NULL) {
3767 other_lop = new_lop;
3770 other_lop->lo_first = new_lop->lo_end;
3771 other_lop->lo_end = lop->lo_end;
3772 other_lop->lo_flags = lop->lo_flags;
3773 other_lop->lo_stp = stp;
3774 other_lop->lo_lfp = lfp;
3776 nfsrv_insertlock(other_lop, lop, stp, lfp);
5683 struct nfslock *new_lop, *other_lop;
5687 other_lop = malloc(sizeof (struct nfslock), M_NFSDLOCK,
5690 other_lop = NULL;
5694 nfsrv_updatelock(NULL, &new_lop, &other_lop, lfp);
5697 if (other_lop != NULL)
5698 free(other_lop, M_NFSDLOCK);