Lines Matching defs:wlt
1218 struct winlocktimeout wlt;
1220 if (ddi_copyin((caddr_t)arg, &wlt, sizeof (wlt), mode) != 0) {
1224 if ((lp = seglock_findlock(wlt.sy_ident)) == NULL)
1227 lp->timeout = MSEC_TO_TICK_ROUNDUP(wlt.sy_timeout);
1240 if (wlt.sy_flags & UFLAGS) {
1242 sdp->flag = sdp->flag & KFLAGS | wlt.sy_flags & UFLAGS;
1258 struct winlocktimeout wlt;
1260 if (ddi_copyin((caddr_t)arg, &wlt, sizeof (wlt), mode) != 0)
1263 if ((lp = seglock_findlock(wlt.sy_ident)) == NULL)
1266 wlt.sy_timeout = TICK_TO_MSEC(lp->timeout);
1273 wlt.sy_flags = sdp->flag & UFLAGS;
1275 wlt.sy_flags = 0;
1279 if (ddi_copyout(&wlt, (caddr_t)arg, sizeof (wlt), mode) != 0)