From owner-cvs-sys Sun Feb 26 14:32:15 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id OAA08742 for cvs-sys-outgoing; Sun, 26 Feb 1995 14:32:15 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.9/8.6.6) with ESMTP id OAA08716; Sun, 26 Feb 1995 14:31:46 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id JAA20112; Mon, 27 Feb 1995 09:26:37 +1100 Date: Mon, 27 Feb 1995 09:26:37 +1100 From: Bruce Evans Message-Id: <199502262226.JAA20112@godzilla.zeta.org.au> To: CVS-commiters@freefall.cdrom.com, cvs-sys@freefall.cdrom.com, phk@freefall.cdrom.com Subject: Re: cvs commit: src/sys/i386/isa lpt.c Sender: cvs-sys-owner@freebsd.org Precedence: bulk > Modified: sys/i386/isa lpt.c > Log: > I really hate this: > unless I go "splhigh" (as opposed to splimp before) the TCP/IP driver > doesn't work anymore... Why ? Perhaps because net_imask doesn't have the lpt h/w interrupt mask ORed into it. See the (NSL > 0 || NPPP > 0) hack in isa.c. I guess you had slip or ppp configured before. The hack needs to be done if (NSL > 0 || NPPP > 0 || (NLPT > 0 && defined(INET)). if (1) would be a good approximation. Bruce