Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/syscall/
H A Drw.c643 int aiov32len; in readv() local
646 aiov32len = iovcnt * sizeof (iovec32_t); in readv()
648 aiov32 = kmem_alloc(aiov32len, KM_SLEEP); in readv()
650 if (copyin(iovp, aiov32, aiov32len)) { in readv()
652 kmem_free(aiov32, aiov32len); in readv()
664 kmem_free(aiov32, aiov32len); in readv()
675 kmem_free(aiov32, aiov32len); in readv()
836 int aiov32len; in writev() local
839 aiov32len = iovcnt * sizeof (iovec32_t); in writev()
841 aiov32 = kmem_alloc(aiov32len, KM_SLEEP); in writev()
[all …]