From owner-cvs-share Sun Dec 24 23:19:35 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id XAA06589 for cvs-share-outgoing; Sun, 24 Dec 1995 23:19:35 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id XAA06582 Sun, 24 Dec 1995 23:19:33 -0800 (PST) Date: Sun, 24 Dec 1995 23:19:33 -0800 (PST) From: Bruce Evans Message-Id: <199512250719.XAA06582@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/examples/lkm/syscall/test Makefile testsyscall.c Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk bde 95/12/24 23:19:33 Modified: share/examples/lkm Makefile share/examples/lkm/misc Makefile share/examples/lkm/misc/module Makefile misccall.c miscmod.c share/examples/lkm/misc/test Makefile testmisc.c share/examples/lkm/syscall Makefile share/examples/lkm/syscall/module Makefile mycall.c newsyscall.c share/examples/lkm/syscall/test Makefile testsyscall.c Log: Updated lkm examples to work with prototype-related changes to the MOD_MISC() and DISPATCH() macros. Renamed new_syscall module as new_syscall_mod. It seems to be standard to have module names ending with _mod, and this may be forced when MOD_SYSCALL() and MOD_VFS() are updated to match MOD_MISC(). Cleaned up lkm examples a little. Revision Changes Path 1.3 +0 -4 src/share/examples/lkm/Makefile 1.2 +0 -4 src/share/examples/lkm/misc/Makefile 1.3 +1 -4 src/share/examples/lkm/misc/module/Makefile 1.3 +8 -10 src/share/examples/lkm/misc/module/misccall.c 1.4 +10 -15 src/share/examples/lkm/misc/module/miscmod.c 1.3 +1 -5 src/share/examples/lkm/misc/test/Makefile 1.3 +1 -5 src/share/examples/lkm/misc/test/testmisc.c 1.2 +0 -4 src/share/examples/lkm/syscall/Makefile 1.3 +1 -4 src/share/examples/lkm/syscall/module/Makefile 1.2 +8 -8 src/share/examples/lkm/syscall/module/mycall.c 1.4 +12 -14 src/share/examples/lkm/syscall/module/newsyscall.c 1.3 +2 -6 src/share/examples/lkm/syscall/test/Makefile 1.2 +3 -6 src/share/examples/lkm/syscall/test/testsyscall.c From owner-cvs-share Mon Dec 25 20:05:29 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA16305 for cvs-share-outgoing; Mon, 25 Dec 1995 20:05:29 -0800 (PST) Received: (from ats@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA16297 Mon, 25 Dec 1995 20:05:25 -0800 (PST) Date: Mon, 25 Dec 1995 20:05:25 -0800 (PST) From: Andreas Schulz Message-Id: <199512260405.UAA16297@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/man/man4 st.4 Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk ats 95/12/25 20:05:23 Modified: share/man/man4 st.4 Log: Delete the obsolete reference to st(1) in the SEE ALSO section. The st(1) command is long ago merged in mt(1). Revision Changes Path 1.4 +0 -1 src/share/man/man4/st.4 From owner-cvs-share Tue Dec 26 14:03:05 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA18220 for cvs-share-outgoing; Tue, 26 Dec 1995 14:03:05 -0800 (PST) Received: from halloran-eldar.lcs.mit.edu (halloran-eldar.lcs.mit.edu [18.26.0.159]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id OAA18188 Tue, 26 Dec 1995 14:02:23 -0800 (PST) Received: by halloran-eldar.lcs.mit.edu; (5.65/1.1.8.2/19Aug95-0530PM) id AA14371; Tue, 26 Dec 1995 17:02:16 -0500 Date: Tue, 26 Dec 1995 17:02:16 -0500 From: "Garrett A. Wollman" Message-Id: <9512262202.AA14371@halloran-eldar.lcs.mit.edu> To: Bruce Evans Cc: CVS-committers@freefall.freebsd.org, cvs-share@freefall.freebsd.org Subject: cvs commit: src/share/examples/lkm/syscall/test Makefile testsyscall.c In-Reply-To: <199512250719.XAA06582@freefall.freebsd.org> References: <199512250719.XAA06582@freefall.freebsd.org> Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk < said: > Renamed new_syscall module as new_syscall_mod. It seems to be standard > to have module names ending with _mod, and this may be forced when > MOD_SYSCALL() and MOD_VFS() are updated to match MOD_MISC(). Just in case people are wondering about this... When I was first doing the LKM stuff for FreeBSD, I was concerned that an automatically-generated name such as I was planning might conflict with a name already in use by the relevant module. I thought for a while about individual overrides for this problem, but then realized that it was just easier to tack on a unique suffix that I can be certain doesn't actually occur anywhere. Hence, `_mod'. -GAWollman -- Garrett A. Wollman | Shashish is simple, it's discreet, it's brief. ... wollman@lcs.mit.edu | Shashish is the bonding of hearts in spite of distance. Opinions not those of| It is a bond more powerful than absence. We like people MIT, LCS, ANA, or NSA| who like Shashish. - Claude McKenzie + Florent Vollant From owner-cvs-share Thu Dec 28 06:24:11 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA06080 for cvs-share-outgoing; Thu, 28 Dec 1995 06:24:11 -0800 (PST) Received: (from joerg@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id GAA06073 Thu, 28 Dec 1995 06:24:10 -0800 (PST) Date: Thu, 28 Dec 1995 06:24:10 -0800 (PST) From: Joerg Wunsch Message-Id: <199512281424.GAA06073@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/misc scsi_modes Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk joerg 95/12/28 06:24:09 Modified: share/misc scsi_modes Log: Add the ``CD-ROM Audio Control Parameter Page''. Revision Changes Path 1.3 +25 -0 src/share/misc/scsi_modes From owner-cvs-share Thu Dec 28 13:48:07 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA02183 for cvs-share-outgoing; Thu, 28 Dec 1995 13:48:07 -0800 (PST) Received: (from adam@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA02125 Thu, 28 Dec 1995 13:48:04 -0800 (PST) Date: Thu, 28 Dec 1995 13:48:04 -0800 (PST) From: Adam David Message-Id: <199512282148.NAA02125@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/man/man4/man4.i386 si.4 Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk adam 95/12/28 13:48:03 Modified: share/man/man4/man4.i386 si.4 Log: some lines were repeated, spuriously Revision Changes Path 1.2 +1 -9 src/share/man/man4/man4.i386/si.4 From owner-cvs-share Thu Dec 28 17:27:44 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA12832 for cvs-share-outgoing; Thu, 28 Dec 1995 17:27:44 -0800 (PST) Received: (from jkh@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA12820 Thu, 28 Dec 1995 17:27:41 -0800 (PST) Date: Thu, 28 Dec 1995 17:27:41 -0800 (PST) From: "Jordan K. Hubbard" Message-Id: <199512290127.RAA12820@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/doc/handbook history.sgml Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk jkh 95/12/28 17:27:40 Modified: share/doc/handbook history.sgml Log: Correct date in the history document. Noticed by: davidg Revision Changes Path 1.12 +2 -2 src/share/doc/handbook/history.sgml From owner-cvs-share Thu Dec 28 17:39:09 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA13352 for cvs-share-outgoing; Thu, 28 Dec 1995 17:39:09 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA13345 Thu, 28 Dec 1995 17:39:07 -0800 (PST) Date: Thu, 28 Dec 1995 17:39:07 -0800 (PST) From: Peter Wemm Message-Id: <199512290139.RAA13345@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/man/man4/man4.i386 si.4 Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk peter 95/12/28 17:39:07 Modified: share/man/man4/man4.i386 si.4 Log: A couple more updates to the man page.. 1: the eisa code has not been updated to the 'new style' code yet 2: recieve buffer flushing is now implemented. Revision Changes Path 1.3 +3 -4 src/share/man/man4/man4.i386/si.4 From owner-cvs-share Thu Dec 28 20:49:13 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA24483 for cvs-share-outgoing; Thu, 28 Dec 1995 20:49:13 -0800 (PST) Received: (from joerg@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA24476 Thu, 28 Dec 1995 20:49:11 -0800 (PST) Date: Thu, 28 Dec 1995 20:49:11 -0800 (PST) From: Joerg Wunsch Message-Id: <199512290449.UAA24476@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/doc/handbook mirrors.sgml Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk joerg 95/12/28 20:49:10 Modified: share/doc/handbook mirrors.sgml Log: Hide the German mirrors behind de.freebsd.org. Revision Changes Path 1.13 +15 -15 src/share/doc/handbook/mirrors.sgml From owner-cvs-share Thu Dec 28 22:39:12 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA00979 for cvs-share-outgoing; Thu, 28 Dec 1995 22:39:12 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id WAA00973 Thu, 28 Dec 1995 22:39:09 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id WAA00333; Thu, 28 Dec 1995 22:39:07 -0800 To: Joerg Wunsch cc: CVS-committers@freefall.FreeBSD.org, cvs-share@freefall.FreeBSD.org Subject: Re: cvs commit: src/share/doc/handbook mirrors.sgml In-reply-to: Your message of "Thu, 28 Dec 1995 20:49:11 PST." <199512290449.UAA24476@freefall.freebsd.org> Date: Thu, 28 Dec 1995 22:39:07 -0800 Message-ID: <331.820219147@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk aiee! You just stomped me - I was doing all the changes at once.. :) Ah well, I will simply fold in your changes or something. Jordan > joerg 95/12/28 20:49:10 > > Modified: share/doc/handbook mirrors.sgml > Log: > Hide the German mirrors behind de.freebsd.org. > > Revision Changes Path > 1.13 +15 -15 src/share/doc/handbook/mirrors.sgml From owner-cvs-share Thu Dec 28 22:58:37 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA01934 for cvs-share-outgoing; Thu, 28 Dec 1995 22:58:37 -0800 (PST) Received: (from jkh@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA01926 Thu, 28 Dec 1995 22:58:35 -0800 (PST) Date: Thu, 28 Dec 1995 22:58:35 -0800 (PST) From: "Jordan K. Hubbard" Message-Id: <199512290658.WAA01926@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/doc/handbook mirrors.sgml Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk jkh 95/12/28 22:58:34 Modified: share/doc/handbook mirrors.sgml Log: Go to orthogonal naming scheme for those hosts that support it. Remove some information in the process, but I'm trying to make this as transparent as possible so that regions can move site names around as ftp servers are created or go offline. Revision Changes Path 1.14 +54 -70 src/share/doc/handbook/mirrors.sgml From owner-cvs-share Thu Dec 28 23:11:42 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id XAA02594 for cvs-share-outgoing; Thu, 28 Dec 1995 23:11:42 -0800 (PST) Received: (from jkh@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id XAA02585 Thu, 28 Dec 1995 23:11:40 -0800 (PST) Date: Thu, 28 Dec 1995 23:11:40 -0800 (PST) From: "Jordan K. Hubbard" Message-Id: <199512290711.XAA02585@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/doc/handbook mirrors.sgml Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk jkh 95/12/28 23:11:40 Modified: share/doc/handbook mirrors.sgml Log: Whoops! ftp6.de.freebsd.org doesn't exist. Revision Changes Path 1.15 +1 -4 src/share/doc/handbook/mirrors.sgml From owner-cvs-share Fri Dec 29 04:51:39 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id EAA18978 for cvs-share-outgoing; Fri, 29 Dec 1995 04:51:39 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id EAA18969 Fri, 29 Dec 1995 04:51:36 -0800 (PST) Date: Fri, 29 Dec 1995 04:51:36 -0800 (PST) From: Bruce Evans Message-Id: <199512291251.EAA18969@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/man/man4/man4.i386 sio.4 Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk bde 95/12/29 04:51:34 Modified: sys/i386/isa sio.c sys/i386/conf LINT share/man/man4/man4.i386 sio.4 Log: Added support for the Hayes ESP serial card. Submitted by: Sean Eric Fagan (sef@kithrup.com) Based on code by John Vinopal (banshee@resort.com) Cosmetic (I hope) changes by me (bde). Revision Changes Path 1.131 +120 -1 src/sys/i386/isa/sio.c 1.231 +2 -1 src/sys/i386/conf/LINT 1.18 +5 -1 src/share/man/man4/man4.i386/sio.4 From owner-cvs-share Sat Dec 30 16:08:21 1995 Return-Path: owner-cvs-share Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id QAA25734 for cvs-share-outgoing; Sat, 30 Dec 1995 16:08:21 -0800 (PST) Received: (from joerg@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id QAA25726 Sat, 30 Dec 1995 16:08:19 -0800 (PST) Date: Sat, 30 Dec 1995 16:08:19 -0800 (PST) From: Joerg Wunsch Message-Id: <199512310008.QAA25726@freefall.freebsd.org> To: CVS-committers, cvs-share Subject: cvs commit: src/share/man/man9 devfs_add_devsw.9 devfs_link.9 Sender: owner-cvs-share@FreeBSD.ORG Precedence: bulk joerg 95/12/30 16:08:18 Added: share/man/man9 devfs_add_devsw.9 devfs_link.9 Log: Add man pages for devfs functions after Julian's descripton. Someone must be the first. :)