Searched refs:slptimeo (Results 1 – 3 of 3) sorted by relevance
| /xnu-8019.80.24/bsd/vfs/ |
| H A D | vfs_bio.c | 119 static buf_t getnewbuf(int slpflag, int slptimeo, int *queue); 122 static errno_t buf_acquire_locked(buf_t bp, int flags, int slpflag, int slptimeo); 1665 buf_invalidateblks(vnode_t vp, int flags, int slpflag, int slptimeo) in buf_invalidateblks() argument 1720 if ((error = (int)buf_acquire_locked(bp, aflags, slpflag, slptimeo))) { in buf_invalidateblks() 1795 if ((error = (int)buf_acquire_locked(bp, aflags, slpflag, slptimeo))) { in buf_invalidateblks() 3053 buf_getblk(vnode_t vp, daddr64_t blkno, int size, int slpflag, int slptimeo, int operation) in buf_getblk() argument 3093 ts.tv_sec = (slptimeo / 1000); in buf_getblk() 3094 ts.tv_nsec = (slptimeo % 1000) * 10 * NSEC_PER_USEC * 1000; in buf_getblk() 3105 if (err && ((slpflag & PCATCH) || ((err == EWOULDBLOCK) && slptimeo))) { in buf_getblk() 3250 if ((bp = getnewbuf(slpflag, slptimeo, &queue)) == NULL) { in buf_getblk() [all …]
|
| /xnu-8019.80.24/bsd/sys/ |
| H A D | buf.h | 734 int buf_invalidateblks(vnode_t vp, int flags, int slpflag, int slptimeo); 1003 buf_t buf_getblk(vnode_t vp, daddr64_t blkno, int size, int slpflag, int slptimeo, int operation);
|
| /xnu-8019.80.24/bsd/nfs/ |
| H A D | nfs_bio.c | 1467 nfs_buf_acquire(struct nfsbuf *bp, int flags, int slpflag, int slptimeo) in nfs_buf_acquire() argument 1483 ts.tv_sec = (slptimeo / 100); in nfs_buf_acquire() 1485 ts.tv_nsec = (slptimeo % 100) * 10 * NSEC_PER_USEC * 1000; in nfs_buf_acquire() 3578 int error = 0, error2, slptimeo = 0, slpflag = 0; in nfs_flush() local 3634 while ((error = nfs_buf_acquire(bp, flags, slpflag, slptimeo))) { in nfs_flush() 3652 slptimeo = 2 * hz; in nfs_flush() 3705 while ((error = vnode_waitforwrites(NFSTOV(np), 0, slpflag, slptimeo, "nfsflush"))) { in nfs_flush() 3713 slptimeo = 2 * hz; in nfs_flush() 3803 int slptimeo) in nfs_vinvalbuf_internal() argument 3832 while ((error = nfs_buf_acquire(bp, NBAC_REMOVE, slpflag, slptimeo))) { in nfs_vinvalbuf_internal() [all …]
|