Searched refs:lckdat (Results 1 – 1 of 1) sorted by relevance
250 reclock(vnode_t *vp, flock64_t *lckdat, int cmd, int flag, u_offset_t offset, in reclock() argument263 ((lckdat->l_type == F_RDLCK && (flag & FREAD) == 0) || in reclock()264 (lckdat->l_type == F_WRLCK && (flag & FWRITE) == 0))) in reclock()271 if ((lckdat->l_type == F_UNLCK) || in reclock()302 ASSERT(lckdat->l_whence == 0); in reclock()303 lock_request->l_start = lckdat->l_start; in reclock()304 lock_request->l_end = (lckdat->l_len == 0) ? MAX_U_OFFSET_T : in reclock()305 lckdat->l_start + (lckdat->l_len - 1); in reclock()308 error = flk_convert_lock_data(vp, lckdat, in reclock()323 lock_request->l_type = lckdat->l_type; in reclock()[all …]