Searched refs:slptimeo (Results 1 – 2 of 2) sorted by relevance
| /xnu-11215.1.10/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); 1692 buf_invalidateblks(vnode_t vp, int flags, int slpflag, int slptimeo) in buf_invalidateblks() argument 1747 if ((error = (int)buf_acquire_locked(bp, aflags, slpflag, slptimeo))) { in buf_invalidateblks() 1822 if ((error = (int)buf_acquire_locked(bp, aflags, slpflag, slptimeo))) { in buf_invalidateblks() 3080 buf_getblk(vnode_t vp, daddr64_t blkno, int size, int slpflag, int slptimeo, int operation) in buf_getblk() argument 3120 ts.tv_sec = (slptimeo / 1000); in buf_getblk() 3121 ts.tv_nsec = (slptimeo % 1000) * 10 * NSEC_PER_USEC * 1000; in buf_getblk() 3132 if (err && ((slpflag & PCATCH) || ((err == EWOULDBLOCK) && slptimeo))) { in buf_getblk() 3277 if ((bp = getnewbuf(slpflag, slptimeo, &queue)) == NULL) { in buf_getblk() [all …]
|
| /xnu-11215.1.10/bsd/sys/ |
| H A D | buf.h | 751 int buf_invalidateblks(vnode_t vp, int flags, int slpflag, int slptimeo); 1020 buf_t buf_getblk(vnode_t vp, daddr64_t blkno, int size, int slpflag, int slptimeo, int operation);
|