Searched refs:aiov32 (Results 1 – 2 of 2) sorted by relevance
/illumos-gate/usr/src/uts/common/syscall/ |
H A D | rw.c | 642 struct iovec32 buf32[IOV_MAX_STACK], *aiov32 = buf32; in readv() local 648 aiov32 = kmem_alloc(aiov32len, KM_SLEEP); in readv() 650 if (copyin(iovp, aiov32, aiov32len)) { in readv() 652 kmem_free(aiov32, aiov32len); in readv() 660 ssize32_t iovlen32 = aiov32[i].iov_len; in readv() 664 kmem_free(aiov32, aiov32len); in readv() 671 (caddr_t)(uintptr_t)aiov32[i].iov_base; in readv() 675 kmem_free(aiov32, aiov32len); in readv() 835 struct iovec32 buf32[IOV_MAX_STACK], *aiov32 = buf32; in writev() local 841 aiov32 = kmem_alloc(aiov32len, KM_SLEEP); in writev() [all …]
|
/illumos-gate/usr/src/uts/common/fs/sockfs/ |
H A D | socksyscalls.c | 1124 struct iovec32 buf32[IOV_MAX_STACK], *aiov32 = buf32; in recvmsg() local 1130 aiov32 = kmem_alloc(iov32size, KM_SLEEP); in recvmsg() 1132 if (copyin((struct iovec32 *)lmsg.msg_iov, aiov32, iov32size)) { in recvmsg() 1134 kmem_free(aiov32, iov32size); in recvmsg() 1145 iovlen32 = aiov32[i].iov_len; in recvmsg() 1149 kmem_free(aiov32, iov32size); in recvmsg() 1158 (caddr_t)(uintptr_t)aiov32[i].iov_base; in recvmsg() 1162 kmem_free(aiov32, iov32size); in recvmsg() 1411 struct iovec32 buf32[IOV_MAX_STACK], *aiov32 = buf32; in sendmsg() local 1417 aiov32 = kmem_alloc(iov32size, KM_SLEEP); in sendmsg() [all …]
|