From owner-freebsd-hardware Fri Apr 5 08:02:36 1996 Return-Path: owner-hardware Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id IAA22654 for hardware-outgoing; Fri, 5 Apr 1996 08:02:36 -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 IAA22649 for ; Fri, 5 Apr 1996 08:02:32 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id BAA13163; Sat, 6 Apr 1996 01:59:15 +1000 Date: Sat, 6 Apr 1996 01:59:15 +1000 From: Bruce Evans Message-Id: <199604051559.BAA13163@godzilla.zeta.org.au> To: bde@zeta.org.au, ishort@pcm.co.za Subject: Re: sio2: 65 events for device with no tp Cc: freebsd-hardware@freebsd.org Sender: owner-hardware@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >Thanks for the reply below. It explains my problem, but what is the tp >that my device is without? Tty Pointer. Tty data structures are allocated at open time, so they can't be used if an interrupt occurs before open. It is supposed to be impossible for interrupts to occur before open, but it happened before for another reason. >Regarding the bit about IRQ7, could I now safely put a network card or >whatever on it, or should I first find a lpt port that does not cause >bogus interrupts? Try to use IRQ7 for something unimportant like lpt or something that won't mind the extra interrupts (like lpt again). Bruce