From owner-cvs-sys Mon Nov 24 06:20:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA05365 for cvs-sys-outgoing; Mon, 24 Nov 1997 06:20:23 -0800 (PST) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA05245; Mon, 24 Nov 1997 06:18:43 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id GAA03611; Mon, 24 Nov 1997 06:18:01 -0800 (PST) Date: Mon, 24 Nov 1997 06:18:01 -0800 (PST) Message-Id: <199711241418.GAA03611@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_syscalls.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1997/11/24 06:18:01 PST Modified files: sys/nfs nfs_syscalls.c Log: Don't call malloc(..., M_WAITOK) at splnet(). Doing so is often a mistake (since softnet interrupts may occur if malloc() waits), and doing it harmlessly but unnecessarily here interfered with detection of the mistaken cases. Revision Changes Path 1.33 +7 -4 src/sys/nfs/nfs_syscalls.c