From owner-cvs-sys Sun Feb 4 02:02:45 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA17524 for cvs-sys-outgoing; Sun, 4 Feb 1996 02:02:45 -0800 (PST) Received: (from pst@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA17512 Sun, 4 Feb 1996 02:02:40 -0800 (PST) Date: Sun, 4 Feb 1996 02:02:40 -0800 (PST) From: Paul Traina Message-Id: <199602041002.CAA17512@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/isa qcam.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk pst 96/02/04 02:02:38 Modified: sys/i386/isa qcam.c Log: Add ability to bypass the auto-detection code. It used to be rock solid for me, but has gotten a bit flakey in bidirectional parallel port mode. Fix a bug in bidirectional parallel port transfers, more work is still needed here (testers welcome). Minor cleanup. Revision Changes Path 1.3 +54 -38 src/sys/i386/isa/qcam.c From owner-cvs-sys Sun Feb 4 02:03:25 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA17631 for cvs-sys-outgoing; Sun, 4 Feb 1996 02:03:25 -0800 (PST) Received: (from pst@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA17624 Sun, 4 Feb 1996 02:03:23 -0800 (PST) Date: Sun, 4 Feb 1996 02:03:23 -0800 (PST) From: Paul Traina Message-Id: <199602041003.CAA17624@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/i386 userconfig.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk pst 96/02/04 02:03:22 Modified: sys/i386/i386 userconfig.c Log: Tell userconfig about qcam Revision Changes Path 1.40 +3 -2 src/sys/i386/i386/userconfig.c From owner-cvs-sys Sun Feb 4 02:23:39 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA19509 for cvs-sys-outgoing; Sun, 4 Feb 1996 02:23:39 -0800 (PST) Received: (from pst@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA19501 Sun, 4 Feb 1996 02:23:36 -0800 (PST) Date: Sun, 4 Feb 1996 02:23:36 -0800 (PST) From: Paul Traina Message-Id: <199602041023.CAA19501@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/isa qcam.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk pst 96/02/04 02:23:35 Modified: sys/i386/isa qcam.c Log: Document kernel config flags better and add bidirectional override Revision Changes Path 1.4 +22 -15 src/sys/i386/isa/qcam.c From owner-cvs-sys Sun Feb 4 04:46:24 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id EAA29733 for cvs-sys-outgoing; Sun, 4 Feb 1996 04:46:24 -0800 (PST) Received: (from davidg@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id EAA29725 Sun, 4 Feb 1996 04:46:22 -0800 (PST) Date: Sun, 4 Feb 1996 04:46:22 -0800 (PST) From: David Greenman Message-Id: <199602041246.EAA29725@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/netinet tcp_input.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk davidg 96/02/04 04:46:22 Branch: sys/netinet RELENG_2_1_0 Modified: sys/netinet tcp_input.c Log: Brought in changes from revs 1.31 and 1.35: bugfix for T/TCP and window scaling plus sync with cosmetic changes. Revision Changes Path 1.25.4.3 +28 -15 src/sys/netinet/tcp_input.c From owner-cvs-sys Sun Feb 4 11:56:40 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id LAA29153 for cvs-sys-outgoing; Sun, 4 Feb 1996 11:56:40 -0800 (PST) Received: (from dyson@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id LAA29135 Sun, 4 Feb 1996 11:56:37 -0800 (PST) Date: Sun, 4 Feb 1996 11:56:37 -0800 (PST) From: John Dyson Message-Id: <199602041956.LAA29135@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/kern kern_descrip.c sys_pipe.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk dyson 96/02/04 11:56:36 Modified: sys/sys pipe.h sys/kern kern_descrip.c sys_pipe.c Log: Improve the performance for pipe(2) again. Also include some fixes for previous version of new pipes from Bruce Evans. This new version: Supports more properly the semantics of select (BDE). Supports "OLD_PIPE" correctly (kern_descrip.c, BDE). Eliminates incorrect EPIPE returns (bash 'pipe broken' messages.) Much faster yet, currently tuned relatively conservatively -- but now gives approx 50% more perf than the new pipes code did originally. (That was about 50% more perf than the original BSD pipe code.) Known bugs outstanding: No support for async io (SIGIO). Will be included soon. Next to do: Merge support for FIFOs. Submitted by: bde Revision Changes Path 1.3 +36 -1 src/sys/sys/pipe.h 1.25 +7 -1 src/sys/kern/kern_descrip.c 1.5 +442 -46 src/sys/kern/sys_pipe.c From owner-cvs-sys Sun Feb 4 13:21:02 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA07601 for cvs-sys-outgoing; Sun, 4 Feb 1996 13:21:02 -0800 (PST) Received: (from davidg@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA07593 Sun, 4 Feb 1996 13:20:58 -0800 (PST) Date: Sun, 4 Feb 1996 13:20:58 -0800 (PST) From: David Greenman Message-Id: <199602042120.NAA07593@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/include md_var.h pmap.h Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk davidg 96/02/04 13:20:56 Modified: sys/i386/i386 locore.s pmap.c swtch.s vm_machdep.c sys/i386/include md_var.h pmap.h Log: Rewrote cpu_fork so that it doesn't use pmap_activate, and removed pmap_activate since it's not used anymore. Changed cpu_fork so that it uses one line of inline assembly rather than calling mvesp() to get the current stack pointer. Removed mvesp() since it is no longer being used. Revision Changes Path 1.62 +1 -8 src/sys/i386/i386/locore.s 1.75 +1 -10 src/sys/i386/i386/pmap.c 1.29 +1 -5 src/sys/i386/i386/swtch.s 1.54 +11 -9 src/sys/i386/i386/vm_machdep.c 1.7 +1 -2 src/sys/i386/include/md_var.h 1.33 +1 -16 src/sys/i386/include/pmap.h From owner-cvs-sys Sun Feb 4 13:35:34 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA08487 for cvs-sys-outgoing; Sun, 4 Feb 1996 13:35:34 -0800 (PST) Received: from ra.dkuug.dk (ra.dkuug.dk [193.88.44.193]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id NAA08440 Sun, 4 Feb 1996 13:35:04 -0800 (PST) Received: from critter.tfs.com ([193.88.44.194]) by ra.dkuug.dk (8.6.12/8.6.12) with ESMTP id WAA02892; Sun, 4 Feb 1996 22:21:26 +0100 Received: from localhost.tfs.com (localhost.tfs.com [127.0.0.1]) by critter.tfs.com (8.6.12/8.6.12) with SMTP id WAA09249; Sun, 4 Feb 1996 22:26:39 +0100 X-Authentication-Warning: critter.tfs.com: Host localhost.tfs.com didn't use HELO protocol To: John Dyson cc: CVS-committers@freebsd.org, cvs-sys@freebsd.org Subject: Re: cvs commit: src/sys/kern kern_descrip.c sys_pipe.c In-reply-to: Your message of "Sun, 04 Feb 1996 11:56:37 PST." <199602041956.LAA29135@freefall.freebsd.org> Date: Sun, 04 Feb 1996 22:26:38 +0100 Message-ID: <9247.823469198@critter.tfs.com> From: Poul-Henning Kamp Sender: owner-cvs-sys@freebsd.org Precedence: bulk > dyson 96/02/04 11:56:36 > > Modified: sys/sys pipe.h > sys/kern kern_descrip.c sys_pipe.c > Log: > Much faster yet, currently tuned relatively conservatively -- but now > gives approx 50% more perf than the new pipes code did originally. > (That was about 50% more perf than the original BSD pipe code.) BTW: For people who has fast machines, "-pipe" is recommended food for gcc. -- Poul-Henning Kamp | phk@FreeBSD.ORG FreeBSD Core-team. http://www.freebsd.org/~phk | phk@login.dknet.dk Private mailbox. whois: [PHK] | phk@ref.tfs.com TRW Financial Systems, Inc. Future will arrive by its own means, progress not so. From owner-cvs-sys Sun Feb 4 14:09:19 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA10527 for cvs-sys-outgoing; Sun, 4 Feb 1996 14:09:19 -0800 (PST) Received: (from dyson@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA10519 Sun, 4 Feb 1996 14:09:14 -0800 (PST) Date: Sun, 4 Feb 1996 14:09:14 -0800 (PST) From: John Dyson Message-Id: <199602042209.OAA10519@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/i386 vm_machdep.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk dyson 96/02/04 14:09:13 Modified: sys/vm vm_extern.h sys/kern sys_pipe.c sys/i386/i386 vm_machdep.c Log: Changed vm_fault_quick in vm_machdep.c to be global. Needed for new pipe code. Revision Changes Path 1.23 +2 -1 src/sys/vm/vm_extern.h 1.6 +8 -1 src/sys/kern/sys_pipe.c 1.55 +9 -13 src/sys/i386/i386/vm_machdep.c From owner-cvs-sys Sun Feb 4 17:50:07 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA21781 for cvs-sys-outgoing; Sun, 4 Feb 1996 17:50:07 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id RAA21701 Sun, 4 Feb 1996 17:49:51 -0800 (PST) Received: from sax.sax.de by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id CAA12929; Mon, 5 Feb 1996 02:49:48 +0100 Received: by sax.sax.de (8.6.11/8.6.12-s1) with UUCP id CAA05228; Mon, 5 Feb 1996 02:49:48 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.7.3/8.6.9) id CAA02684; Mon, 5 Feb 1996 02:31:54 +0100 (MET) From: J Wunsch Message-Id: <199602050131.CAA02684@uriah.heep.sax.de> Subject: Re: cvs commit: src/sys/kern kern_descrip.c sys_pipe.c To: phk@critter.tfs.com (Poul-Henning Kamp) Date: Mon, 5 Feb 1996 02:31:54 +0100 (MET) Cc: dyson@freebsd.org, CVS-committers@freebsd.org, cvs-sys@freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <9247.823469198@critter.tfs.com> from "Poul-Henning Kamp" at Feb 4, 96 10:26:38 pm X-Phone: +49-351-2012 669 X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-cvs-sys@freebsd.org Precedence: bulk As Poul-Henning Kamp wrote: > > BTW: > > For people who has fast machines, "-pipe" is recommended food for gcc. s/fast machines/machines with enough memory/ -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-) From owner-cvs-sys Sun Feb 4 21:17:19 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id VAA02323 for cvs-sys-outgoing; Sun, 4 Feb 1996 21:17:19 -0800 (PST) Received: (from dyson@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id VAA02316 Sun, 4 Feb 1996 21:17:17 -0800 (PST) Date: Sun, 4 Feb 1996 21:17:17 -0800 (PST) From: John Dyson Message-Id: <199602050517.VAA02316@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/kern sys_pipe.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk dyson 96/02/04 21:17:16 Modified: sys/kern sys_pipe.c Log: Kva space allocated for direct buffer wasn't quite big enough. The system can panic easily without this patch. Revision Changes Path 1.7 +11 -7 src/sys/kern/sys_pipe.c From owner-cvs-sys Sun Feb 4 21:50:38 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id VAA03823 for cvs-sys-outgoing; Sun, 4 Feb 1996 21:50:38 -0800 (PST) Received: (from dyson@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id VAA03816 Sun, 4 Feb 1996 21:50:36 -0800 (PST) Date: Sun, 4 Feb 1996 21:50:36 -0800 (PST) From: John Dyson Message-Id: <199602050550.VAA03816@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/kern sys_pipe.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk dyson 96/02/04 21:50:36 Modified: sys/kern sys_pipe.c Log: More fixes from bde. Only modify times on success. splhigh() around time variable usage. Make atomic writes more posix compliant. Spelling errors. Submitted by: bde Revision Changes Path 1.8 +24 -14 src/sys/kern/sys_pipe.c From owner-cvs-sys Mon Feb 5 06:08:46 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA28022 for cvs-sys-outgoing; Mon, 5 Feb 1996 06:08:46 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA28015 Mon, 5 Feb 1996 06:08:43 -0800 (PST) Date: Mon, 5 Feb 1996 06:08:43 -0800 (PST) From: "Andrey A. Chernov" Message-Id: <199602051408.GAA28015@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/isa syscons.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk ache 96/02/05 06:08:42 Modified: sys/i386/isa syscons.c Log: Deliver all bells to current console, use different pitch for non-originating bells. Revision Changes Path 1.140 +13 -11 src/sys/i386/isa/syscons.c From owner-cvs-sys Mon Feb 5 06:23:23 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA28800 for cvs-sys-outgoing; Mon, 5 Feb 1996 06:23:23 -0800 (PST) Received: (from davidg@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA28793 Mon, 5 Feb 1996 06:23:21 -0800 (PST) Date: Mon, 5 Feb 1996 06:23:21 -0800 (PST) From: David Greenman Message-Id: <199602051423.GAA28793@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/i386 vm_machdep.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk davidg 96/02/05 06:23:21 Modified: sys/i386/i386 vm_machdep.c Log: Unspam my changes in rev 1.54 that John spammed in rev 1.55. Revision Changes Path 1.56 +11 -9 src/sys/i386/i386/vm_machdep.c From owner-cvs-sys Mon Feb 5 10:04:34 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA14149 for cvs-sys-outgoing; Mon, 5 Feb 1996 10:04:34 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA14142 Mon, 5 Feb 1996 10:04:32 -0800 (PST) Date: Mon, 5 Feb 1996 10:04:32 -0800 (PST) From: Garrett Wollman Message-Id: <199602051804.KAA14142@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/netinet if_ether.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/05 10:04:32 Modified: sys/netinet if_ether.c Log: Fill in the corresponding ether address of multicast and broadcast pseudo-``ARP entries'' so arp(8) doesn't show them as `unresolved'. Revision Changes Path 1.27 +17 -1 src/sys/netinet/if_ether.c From owner-cvs-sys Mon Feb 5 11:34:30 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id LAA18180 for cvs-sys-outgoing; Mon, 5 Feb 1996 11:34:30 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id LAA18173 Mon, 5 Feb 1996 11:34:28 -0800 (PST) Date: Mon, 5 Feb 1996 11:34:28 -0800 (PST) From: Garrett Wollman Message-Id: <199602051934.LAA18173@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/net if_loop.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/05 11:34:28 Modified: sys/net if_loop.c Log: Make me feel a little better by filling in reasonable values for rmx_sendpipe and rmx_recvpipe. This has no demonstrable effect on performance. (ttcp reports about 44 Mbit/s for all the buffer sizes I tried between 16384 and 65536.) Revision Changes Path 1.17 +12 -6 src/sys/net/if_loop.c From owner-cvs-sys Mon Feb 5 12:36:08 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA21618 for cvs-sys-outgoing; Mon, 5 Feb 1996 12:36:08 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA21585 Mon, 5 Feb 1996 12:36:06 -0800 (PST) Date: Mon, 5 Feb 1996 12:36:06 -0800 (PST) From: Garrett Wollman Message-Id: <199602052036.MAA21585@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/netinet in_var.h ip_input.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/05 12:36:05 Modified: sys/netinet in_var.h ip_input.c Log: Provide a direct entry point for IP input. This actually results in a slight decrease in performance, but will lead to better performance later. Revision Changes Path 1.16 +2 -1 src/sys/netinet/in_var.h 1.35 +32 -25 src/sys/netinet/ip_input.c From owner-cvs-sys Mon Feb 5 15:04:09 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id PAA03697 for cvs-sys-outgoing; Mon, 5 Feb 1996 15:04:09 -0800 (PST) Received: (from jkh@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id PAA03686 Mon, 5 Feb 1996 15:04:07 -0800 (PST) Date: Mon, 5 Feb 1996 15:04:07 -0800 (PST) From: "Jordan K. Hubbard" Message-Id: <199602052304.PAA03686@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/pci meteor.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk jkh 96/02/05 15:04:07 Modified: sys/pci meteor.c Log: Fix METEOR_TEST_VIDEO case. Submitted by: Jim Lowe Revision Changes Path 1.14 +1 -1 src/sys/pci/meteor.c From owner-cvs-sys Tue Feb 6 10:12:02 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA27558 for cvs-sys-outgoing; Tue, 6 Feb 1996 10:12:02 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA27505 Tue, 6 Feb 1996 10:11:59 -0800 (PST) Date: Tue, 6 Feb 1996 10:11:59 -0800 (PST) From: Bill Fenner Message-Id: <199602061811.KAA27505@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/netinet in_rmx.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk fenner 96/02/06 10:11:58 Branch: sys/netinet RELENG_2_1_0 Modified: sys/netinet in_rmx.c Log: Bring in ARP patch from rev 1.23. Revision Changes Path 1.13.4.2 +28 -2 src/sys/netinet/in_rmx.c From owner-cvs-sys Tue Feb 6 10:51:34 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA00649 for cvs-sys-outgoing; Tue, 6 Feb 1996 10:51:34 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA00641 Tue, 6 Feb 1996 10:51:31 -0800 (PST) Date: Tue, 6 Feb 1996 10:51:31 -0800 (PST) From: Garrett Wollman Message-Id: <199602061851.KAA00641@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/pci if_de.c if_fxp.c if_pdq.c if_vx.c if_vxreg.h Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/06 10:51:30 Modified: sys/i386/include cronyx.h sys/i386/isa if_ar.c if_cx.c if_ed.c if_eg.c if_el.c if_ep.c if_epreg.h if_fe.c if_ie.c if_ix.c if_le.c if_lnc.c if_ze.c if_zp.c lpt.c sys/net bpf.c bpf.h bpfdesc.h if.c if.h if_disc.c if_loop.c if_ppp.c if_pppvar.h if_sl.c if_slvar.h if_tun.c if_tun.h sys/pci if_de.c if_fxp.c if_pdq.c if_vx.c if_vxreg.h Log: Clean up Ethernet drivers: - fill in and use ifp->if_softc - use if_bpf rather than private cookie variables - change bpf interface to take advantage of this - call ether_ifattach() directly from Ethernet drivers - delete kludge in if_attach() that did this indirectly Revision Changes Path 1.6 +0 -1 src/sys/i386/include/cronyx.h 1.5 +10 -19 src/sys/i386/isa/if_ar.c 1.13 +9 -8 src/sys/i386/isa/if_cx.c 1.94 +14 -13 src/sys/i386/isa/if_ed.c 1.12 +8 -6 src/sys/i386/isa/if_eg.c 1.23 +12 -10 src/sys/i386/isa/if_el.c 1.40 +10 -8 src/sys/i386/isa/if_ep.c 1.11 +1 -2 src/sys/i386/isa/if_epreg.h 1.11 +8 -59 src/sys/i386/isa/if_fe.c 1.33 +16 -36 src/sys/i386/isa/if_ie.c 1.19 +5 -19 src/sys/i386/isa/if_ix.c 1.30 +11 -26 src/sys/i386/isa/if_le.c 1.21 +9 -10 src/sys/i386/isa/if_lnc.c 1.29 +11 -34 src/sys/i386/isa/if_ze.c 1.16 +10 -24 src/sys/i386/isa/if_zp.c 1.49 +5 -4 src/sys/i386/isa/lpt.c 1.22 +18 -42 src/sys/net/bpf.c 1.9 +4 -29 src/sys/net/bpf.h 1.8 +1 -2 src/sys/net/bpfdesc.h 1.27 +1 -7 src/sys/net/if.c 1.28 +2 -2 src/sys/net/if.h 1.11 +3 -3 src/sys/net/if_disc.c 1.18 +3 -3 src/sys/net/if_loop.c 1.31 +6 -6 src/sys/net/if_ppp.c 1.4 +1 -2 src/sys/net/if_pppvar.h 1.36 +8 -8 src/sys/net/if_sl.c 1.10 +1 -2 src/sys/net/if_slvar.h 1.20 +5 -5 src/sys/net/if_tun.c 1.4 +0 -3 src/sys/net/if_tun.h 1.43 +7 -8 src/sys/pci/if_de.c 1.11 +12 -10 src/sys/pci/if_fxp.c 1.14 +5 -7 src/sys/pci/if_pdq.c 1.9 +9 -24 src/sys/pci/if_vx.c 1.4 +0 -1 src/sys/pci/if_vxreg.h From owner-cvs-sys Tue Feb 6 12:57:49 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA10880 for cvs-sys-outgoing; Tue, 6 Feb 1996 12:57:49 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA10872 Tue, 6 Feb 1996 12:57:47 -0800 (PST) Date: Tue, 6 Feb 1996 12:57:47 -0800 (PST) From: Garrett Wollman Message-Id: <199602062057.MAA10872@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/conf LINT Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/06 12:57:47 Modified: sys/i386/conf LINT Log: Comment out ISO, CCITT, LLC, and HDLC with a note to the effect that we no longer ship source for these protocols. Revision Changes Path 1.238 +8 -9 src/sys/i386/conf/LINT From owner-cvs-sys Tue Feb 6 13:02:14 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA11643 for cvs-sys-outgoing; Tue, 6 Feb 1996 13:02:14 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA11630 Tue, 6 Feb 1996 13:02:12 -0800 (PST) Date: Tue, 6 Feb 1996 13:02:12 -0800 (PST) From: Garrett Wollman Message-Id: <199602062102.NAA11630@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/netiso/xebec Makefile debug.h llparse.c llparse.h llscan.c main.c main.h malloc.c malloc.h procs.c procs.h putdriver.c sets.c sets.h test.trans test_def.h xebec.bnf xebec.c xebec.h Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/06 13:02:11 Removed: sys/netiso argo_debug.h clnl.h clnp.h clnp_debug.c clnp_er.c clnp_frag.c clnp_input.c clnp_options.c clnp_output.c clnp_raw.c clnp_stat.h clnp_subr.c clnp_timer.c cltp_usrreq.c cltp_var.h cons.h cons_pcb.h eonvar.h esis.c esis.h idrp_usrreq.c if_cons.c if_eon.c iso.c iso.h iso_chksum.c iso_errno.h iso_pcb.c iso_pcb.h iso_proto.c iso_snpac.c iso_snpac.h iso_var.h tp.trans tp_astring.c tp_clnp.h tp_cons.c tp_driver.c tp_emit.c tp_events.h tp_inet.c tp_input.c tp_ip.h tp_iso.c tp_meas.c tp_meas.h tp_output.c tp_param.h tp_pcb.c tp_pcb.h tp_seq.h tp_stat.h tp_states.h tp_states.init tp_subr.c tp_subr2.c tp_timer.c tp_timer.h tp_tpdu.h tp_trace.c tp_trace.h tp_user.h tp_usrreq.c tuba_subr.c tuba_table.c tuba_table.h tuba_usrreq.c sys/netiso/xebec Makefile debug.h llparse.c llparse.h llscan.c main.c main.h malloc.c malloc.h procs.c procs.h putdriver.c sets.c sets.h test.trans test_def.h xebec.bnf xebec.c xebec.h Log: Get rid of netiso. It hasn't compiled in some time, there are no applications, and nobody uses it. From owner-cvs-sys Tue Feb 6 13:07:25 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA12195 for cvs-sys-outgoing; Tue, 6 Feb 1996 13:07:25 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA12188 Tue, 6 Feb 1996 13:07:24 -0800 (PST) Date: Tue, 6 Feb 1996 13:07:24 -0800 (PST) From: Garrett Wollman Message-Id: <199602062107.NAA12188@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/netccitt README.hdlc README.packet ccitt_proto.c dll.h hd_debug.c hd_input.c hd_output.c hd_subr.c hd_timer.c hd_var.h hdlc.h if_x25subr.c llc_input.c llc_output.c llc_subr.c llc_timer.c llc_var.h pk.h pk_acct.c pk_debug.c pk_input.c pk_llcsubr.c pk_output.c pk_subr.c pk_timer.c pk_usrreq.c pk_var.h x25.h x25acct.h x25err.h Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/06 13:07:23 Removed: sys/netccitt README.hdlc README.packet ccitt_proto.c dll.h hd_debug.c hd_input.c hd_output.c hd_subr.c hd_timer.c hd_var.h hdlc.h if_x25subr.c llc_input.c llc_output.c llc_subr.c llc_timer.c llc_var.h pk.h pk_acct.c pk_debug.c pk_input.c pk_llcsubr.c pk_output.c pk_subr.c pk_timer.c pk_usrreq.c pk_var.h x25.h x25acct.h x25err.h Log: Kill netccitt. The code is ancient, nobody wants to maintain it, and it doesn't compile cleanly. From owner-cvs-sys Tue Feb 6 13:52:19 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA16061 for cvs-sys-outgoing; Tue, 6 Feb 1996 13:52:19 -0800 (PST) Received: from ref.tfs.com (ref.tfs.com [140.145.254.251]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id NAA16050 Tue, 6 Feb 1996 13:52:16 -0800 (PST) Received: (from julian@localhost) by ref.tfs.com (8.6.12/8.6.12) id NAA01065; Tue, 6 Feb 1996 13:52:15 -0800 From: Julian Elischer Message-Id: <199602062152.NAA01065@ref.tfs.com> Subject: Re: cvs commit: src/sys/i386/conf LINT To: wollman@freefall.freebsd.org (Garrett Wollman) Date: Tue, 6 Feb 1996 13:52:14 -0800 (PST) Cc: CVS-committers@freefall.freebsd.org, cvs-sys@freefall.freebsd.org In-Reply-To: <199602062057.MAA10872@freefall.freebsd.org> from "Garrett Wollman" at Feb 6, 96 12:57:47 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk I think this is premature this is something we should have discussed! > > wollman 96/02/06 12:57:47 > > Modified: sys/i386/conf LINT > Log: > Comment out ISO, CCITT, LLC, and HDLC with a note to the effect > that we no longer ship source for these protocols. > > Revision Changes Path > 1.238 +8 -9 src/sys/i386/conf/LINT > From owner-cvs-sys Tue Feb 6 14:44:23 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA19847 for cvs-sys-outgoing; Tue, 6 Feb 1996 14:44:23 -0800 (PST) Received: from rocky.sri.MT.net (rocky.sri.MT.net [204.182.243.10]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id OAA19829 Tue, 6 Feb 1996 14:44:10 -0800 (PST) Received: (from nate@localhost) by rocky.sri.MT.net (8.6.12/8.6.12) id PAA05157; Tue, 6 Feb 1996 15:46:54 -0700 Date: Tue, 6 Feb 1996 15:46:54 -0700 From: Nate Williams Message-Id: <199602062246.PAA05157@rocky.sri.MT.net> To: Bill Fenner Cc: CVS-committers@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/netinet in_rmx.c In-Reply-To: <199602061811.KAA27505@freefall.freebsd.org> References: <199602061811.KAA27505@freefall.freebsd.org> Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk > fenner 96/02/06 10:11:58 > > Branch: sys/netinet RELENG_2_1_0 > Modified: sys/netinet in_rmx.c > Log: > Bring in ARP patch from rev 1.23. Thanks Bill!! From owner-cvs-sys Tue Feb 6 22:41:59 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA00940 for cvs-sys-outgoing; Tue, 6 Feb 1996 22:41:59 -0800 (PST) Received: (from dyson@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA00933 Tue, 6 Feb 1996 22:41:58 -0800 (PST) Date: Tue, 6 Feb 1996 22:41:58 -0800 (PST) From: John Dyson Message-Id: <199602070641.WAA00933@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/kern sys_pipe.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk dyson 96/02/06 22:41:58 Modified: sys/kern sys_pipe.c Log: Apparent fix for a pipe hang problem. Revision Changes Path 1.9 +16 -3 src/sys/kern/sys_pipe.c From owner-cvs-sys Wed Feb 7 08:19:26 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id IAA09905 for cvs-sys-outgoing; Wed, 7 Feb 1996 08:19:26 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id IAA09896 Wed, 7 Feb 1996 08:19:23 -0800 (PST) Date: Wed, 7 Feb 1996 08:19:23 -0800 (PST) From: Garrett Wollman Message-Id: <199602071619.IAA09896@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/sys socket.h src/sys/kern uipc_socket.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/07 08:19:22 Modified: sys/sys socket.h sys/kern uipc_socket.c Log: Define a new socket option, SO_PRIVSTATE. Getting it returns the state of the SS_PRIV flag in so_state; setting it always clears same. Revision Changes Path 1.10 +2 -1 src/sys/sys/socket.h 1.14 +10 -1 src/sys/kern/uipc_socket.c From owner-cvs-sys Wed Feb 7 12:06:26 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA23565 for cvs-sys-outgoing; Wed, 7 Feb 1996 12:06:26 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA23558 Wed, 7 Feb 1996 12:06:24 -0800 (PST) Date: Wed, 7 Feb 1996 12:06:24 -0800 (PST) From: Garrett Wollman Message-Id: <199602072006.MAA23558@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/conf files Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/07 12:06:24 Modified: sys/conf files Log: Comment out netccitt, netimp, and netiso entries, since we no longer ship this code. Submitted by: davidg Revision Changes Path 1.59 +72 -72 src/sys/conf/files From owner-cvs-sys Wed Feb 7 13:53:04 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA00357 for cvs-sys-outgoing; Wed, 7 Feb 1996 13:53:04 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA00345 Wed, 7 Feb 1996 13:53:01 -0800 (PST) Date: Wed, 7 Feb 1996 13:53:01 -0800 (PST) From: Garrett Wollman Message-Id: <199602072153.NAA00345@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/include spl.h Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/07 13:53:00 Modified: sys/i386/include spl.h Log: Add a couple of macros I expect to need. Revision Changes Path 1.13 +4 -1 src/sys/i386/include/spl.h From owner-cvs-sys Wed Feb 7 22:23:54 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA24085 for cvs-sys-outgoing; Wed, 7 Feb 1996 22:23:54 -0800 (PST) Received: (from pst@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA24074 Wed, 7 Feb 1996 22:23:52 -0800 (PST) Date: Wed, 7 Feb 1996 22:23:52 -0800 (PST) From: Paul Traina Message-Id: <199602080623.WAA24074@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/scsi st.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk pst 96/02/07 22:23:52 Modified: sys/scsi st.c Log: Close kern/614 - wait up to an hour for a tape operation like "fsf" (slow drives) Revision Changes Path 1.61 +2 -2 src/sys/scsi/st.c From owner-cvs-sys Wed Feb 7 22:30:34 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA25024 for cvs-sys-outgoing; Wed, 7 Feb 1996 22:30:34 -0800 (PST) Received: (from pst@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA25016 Wed, 7 Feb 1996 22:30:33 -0800 (PST) Date: Wed, 7 Feb 1996 22:30:33 -0800 (PST) From: Paul Traina Message-Id: <199602080630.WAA25016@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/isa syscons.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk pst 96/02/07 22:30:32 Modified: sys/i386/isa syscons.c Log: Close kern/627 - panic if syscons not attached Revision Changes Path 1.141 +3 -1 src/sys/i386/isa/syscons.c From owner-cvs-sys Wed Feb 7 22:32:49 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA25446 for cvs-sys-outgoing; Wed, 7 Feb 1996 22:32:49 -0800 (PST) Received: (from pst@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA25435 Wed, 7 Feb 1996 22:32:47 -0800 (PST) Date: Wed, 7 Feb 1996 22:32:47 -0800 (PST) From: Paul Traina Message-Id: <199602080632.WAA25435@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/isa syscons.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk pst 96/02/07 22:32:47 Branch: sys/i386/isa RELENG_2_1_0 Modified: sys/i386/isa syscons.c Log: Fix kern/627 in stable too - panic on open if syscons disabled Revision Changes Path 1.117.4.7 +3 -1 src/sys/i386/isa/syscons.c From owner-cvs-sys Thu Feb 8 07:43:42 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id HAA26025 for cvs-sys-outgoing; Thu, 8 Feb 1996 07:43:42 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id HAA26018 Thu, 8 Feb 1996 07:43:40 -0800 (PST) Date: Thu, 8 Feb 1996 07:43:40 -0800 (PST) From: Garrett Wollman Message-Id: <199602081543.HAA26018@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/netinet in_proto.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/08 07:43:39 Modified: sys/netinet in_proto.c Log: #if out unsupported IMP code. Revision Changes Path 1.25 +3 -1 src/sys/netinet/in_proto.c From owner-cvs-sys Thu Feb 8 10:18:03 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA08040 for cvs-sys-outgoing; Thu, 8 Feb 1996 10:18:03 -0800 (PST) Received: from precipice.shockwave.com (precipice.shockwave.com [171.69.108.33]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id KAA08028 Thu, 8 Feb 1996 10:18:00 -0800 (PST) Received: from localhost.shockwave.com (localhost.shockwave.com [127.0.0.1]) by precipice.shockwave.com (8.7.3/8.7.3) with SMTP id KAA04866; Thu, 8 Feb 1996 10:17:27 -0800 (PST) Message-Id: <199602081817.KAA04866@precipice.shockwave.com> To: Garrett Wollman cc: CVS-committers@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/netinet in_proto.c In-reply-to: Your message of "Thu, 08 Feb 1996 07:43:40 PST." <199602081543.HAA26018@freefall.freebsd.org> Date: Thu, 08 Feb 1996 10:17:27 -0800 From: Paul Traina Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk Garret, There are bits of imp history laying all about (I found some in the bpf driver last night). Why don't we make the .h file empty and fix what breaks? Paul From: Garrett Wollman Subject: cvs commit: src/sys/netinet in_proto.c wollman 96/02/08 07:43:39 Modified: sys/netinet in_proto.c Log: #if out unsupported IMP code. Revision Changes Path 1.25 +3 -1 src/sys/netinet/in_proto.c From owner-cvs-sys Thu Feb 8 13:35:02 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA00181 for cvs-sys-outgoing; Thu, 8 Feb 1996 13:35:02 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA00164 Thu, 8 Feb 1996 13:34:59 -0800 (PST) Date: Thu, 8 Feb 1996 13:34:59 -0800 (PST) From: Garrett Wollman Message-Id: <199602082134.NAA00164@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/net if.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk wollman 96/02/08 13:34:59 Modified: sys/net if.c Log: If a slow input queue was defined by the driver, initialize it. Revision Changes Path 1.28 +13 -1 src/sys/net/if.c From owner-cvs-sys Thu Feb 8 20:36:39 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA27761 for cvs-sys-outgoing; Thu, 8 Feb 1996 20:36:39 -0800 (PST) Received: (from dyson@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA27753 Thu, 8 Feb 1996 20:36:38 -0800 (PST) Date: Thu, 8 Feb 1996 20:36:38 -0800 (PST) From: John Dyson Message-Id: <199602090436.UAA27753@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/kern sys_pipe.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk dyson 96/02/08 20:36:37 Modified: sys/kern sys_pipe.c Log: Add some missing requests for the read-side to wakeup the write-side. Also add some missing wakeups by the write side to the read side. Revision Changes Path 1.10 +11 -2 src/sys/kern/sys_pipe.c From owner-cvs-sys Fri Feb 9 01:24:06 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id BAA11817 for cvs-sys-outgoing; Fri, 9 Feb 1996 01:24:06 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id BAA11774 Fri, 9 Feb 1996 01:24:00 -0800 (PST) Date: Fri, 9 Feb 1996 01:24:00 -0800 (PST) From: Poul-Henning Kamp Message-Id: <199602090924.BAA11774@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/net if_tun.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk phk 96/02/09 01:23:59 Modified: sys/net if_tun.c Log: Make tundebug sysctl writable. Revision Changes Path 1.21 +1 -1 src/sys/net/if_tun.c