Searched refs:slpflag (Results 1 - 5 of 5) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs_bio.c639 int slpflag = PCATCH; local
692 msleep(bp, nfs_buf_mutex, slpflag|(PRIBIO+1)|PDROP,
693 "nfsbufget", (slpflag == PCATCH) ? NULL : &ts);
694 slpflag = 0;
1299 nfs_buf_acquire(struct nfsbuf *bp, int flags, int slpflag, int slptimeo) argument
1318 error = msleep(bp, nfs_buf_mutex, slpflag | (PRIBIO + 1),
2329 int error = 0, slpflag = (nmp->nm_flag & NFSMNT_INT) ? PCATCH : 0; local
2338 msleep(&nmp->nm_asyncwrites, &nmp->nm_lock, slpflag|(PZERO-1), "nfsasyncwrites", &ts);
2339 slpflag = 0;
3292 int error = 0, error2, slptimeo = 0, slpflag local
3484 nfs_vinvalbuf_internal( nfsnode_t np, int flags, thread_t thd, kauth_cred_t cred, int slpflag, int slptimeo) argument
3635 int error, rv, slpflag, slptimeo, nflags; local
[all...]
H A Dnfs_socket.c693 int error, error2, sotype, rexmit, slpflag = 0, needrecon; local
725 slpflag |= PCATCH;
751 msleep(req, &nmp->nm_lock, slpflag|PSOCK, "nfsconnectwait", &ts);
752 slpflag = 0;
777 slpflag = ((nmp->nm_flag & NFSMNT_INT) && req->r_thread) ? PCATCH : 0;
791 msleep(req, &nmp->nm_lock, slpflag | (PZERO - 1), "nfswaitcwnd", &ts);
792 slpflag = 0;
1289 int error = 0, slpflag; local
1292 slpflag = PCATCH;
1294 slpflag
1823 int delay, slpflag = (nmp->nm_flag & NFSMNT_INT) ? PCATCH : 0; local
2008 int slpflag = (req->r_nmp && (req->r_nmp->nm_flag & NFSMNT_INT) && req->r_thread) ? PCATCH : 0; local
2466 int error = 0, slpflag = 0; local
[all...]
H A Dnfs_gss.c378 int slpflag = 0; local
433 slpflag = (PZERO-1) | PDROP | (((nmp->nm_flag & NFSMNT_INT) && req->r_thread) ? PCATCH : 0);
434 msleep(cp, cp->gss_clnt_mtx, slpflag, "ctxwait", NULL);
454 slpflag = (PZERO-1) | (((nmp->nm_flag & NFSMNT_INT) && req->r_thread) ? PCATCH : 0);
455 msleep(cp, cp->gss_clnt_mtx, slpflag, "seqwin", NULL);
/macosx-10.5.8/xnu-1228.15.4/bsd/vfs/
H A Dvfs_bio.c120 static buf_t getnewbuf(int slpflag, int slptimeo, int *queue);
123 static errno_t buf_acquire_locked(buf_t bp, int flags, int slpflag, int slptimeo);
1038 buf_invalidateblks(vnode_t vp, int flags, int slpflag, int slptimeo) argument
1078 if ( (error = (int)buf_acquire_locked(bp, BAC_REMOVE | BAC_SKIP_LOCKED, slpflag, slptimeo)) ) {
1140 if ( (error = (int)buf_acquire_locked(bp, BAC_REMOVE | BAC_SKIP_LOCKED, slpflag, slptimeo)) ) {
2216 buf_getblk(vnode_t vp, daddr64_t blkno, int size, int slpflag, int slptimeo, int operation) argument
2260 err = msleep(bp, buf_mtxp, slpflag | PDROP | (PRIBIO + 1), "buf_getblk", &ts);
2266 if (err && ((slpflag & PCATCH) || ((err == EWOULDBLOCK) && slptimeo)))
2364 if ((bp = getnewbuf(slpflag, slptimeo, &queue)) == NULL)
2661 getnewbuf(int slpflag, in argument
3027 buf_acquire(buf_t bp, int flags, int slpflag, int slptimeo) argument
3041 buf_acquire_locked(buf_t bp, int flags, int slpflag, int slptimeo) argument
[all...]
H A Dvfs_subr.c319 vnode_waitforwrites(vnode_t vp, int output_target, int slpflag, int slptimeout, const char *msg) { argument
327 slpflag &= ~PDROP;
339 error = msleep((caddr_t)&vp->v_numoutput, &vp->v_lock, (slpflag | (PRIBIO + 1)), msg, &ts);

Completed in 103 milliseconds