From owner-freebsd-current Fri Jun 28 16:18:04 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id QAA07261 for current-outgoing; Fri, 28 Jun 1996 16:18:04 -0700 (PDT) Received: from phaeton.artisoft.com (phaeton.Artisoft.COM [198.17.250.211]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id QAA07252 for ; Fri, 28 Jun 1996 16:18:02 -0700 (PDT) Received: (from terry@localhost) by phaeton.artisoft.com (8.6.11/8.6.9) id QAA09096; Fri, 28 Jun 1996 16:16:47 -0700 From: Terry Lambert Message-Id: <199606282316.QAA09096@phaeton.artisoft.com> Subject: Problem Report docs/731 To: current@freebsd.org Date: Fri, 28 Jun 1996 16:16:47 -0700 (MST) Cc: witr@rwwa.COM X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk This PR is classified as a PR with the documentation. Per the discussion on this list, this is a problem with the call implementation, not the documentation. Please: 1) Reclassify this problem as a kernel problem 2) Integrate the following patch: ============================================================================ *** uipc_syscalls.c.bad Fri Jun 28 16:07:22 1996 --- uipc_syscalls.c Fri Jun 28 16:11:52 1996 *************** *** 370,377 **** goto free4; } error = copyout((caddr_t)sv, (caddr_t)uap->rsv, 2 * sizeof (int)); ! retval[0] = sv[0]; /* XXX ??? */ ! retval[1] = sv[1]; /* XXX ??? */ return (error); free4: ffree(fp2); --- 370,376 ---- goto free4; } error = copyout((caddr_t)sv, (caddr_t)uap->rsv, 2 * sizeof (int)); ! *retval = 0; /* indicate success*/ return (error); free4: ffree(fp2); ============================================================================ 3) Close this problem report. Terry Lambert terry@lambert.org --- Any opinions in this posting are my own and not those of my present or previous employers.