From owner-cvs-sys Sat May 31 03:17:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA17127 for cvs-sys-outgoing; Sat, 31 May 1997 03:17:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA17073; Sat, 31 May 1997 03:14:07 -0700 (PDT) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA19031; Sat, 31 May 1997 03:13:47 -0700 (PDT) Date: Sat, 31 May 1997 03:13:47 -0700 (PDT) Message-Id: <199705311013.DAA19031@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/net if_ppp.c ppp_tty.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1997/05/31 03:13:46 PDT Modified files: sys/net if_ppp.c ppp_tty.c Log: Bruce mentioned to me that Paul Traina had noticed that the ppp_tty interrupt mask hackery wasn't happening when being modloaded via the if_ppp lkm. It seems that the lkm system doesn't particularly like having two sets of load/unload/etc routines. :-] This really should be fixed by having a seperate if_ppp and ppp_tty lkm, but that requires that ppp_tty is loaded after if_ppp, and needs to be able to link with symbols in if_ppp. This gets messy, it is a better task for the in-kernel linker. (if_ppp is generic, ppp_tty is a tty-specific bottom end for if_ppp, it's not _too_ hard to have another "provider" (such as a hdlc sync card) connected to if_ppp) Revision Changes Path 1.41 +9 -1 src/sys/net/if_ppp.c 1.17 +4 -4 src/sys/net/ppp_tty.c