From owner-freebsd-hackers Fri Jan 5 00:06:20 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id AAA17239 for hackers-outgoing; Fri, 5 Jan 1996 00:06:20 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id AAA17213 for ; Fri, 5 Jan 1996 00:06:04 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id SAA16837; Fri, 5 Jan 1996 18:58:19 +1100 Date: Fri, 5 Jan 1996 18:58:19 +1100 From: Bruce Evans Message-Id: <199601050758.SAA16837@godzilla.zeta.org.au> To: bde@zeta.org.au, terry@lambert.org Subject: Re: OK, I'm stumped... Cc: hackers@freebsd.org Sender: owner-hackers@freebsd.org Precedence: bulk >> char buf[SMALLSIZE]; >> ... >> r = uiomove(buf, sizeof buf, uio); >I agree that this is a possibility. >But I didn't see this usage in the kernel. Did I not look hard enough? See almost any cdev driver, e.g., tty.c:ttwrite() moves things 100 bytes at a time. Bruce