Home
last modified time | relevance | path

Searched refs:aiov32 (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Drw.c642 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 Dsocksyscalls.c1106 struct iovec32 buf32[IOV_MAX_STACK], *aiov32 = buf32; in recvmsg() local
1112 aiov32 = kmem_alloc(iov32size, KM_SLEEP); in recvmsg()
1114 if (copyin((struct iovec32 *)lmsg.msg_iov, aiov32, iov32size)) { in recvmsg()
1116 kmem_free(aiov32, iov32size); in recvmsg()
1127 iovlen32 = aiov32[i].iov_len; in recvmsg()
1131 kmem_free(aiov32, iov32size); in recvmsg()
1140 (caddr_t)(uintptr_t)aiov32[i].iov_base; in recvmsg()
1144 kmem_free(aiov32, iov32size); in recvmsg()
1393 struct iovec32 buf32[IOV_MAX_STACK], *aiov32 = buf32; in sendmsg() local
1399 aiov32 = kmem_alloc(iov32size, KM_SLEEP); in sendmsg()
[all …]