From owner-freebsd-commit Sun Oct 29 01:36:21 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA05945 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:36:21 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA05915 for cvs-all-outgoing; Sun, 29 Oct 1995 01:36:07 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA05903 for cvs-gnu-outgoing; Sun, 29 Oct 1995 01:36:05 -0700 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA05888 ; Sun, 29 Oct 1995 01:35:54 -0700 Date: Sun, 29 Oct 1995 01:35:54 -0700 From: Peter Wemm Message-Id: <199510290835.BAA05888@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/rcs/lib conf.h Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/29 01:35:52 Modified: gnu/usr.bin/rcs/lib conf.h Log: AARGH!!!! Fix the hard-coded pathname to /usr/local/bin/co and /usr/local/bin/merge that I missed... From owner-freebsd-commit Sun Oct 29 01:42:21 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06268 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:42:21 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06242 for cvs-all-outgoing; Sun, 29 Oct 1995 01:42:13 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06222 for cvs-gnu-outgoing; Sun, 29 Oct 1995 01:42:10 -0700 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id BAA06195 ; Sun, 29 Oct 1995 01:41:54 -0700 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id QAA10096; Sun, 29 Oct 1995 16:41:41 +0800 Date: Sun, 29 Oct 1995 16:41:41 +0800 (WST) From: Peter Wemm To: CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/lib conf.h In-Reply-To: <199510290835.BAA05888@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Sun, 29 Oct 1995, Peter Wemm wrote: > peter 95/10/29 01:35:52 > > Modified: gnu/usr.bin/rcs/lib conf.h > Log: > AARGH!!!! > > Fix the hard-coded pathname to /usr/local/bin/co and /usr/local/bin/merge > that I missed... Pointed out by: bde (sorry, forgot this in the commit message) Somebody please pass the conical hat! If you're running via ctm-cvs-cur and have just got the most recent deltas, I'd suggest applying this patch to your checked out copy of rcs/lib/conf.h so that you dont get dung out to dry if you compile/install it. The upcoming cvs-src-cur probably will be OK. -Peter RCS file: /home/ncvs/src/gnu/usr.bin/rcs/lib/conf.h,v retrieving revision 1.4 diff -c -r1.4 conf.h *** 1.4 1995/10/28 21:49:25 --- conf.h 1995/10/29 08:32:09 *************** *** 210,216 **** /* Do struct stat s and t describe the same file? Answer d if unknown. */ #define same_file(s,t,d) ((s).st_ino==(t).st_ino && (s).st_dev==(t).st_dev) #define has_utimbuf 1 /* Does struct utimbuf work? */ ! #define CO "/usr/local/bin/co" /* name of 'co' program */ #define COMPAT2 0 /* Are version 2 files supported? */ #define DIFF "/usr/bin/diff" /* name of 'diff' program */ #define DIFF3 "/usr/bin/diff3" /* name of 'diff3' program */ --- 210,216 ---- /* Do struct stat s and t describe the same file? Answer d if unknown. */ #define same_file(s,t,d) ((s).st_ino==(t).st_ino && (s).st_dev==(t).st_dev) #define has_utimbuf 1 /* Does struct utimbuf work? */ ! #define CO "/usr/bin/co" /* name of 'co' program */ #define COMPAT2 0 /* Are version 2 files supported? */ #define DIFF "/usr/bin/diff" /* name of 'diff' program */ #define DIFF3 "/usr/bin/diff3" /* name of 'diff3' program */ *************** *** 221,227 **** #define DIFF_FAILURE 1 /* DIFF status if differences are found */ #define DIFF_TROUBLE 2 /* DIFF status if trouble */ #define ED "/bin/ed" /* name of 'ed' program (used only if !DIFF3_BIN) */ ! #define MERGE "/usr/local/bin/merge" /* name of 'merge' program */ #define TMPDIR "/tmp" /* default directory for temporary files */ #define SLASH '/' /* principal filename separator */ #define SLASHes '/' /* `case SLASHes:' labels all filename separators */ --- 221,227 ---- #define DIFF_FAILURE 1 /* DIFF status if differences are found */ #define DIFF_TROUBLE 2 /* DIFF status if trouble */ #define ED "/bin/ed" /* name of 'ed' program (used only if !DIFF3_BIN) */ ! #define MERGE "/usr/bin/merge" /* name of 'merge' program */ #define TMPDIR "/tmp" /* default directory for temporary files */ #define SLASH '/' /* principal filename separator */ #define SLASHes '/' /* `case SLASHes:' labels all filename separators */ From owner-freebsd-commit Sun Oct 29 01:52:59 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06704 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:52:59 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06689 for cvs-all-outgoing; Sun, 29 Oct 1995 01:52:49 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06669 for cvs-gnu-outgoing; Sun, 29 Oct 1995 01:52:44 -0700 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06654 ; Sun, 29 Oct 1995 01:52:30 -0700 Date: Sun, 29 Oct 1995 01:52:30 -0700 From: Peter Wemm Message-Id: <199510290852.BAA06654@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/diff - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/29 01:52:28 Branch: gnu/usr.bin/diff 1.1.1 Log: Import diff-2.7's diff.texi which I left out last time. Suggested by: bde Status: Vendor Tag: GNU Release Tags: diff_2_7 N src/gnu/usr.bin/diff/diff.texi No conflicts created by this import From owner-freebsd-commit Sun Oct 29 01:02:59 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07205 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:02:59 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07189 for cvs-all-outgoing; Sun, 29 Oct 1995 01:02:51 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07168 for cvs-gnu-outgoing; Sun, 29 Oct 1995 01:02:47 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07140 ; Sun, 29 Oct 1995 01:02:32 -0800 Date: Sun, 29 Oct 1995 01:02:32 -0800 From: Peter Wemm Message-Id: <199510290902.BAA07140@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/diff/doc - New directory Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/29 01:02:31 src/gnu/usr.bin/diff/doc - New directory From owner-freebsd-commit Sun Oct 29 01:03:30 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07299 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:03:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07280 for cvs-all-outgoing; Sun, 29 Oct 1995 01:03:22 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07260 for cvs-usrsbin-outgoing; Sun, 29 Oct 1995 01:03:19 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07245 ; Sun, 29 Oct 1995 01:03:16 -0800 Date: Sun, 29 Oct 1995 01:03:16 -0800 From: Bruce Evans Message-Id: <199510290903.BAA07245@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/29 01:03:15 Modified: usr.sbin Makefile Log: Add rndcontrol. From owner-freebsd-commit Sun Oct 29 01:08:58 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07709 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:08:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07686 for cvs-all-outgoing; Sun, 29 Oct 1995 01:08:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07676 for cvs-gnu-outgoing; Sun, 29 Oct 1995 01:08:47 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA07665 ; Sun, 29 Oct 1995 01:08:38 -0800 Date: Sun, 29 Oct 1995 01:08:38 -0800 From: Peter Wemm Message-Id: <199510290908.BAA07665@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/diff/doc Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk hsu 95/10/29 01:08:37 Modified: gnu/usr.bin/diff Makefile Added: gnu/usr.bin/diff/doc Makefile Log: Build and install diff.info.. As Bruce said, this is a little bogus, it'd be nice if bsd.prog.mk knew about .texi in the same way as it does man pages.. Submitted by: bde From owner-freebsd-commit Sun Oct 29 01:44:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09064 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:44:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09038 for cvs-all-outgoing; Sun, 29 Oct 1995 01:44:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09025 for cvs-sbin-outgoing; Sun, 29 Oct 1995 01:44:20 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09011 ; Sun, 29 Oct 1995 01:44:12 -0800 Date: Sun, 29 Oct 1995 01:44:12 -0800 From: Poul-Henning Kamp Message-Id: <199510290944.BAA09011@freefall.freebsd.org> To: CVS-commiters, cvs-sbin Subject: cvs commit: src/sbin/init init.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/29 01:44:11 Modified: sbin/init init.c Log: Define TRUE & FALSE rather than depending on bogus #includes. From owner-freebsd-commit Sun Oct 29 01:46:32 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09252 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:46:32 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09237 for cvs-all-outgoing; Sun, 29 Oct 1995 01:46:25 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09224 for cvs-sys-outgoing; Sun, 29 Oct 1995 01:46:22 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09215 ; Sun, 29 Oct 1995 01:46:15 -0800 Date: Sun, 29 Oct 1995 01:46:15 -0800 From: David Greenman Message-Id: <199510290946.BAA09215@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/pci aic7870.c Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/10/29 01:46:14 Branch: sys/dev/aic7xxx RELENG_2_1_0 sys/i386/scsi RELENG_2_1_0 sys/pci RELENG_2_1_0 Modified: sys/dev/aic7xxx aic7xxx.seq sys/i386/scsi aic7xxx.c aic7xxx.h sys/pci aic7870.c Log: Brought in Justin's recent fixes: Work correctly with aha-2940U, fix timeout time (was 1 tick rather than 2 seconds). From owner-freebsd-commit Sun Oct 29 01:49:45 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09450 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:49:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09424 for cvs-all-outgoing; Sun, 29 Oct 1995 01:49:35 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09414 for cvs-lib-outgoing; Sun, 29 Oct 1995 01:49:32 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09403 ; Sun, 29 Oct 1995 01:49:24 -0800 Date: Sun, 29 Oct 1995 01:49:24 -0800 From: Poul-Henning Kamp Message-Id: <199510290949.BAA09403@freefall.freebsd.org> To: CVS-commiters, cvs-lib Subject: cvs commit: src/lib/csu/i386 Makefile crt0.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/29 01:49:23 Modified: lib/csu/i386 Makefile crt0.c Log: Clean up and make code (more) readable. From owner-freebsd-commit Sun Oct 29 01:52:08 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09653 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:52:08 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09635 for cvs-all-outgoing; Sun, 29 Oct 1995 01:52:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09625 for cvs-sys-outgoing; Sun, 29 Oct 1995 01:51:57 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09616 ; Sun, 29 Oct 1995 01:51:51 -0800 Date: Sun, 29 Oct 1995 01:51:51 -0800 From: Poul-Henning Kamp Message-Id: <199510290951.BAA09616@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/sys user.h Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/29 01:51:50 Modified: sys/sys user.h Log: Don't include things more than once :-) From owner-freebsd-commit Sun Oct 29 01:53:31 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09802 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:53:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09780 for cvs-all-outgoing; Sun, 29 Oct 1995 01:53:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09768 for cvs-usrbin-outgoing; Sun, 29 Oct 1995 01:53:08 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09757 ; Sun, 29 Oct 1995 01:53:03 -0800 Date: Sun, 29 Oct 1995 01:53:03 -0800 From: Poul-Henning Kamp Message-Id: <199510290953.BAA09757@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/nfsstat nfsstat.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/29 01:53:02 Modified: usr.bin/nfsstat nfsstat.c Log: #include From owner-freebsd-commit Sun Oct 29 01:55:26 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09986 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:55:26 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09972 for cvs-all-outgoing; Sun, 29 Oct 1995 01:55:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09956 for cvs-usrbin-outgoing; Sun, 29 Oct 1995 01:55:15 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09940 ; Sun, 29 Oct 1995 01:55:08 -0800 Date: Sun, 29 Oct 1995 01:55:08 -0800 From: Poul-Henning Kamp Message-Id: <199510290955.BAA09940@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/systat pigs.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/29 01:55:07 Modified: usr.bin/systat pigs.c Log: #include From owner-freebsd-commit Sun Oct 29 01:57:23 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA10199 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:57:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA10180 for cvs-all-outgoing; Sun, 29 Oct 1995 01:57:11 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA10170 for cvs-usrsbin-outgoing; Sun, 29 Oct 1995 01:57:07 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA10159 ; Sun, 29 Oct 1995 01:56:57 -0800 Date: Sun, 29 Oct 1995 01:56:57 -0800 From: Poul-Henning Kamp Message-Id: <199510290956.BAA10159@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/kgmon kgmon.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/29 01:56:55 Modified: usr.sbin/kgmon kgmon.c Log: #include From owner-freebsd-commit Sun Oct 29 01:58:26 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA10318 for freebsd-commit-outgoing; Sun, 29 Oct 1995 01:58:26 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA10297 for cvs-all-outgoing; Sun, 29 Oct 1995 01:58:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA10283 for cvs-usrsbin-outgoing; Sun, 29 Oct 1995 01:58:09 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA10264 ; Sun, 29 Oct 1995 01:57:53 -0800 Date: Sun, 29 Oct 1995 01:57:53 -0800 From: Poul-Henning Kamp Message-Id: <199510290957.BAA10264@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pstat pstat.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/29 01:57:52 Modified: usr.sbin/pstat pstat.c Log: #include I belive make world will work again now. From owner-freebsd-commit Sun Oct 29 02:33:48 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA12514 for freebsd-commit-outgoing; Sun, 29 Oct 1995 02:33:48 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA12502 for cvs-all-outgoing; Sun, 29 Oct 1995 02:33:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA12487 for cvs-usrbin-outgoing; Sun, 29 Oct 1995 02:33:38 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA12475 ; Sun, 29 Oct 1995 02:33:30 -0800 Date: Sun, 29 Oct 1995 02:33:30 -0800 From: "Andrey A. Chernov" Message-Id: <199510291033.CAA12475@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/write write.c Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/10/29 02:33:28 Modified: usr.bin/write write.c Log: Remove char->int promotion. Fix uncontrol function for 8bit chars. From owner-freebsd-commit Sun Oct 29 02:37:06 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA12706 for freebsd-commit-outgoing; Sun, 29 Oct 1995 02:37:06 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA12688 for cvs-all-outgoing; Sun, 29 Oct 1995 02:36:57 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA12674 for cvs-sys-outgoing; Sun, 29 Oct 1995 02:36:55 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id CAA12650 ; Sun, 29 Oct 1995 02:36:39 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id VAA02686; Sun, 29 Oct 1995 21:32:48 +1100 Date: Sun, 29 Oct 1995 21:32:48 +1100 From: Bruce Evans Message-Id: <199510291032.VAA02686@godzilla.zeta.org.au> To: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org, phk@freefall.freebsd.org Subject: Re: cvs commit: src/sys/sys user.h Sender: owner-commit@FreeBSD.org Precedence: bulk > Modified: sys/sys user.h > Log: > Don't include things more than once :-) Most includes of in the kernel are bogus too. It seems to be mostly included by device drivers to get at non-vm stuff that happens to be included by . E.g., lpt.c includes it only to get KERNBASE sio.c includes it only to get TRUE/FALSE Bruce From owner-freebsd-commit Sun Oct 29 02:47:12 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA13141 for freebsd-commit-outgoing; Sun, 29 Oct 1995 02:47:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA13127 for cvs-all-outgoing; Sun, 29 Oct 1995 02:47:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA13114 for cvs-usrbin-outgoing; Sun, 29 Oct 1995 02:46:57 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id CAA13093 ; Sun, 29 Oct 1995 02:46:36 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id VAA03157; Sun, 29 Oct 1995 21:45:16 +1100 Date: Sun, 29 Oct 1995 21:45:16 +1100 From: Bruce Evans Message-Id: <199510291045.VAA03157@godzilla.zeta.org.au> To: CVS-commiters@freefall.freebsd.org, cvs-usrbin@freefall.freebsd.org, phk@freefall.freebsd.org Subject: Re: cvs commit: src/usr.bin/nfsstat nfsstat.c Sender: owner-commit@FreeBSD.org Precedence: bulk > Modified: usr.bin/nfsstat nfsstat.c > Log: > #include Should be just #include . Bruce From owner-freebsd-commit Sun Oct 29 02:55:11 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA13359 for freebsd-commit-outgoing; Sun, 29 Oct 1995 02:55:11 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA13346 for cvs-all-outgoing; Sun, 29 Oct 1995 02:55:03 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA13332 for cvs-usrsbin-outgoing; Sun, 29 Oct 1995 02:55:00 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id CAA13322 ; Sun, 29 Oct 1995 02:54:45 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id VAA03281; Sun, 29 Oct 1995 21:48:34 +1100 Date: Sun, 29 Oct 1995 21:48:34 +1100 From: Bruce Evans Message-Id: <199510291048.VAA03281@godzilla.zeta.org.au> To: CVS-commiters@freefall.freebsd.org, cvs-usrsbin@freefall.freebsd.org, phk@freefall.freebsd.org Subject: Re: cvs commit: src/usr.sbin/kgmon kgmon.c Sender: owner-commit@FreeBSD.org Precedence: bulk > Modified: usr.sbin/kgmon kgmon.c > Log: > #include #include Bruce From owner-freebsd-commit Sun Oct 29 03:07:44 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA13810 for freebsd-commit-outgoing; Sun, 29 Oct 1995 03:07:44 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA13793 for cvs-all-outgoing; Sun, 29 Oct 1995 03:07:32 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA13783 for cvs-usrsbin-outgoing; Sun, 29 Oct 1995 03:07:30 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA13768 ; Sun, 29 Oct 1995 03:07:20 -0800 Date: Sun, 29 Oct 1995 03:07:20 -0800 From: David Greenman Message-Id: <199510291107.DAA13768@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/config mkmakefile.c Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/10/29 03:07:19 Modified: usr.sbin/config mkmakefile.c Log: Added support for a %SFILES token to auto-generate a SFILES= file list in the same way that is done for CFILES. Files ending in .s or .S that match the option criteria will be included in this list. From owner-freebsd-commit Sun Oct 29 03:11:33 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA14002 for freebsd-commit-outgoing; Sun, 29 Oct 1995 03:11:33 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA13981 for cvs-all-outgoing; Sun, 29 Oct 1995 03:11:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA13968 for cvs-sys-outgoing; Sun, 29 Oct 1995 03:11:14 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA13948 ; Sun, 29 Oct 1995 03:10:59 -0800 Date: Sun, 29 Oct 1995 03:10:59 -0800 From: David Greenman Message-Id: <199510291110.DAA13948@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/conf Makefile.i386 Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/10/29 03:10:58 Modified: sys/i386/conf Makefile.i386 Log: Use the new config(8) %SFILES token to auto-generate the SFILES list. Note: THIS REQUIRES THAT YOU REBUILD CONFIG(8)!!! From owner-freebsd-commit Sun Oct 29 03:12:10 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA14066 for freebsd-commit-outgoing; Sun, 29 Oct 1995 03:12:10 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA14039 for cvs-all-outgoing; Sun, 29 Oct 1995 03:11:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA14025 for cvs-usrsbin-outgoing; Sun, 29 Oct 1995 03:11:44 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id DAA14003 ; Sun, 29 Oct 1995 03:11:33 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id WAA04008; Sun, 29 Oct 1995 22:06:19 +1100 Date: Sun, 29 Oct 1995 22:06:19 +1100 From: Bruce Evans Message-Id: <199510291106.WAA04008@godzilla.zeta.org.au> To: CVS-commiters@freefall.freebsd.org, cvs-usrsbin@freefall.freebsd.org, phk@freefall.freebsd.org Subject: Re: cvs commit: src/usr.sbin/pstat pstat.c Sender: owner-commit@FreeBSD.org Precedence: bulk > Modified: usr.sbin/pstat pstat.c > Log: > #include > I belive make world will work again now. A little slower :-). Should be #include or should be fixed to define KERNBASE. pstat.c was missing only the definition of KERNBASE which is only used for a kludge. KERNBASE is defined in and used in although it isn't defined there or in anything included by . pstat.c includes . Bruce From owner-freebsd-commit Sun Oct 29 03:38:16 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA15561 for freebsd-commit-outgoing; Sun, 29 Oct 1995 03:38:16 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA15543 for cvs-all-outgoing; Sun, 29 Oct 1995 03:38:07 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA15532 for cvs-sys-outgoing; Sun, 29 Oct 1995 03:38:05 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA15522 ; Sun, 29 Oct 1995 03:37:58 -0800 Date: Sun, 29 Oct 1995 03:37:58 -0800 From: Bruce Evans Message-Id: <199510291137.DAA15522@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/i386 mem.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/29 03:37:57 Modified: sys/i386/i386 mem.c Log: Fix mmioctl() for !DEVRANDOM case. mmioctl() is a function, not a pointer to a function. From owner-freebsd-commit Sun Oct 29 04:44:11 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA19959 for freebsd-commit-outgoing; Sun, 29 Oct 1995 04:44:11 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA19925 for cvs-all-outgoing; Sun, 29 Oct 1995 04:43:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA19910 for cvs-etc-outgoing; Sun, 29 Oct 1995 04:43:55 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA19893 ; Sun, 29 Oct 1995 04:43:49 -0800 Date: Sun, 29 Oct 1995 04:43:49 -0800 From: "Andrey A. Chernov" Message-Id: <199510291243.EAA19893@freefall.freebsd.org> To: CVS-commiters, cvs-etc Subject: cvs commit: src/etc rc Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/10/29 04:43:48 Modified: etc rc Log: Use back-quotes in `echo ...recover.*` From owner-freebsd-commit Sun Oct 29 07:34:22 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA27607 for freebsd-commit-outgoing; Sun, 29 Oct 1995 07:34:22 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA27581 for cvs-all-outgoing; Sun, 29 Oct 1995 07:34:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA27571 for cvs-sys-outgoing; Sun, 29 Oct 1995 07:33:57 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA27560 ; Sun, 29 Oct 1995 07:33:42 -0800 Date: Sun, 29 Oct 1995 07:33:42 -0800 From: Poul-Henning Kamp Message-Id: <199510291533.HAA27560@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/pci if_pdq.c pdq.c pdq_os.h Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/29 07:33:38 Modified: sys/i386/i386 db_disasm.c math_emu.h math_emulate.c sys/kern kern_acct.c subr_log.c tty_snoop.c uipc_mbuf.c vfs_bio.c vfs_cache.c vfs_cluster.c vfs_conf.c vnode_if.sh sys/miscfs/kernfs kernfs_vnops.c sys/msdosfs denode.h msdosfs_conv.c msdosfs_fat.c msdosfs_vnops.c sys/net if_disc.c if_ethersubr.c if_ppp.c if_tun.c route.c sys/netinet in.c in_pcb.c in_rmx.c ip_fw.c ip_mroute.c sys/nfs nfs.h nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c nfs_subs.c nfs_syscalls.c nfs_vnops.c nfsnode.h sys/pci if_pdq.c pdq.c pdq_os.h Log: Second batch of cleanup changes. This time mostly making a lot of things static and some unused variables here and there. From owner-freebsd-commit Sun Oct 29 07:52:56 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA28538 for freebsd-commit-outgoing; Sun, 29 Oct 1995 07:52:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA28522 for cvs-all-outgoing; Sun, 29 Oct 1995 07:52:48 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA28506 for cvs-etc-outgoing; Sun, 29 Oct 1995 07:52:45 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA28494 ; Sun, 29 Oct 1995 07:52:34 -0800 Date: Sun, 29 Oct 1995 07:52:34 -0800 From: Bruce Evans Message-Id: <199510291552.HAA28494@freefall.freebsd.org> To: CVS-commiters, cvs-etc Subject: cvs commit: src/etc/etc.i386 MAKEDEV Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/29 07:52:32 Modified: etc/etc.i386 MAKEDEV Log: Add random and urandom. From owner-freebsd-commit Sun Oct 29 08:10:28 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA29316 for freebsd-commit-outgoing; Sun, 29 Oct 1995 08:10:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA29303 for cvs-all-outgoing; Sun, 29 Oct 1995 08:10:20 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA29292 for cvs-sys-outgoing; Sun, 29 Oct 1995 08:10:17 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA29281 ; Sun, 29 Oct 1995 08:10:09 -0800 Date: Sun, 29 Oct 1995 08:10:09 -0800 From: Bruce Evans Message-Id: <199510291610.IAA29281@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa wcd.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/29 08:10:08 Modified: sys/i386/isa wcd.c Log: Made wcdattach() non-static again. It is called from atapi.c. The modularization of the wd/wcd/atapi driver is ugly. Added prototypes. From owner-freebsd-commit Sun Oct 29 09:34:53 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA07305 for freebsd-commit-outgoing; Sun, 29 Oct 1995 09:34:53 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA07280 for cvs-all-outgoing; Sun, 29 Oct 1995 09:34:44 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA07267 for cvs-sys-outgoing; Sun, 29 Oct 1995 09:34:33 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA07236 ; Sun, 29 Oct 1995 09:34:20 -0800 Date: Sun, 29 Oct 1995 09:34:20 -0800 From: Bruce Evans Message-Id: <199510291734.JAA07236@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa wd.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/29 09:34:19 Modified: sys/i386/isa wd.c Log: Made wcstart() non-static again. It is called from atapi.c. The modularization of the wd/wcd/atapi driver is ugly. Include cons.h from a less bogus place. Removed an ARGSUSED. Unused args are normal for devswitch functions and lint was informed about them for about 5 functions out of 1000. Lint should be informed about them, if at all, in some other way. From owner-freebsd-commit Sun Oct 29 09:56:49 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA09235 for freebsd-commit-outgoing; Sun, 29 Oct 1995 09:56:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA09219 for cvs-all-outgoing; Sun, 29 Oct 1995 09:56:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA09207 for cvs-gnu-outgoing; Sun, 29 Oct 1995 09:56:38 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA09187 ; Sun, 29 Oct 1995 09:56:30 -0800 Date: Sun, 29 Oct 1995 09:56:30 -0800 From: Peter Wemm Message-Id: <199510291756.JAA09187@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/29 09:56:30 Modified: gnu/usr.bin/rcs/rlog rlog.c Log: Restore nate's change from rev 1.2; improve readability of the rlog output (adds a short row of dashes in a place that CVS and RCS dont mind) From owner-freebsd-commit Sun Oct 29 10:07:25 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA10483 for freebsd-commit-outgoing; Sun, 29 Oct 1995 10:07:25 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA10466 for cvs-all-outgoing; Sun, 29 Oct 1995 10:07:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA10456 for cvs-gnu-outgoing; Sun, 29 Oct 1995 10:07:13 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA10443 ; Sun, 29 Oct 1995 10:07:06 -0800 Date: Sun, 29 Oct 1995 10:07:06 -0800 From: Peter Wemm Message-Id: <199510291807.KAA10443@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/29 10:07:06 Modified: gnu/usr.bin/rcs/rlog rlog.c Log: Restore phk's changes from 1.3 - 1.5.. Adds a -v switch to rlog to get it to print the current version of the RCS files. From owner-freebsd-commit Sun Oct 29 10:24:31 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11551 for freebsd-commit-outgoing; Sun, 29 Oct 1995 10:24:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11539 for cvs-all-outgoing; Sun, 29 Oct 1995 10:24:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11528 for cvs-etc-outgoing; Sun, 29 Oct 1995 10:24:19 -0800 Received: from precipice.shockwave.com (precipice.shockwave.com [171.69.108.33]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id KAA11523 ; Sun, 29 Oct 1995 10:24:15 -0800 Received: from localhost (localhost [127.0.0.1]) by precipice.shockwave.com (8.6.12/8.6.12) with SMTP id KAA01990; Sun, 29 Oct 1995 10:23:42 -0800 Message-Id: <199510291823.KAA01990@precipice.shockwave.com> To: "Andrey A. Chernov" cc: CVS-commiters@freefall.freebsd.org, cvs-etc@freefall.freebsd.org Subject: Re: cvs commit: src/etc rc In-reply-to: Your message of "Sun, 29 Oct 1995 04:43:49 PST." <199510291243.EAA19893@freefall.freebsd.org> Date: Sun, 29 Oct 1995 10:23:42 -0800 From: Paul Traina Sender: owner-commit@FreeBSD.org Precedence: bulk > Date: Sun, 29 Oct 1995 04:43:49 -0800 > From: "Andrey A. Chernov" > To: CVS-commiters@freefall.freebsd.org, cvs-etc@freefall.freebsd.org > Subject: cvs commit: src/etc rc > > ache 95/10/29 04:43:48 > > Modified: etc rc > Log: > Use back-quotes in `echo ...recover.*` Agh.. thanks, I should never patch by hand... sigh. From owner-freebsd-commit Sun Oct 29 11:31:36 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14000 for freebsd-commit-outgoing; Sun, 29 Oct 1995 11:31:36 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA13974 for cvs-all-outgoing; Sun, 29 Oct 1995 11:31:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA13964 for cvs-gnu-outgoing; Sun, 29 Oct 1995 11:31:16 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA13955 ; Sun, 29 Oct 1995 11:31:13 -0800 Date: Sun, 29 Oct 1995 11:31:13 -0800 From: Peter Wemm Message-Id: <199510291931.LAA13955@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/rcs/lib rcsbase.h rcsedit.c rcskeys.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/29 11:31:12 Modified: gnu/usr.bin/rcs/co co.c gnu/usr.bin/rcs/lib rcsbase.h rcsedit.c rcskeys.c Log: Recover the -K option to co, for handling selective keyword expansion. From owner-freebsd-commit Sun Oct 29 11:33:55 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14084 for freebsd-commit-outgoing; Sun, 29 Oct 1995 11:33:55 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14072 for cvs-all-outgoing; Sun, 29 Oct 1995 11:33:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14061 for cvs-sys-outgoing; Sun, 29 Oct 1995 11:33:45 -0800 Received: from halloran-eldar.lcs.mit.edu (halloran-eldar.lcs.mit.edu [18.26.0.159]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id LAA14054 ; Sun, 29 Oct 1995 11:33:38 -0800 Received: by halloran-eldar.lcs.mit.edu; (5.65/1.1.8.2/19Aug95-0530PM) id AA25580; Sun, 29 Oct 1995 14:33:37 -0500 Date: Sun, 29 Oct 1995 14:33:37 -0500 From: "Garrett A. Wollman" Message-Id: <9510291933.AA25580@halloran-eldar.lcs.mit.edu> To: Poul-Henning Kamp Cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: cvs commit: src/sys/pci if_pdq.c pdq.c pdq_os.h In-Reply-To: <199510291533.HAA27560@freefall.freebsd.org> References: <199510291533.HAA27560@freefall.freebsd.org> Sender: owner-commit@FreeBSD.org Precedence: bulk < said: > Second batch of cleanup changes. > This time mostly making a lot of things static and some unused > variables here and there. I assume you are actually checking that the variables really are unused and not just ``unused in my kernel configuration'', right? -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-freebsd-commit Sun Oct 29 11:48:31 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14594 for freebsd-commit-outgoing; Sun, 29 Oct 1995 11:48:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14577 for cvs-all-outgoing; Sun, 29 Oct 1995 11:48:24 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14566 for cvs-ports-outgoing; Sun, 29 Oct 1995 11:48:19 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14554 ; Sun, 29 Oct 1995 11:48:11 -0800 Date: Sun, 29 Oct 1995 11:48:11 -0800 From: "Jordan K. Hubbard" Message-Id: <199510291948.LAA14554@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/x11/xcb/pkg COMMENT Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/10/29 11:48:10 Modified: editors/tkHTML/pkg COMMENT lang/guile-iii/pkg COMMENT lang/python/pkg COMMENT net/wwwish/pkg COMMENT x11/sxpc/pkg COMMENT x11/xcb/pkg COMMENT Log: Shorten the comments. From owner-freebsd-commit Sun Oct 29 11:49:26 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14702 for freebsd-commit-outgoing; Sun, 29 Oct 1995 11:49:26 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14689 for cvs-all-outgoing; Sun, 29 Oct 1995 11:49:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA14679 for cvs-sys-outgoing; Sun, 29 Oct 1995 11:49:16 -0800 Received: from Sysiphos (Sysiphos.MI.Uni-Koeln.DE [134.95.212.10]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id LAA14668 ; Sun, 29 Oct 1995 11:49:07 -0800 Received: by Sysiphos id AA25515 (5.67b/IDA-1.5); Sun, 29 Oct 1995 20:48:47 +0100 Message-Id: <199510291948.AA25515@Sysiphos> From: se@zpr.uni-koeln.de (Stefan Esser) Date: Sun, 29 Oct 1995 20:48:46 +0100 In-Reply-To: David Greenman "Re: cvs commit: src/sys/pci if_de.c" (Oct 28, 4:25) X-Mailer: Mail User's Shell (7.2.6 alpha(2) 7/9/95) To: davidg@Root.COM Subject: Re: cvs commit: src/sys/pci if_de.c Cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org, matt@lkg.dec.com Sender: owner-commit@FreeBSD.org Precedence: bulk On Oct 28, 4:25, David Greenman wrote: } Subject: Re: cvs commit: src/sys/pci if_de.c } >There is a global variable for the purpose of determining } >the maximum burst length. It is currently initialized to } >4 longwords, but I guess having it default to 8 would be } >Ok. (We reduced it to 4 because of a problem reported by } >Matt Thomas with an old Saturn chip set revision). } } So what is the conclusion - is it safe to increase the default burst size } to 8 longwords, or does this indeed cause problems for the Saturn chipset? I've never seen a problem with 8 longwords, the limitation to 4 was put in on Matt's advise, since he made them responsible for problems he had observed ... The NCR uses the burst length as a mask. If so many low order bits are zero, it will start another burst. I.e. it won't cross cache boundaries. Wolfgang's old ASUS SP3 (with the old rev. of the Saturn) worked fine with 8 longwords, too, BTW. Regards, STefan -- Stefan Esser, Zentrum fuer Paralleles Rechnen Tel: +49 221 4706021 Universitaet zu Koeln, Weyertal 80, 50931 Koeln FAX: +49 221 4705160 ============================================================================== http://www.zpr.uni-koeln.de/~se From owner-freebsd-commit Sun Oct 29 13:31:00 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA19153 for freebsd-commit-outgoing; Sun, 29 Oct 1995 13:31:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA19128 for cvs-all-outgoing; Sun, 29 Oct 1995 13:30:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA19116 for cvs-sys-outgoing; Sun, 29 Oct 1995 13:30:42 -0800 Received: (from olah@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA19090 ; Sun, 29 Oct 1995 13:30:28 -0800 Date: Sun, 29 Oct 1995 13:30:28 -0800 From: Andras Olah Message-Id: <199510292130.NAA19090@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netinet tcp_usrreq.c Sender: owner-commit@FreeBSD.org Precedence: bulk olah 95/10/29 13:30:27 Modified: sys/netinet tcp_usrreq.c Log: Start the 2MSL timer when the socket is closed and the TCP connection is in the FIN_WAIT_2 state in order to prevent the conn. hanging there forever. Reviewed by: davidg, olah Submitted by: Arne Henrik Juul Obtained from: bugs@netbsd.org From owner-freebsd-commit Sun Oct 29 14:07:24 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA21006 for freebsd-commit-outgoing; Sun, 29 Oct 1995 14:07:24 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA20990 for cvs-all-outgoing; Sun, 29 Oct 1995 14:07:14 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA20975 for cvs-gnu-outgoing; Sun, 29 Oct 1995 14:07:08 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA20962 ; Sun, 29 Oct 1995 14:06:52 -0800 Date: Sun, 29 Oct 1995 14:06:52 -0800 From: Peter Wemm Message-Id: <199510292206.OAA20962@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/29 14:06:50 Modified: gnu/usr.bin/rcs/ci ci.c gnu/usr.bin/rcs/co co.c gnu/usr.bin/rcs/ident ident.c gnu/usr.bin/rcs/lib rcsbase.h rcsedit.c rcsfcmp.c rcsfnms.c rcsgen.c rcskeep.c rcskeys.c rcslex.c rcsrev.c rcssyn.c rcsutil.c gnu/usr.bin/rcs/rcs rcs.c gnu/usr.bin/rcs/rcsdiff rcsdiff.c gnu/usr.bin/rcs/rcsmerge rcsmerge.c gnu/usr.bin/rcs/rlog rlog.c Log: Remove the $ Log: ... $ lines from the comments in the files that had them. Good greif! This was causing an unimaginable amount of brain-damage! The mere fact that I griped about $ Log $ in a previous commit (misspelled deliberately here) meant that the blasted thing was being expanded from the middle of the log entry as well as the beginning, and using " * All these" as the comment leader.. AARGH!!!! We *really* need to prevent these from being expanded! (or remove the magic identifier from the source). From owner-freebsd-commit Sun Oct 29 15:17:07 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA23976 for freebsd-commit-outgoing; Sun, 29 Oct 1995 15:17:07 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA23964 for cvs-all-outgoing; Sun, 29 Oct 1995 15:16:54 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA23954 for cvs-gnu-outgoing; Sun, 29 Oct 1995 15:16:53 -0800 Received: from Root.COM (implode.Root.COM [198.145.90.17]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id PAA23949 ; Sun, 29 Oct 1995 15:16:46 -0800 Received: from corbin.Root.COM (corbin [198.145.90.50]) by Root.COM (8.6.12/8.6.5) with ESMTP id PAA01349; Sun, 29 Oct 1995 15:16:45 -0800 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.12/8.6.5) with SMTP id PAA12164; Sun, 29 Oct 1995 15:14:18 -0800 Message-Id: <199510292314.PAA12164@corbin.Root.COM> To: Peter Wemm cc: CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.c In-reply-to: Your message of "Sun, 29 Oct 95 14:06:52 PST." <199510292206.OAA20962@freefall.freebsd.org> From: David Greenman Reply-To: davidg@Root.COM Date: Sun, 29 Oct 1995 15:14:18 -0800 Sender: owner-commit@FreeBSD.org Precedence: bulk >peter 95/10/29 14:06:50 > > Modified: gnu/usr.bin/rcs/ci ci.c > gnu/usr.bin/rcs/co co.c > gnu/usr.bin/rcs/ident ident.c > gnu/usr.bin/rcs/lib rcsbase.h rcsedit.c rcsfcmp.c rcsfnms.c > rcsgen.c rcskeep.c rcskeys.c rcslex.c rcsrev.c > rcssyn.c rcsutil.c > gnu/usr.bin/rcs/rcs rcs.c > gnu/usr.bin/rcs/rcsdiff rcsdiff.c > gnu/usr.bin/rcs/rcsmerge rcsmerge.c > gnu/usr.bin/rcs/rlog rlog.c > Log: > Remove the $ Log: ... $ lines from the comments in the files that had > them. Good greif! This was causing an unimaginable amount of brain-damage! > The mere fact that I griped about $ Log $ in a previous commit (misspelled > deliberately here) meant that the blasted thing was being expanded from the > middle of the log entry as well as the beginning, and using " * All these" > as the comment leader.. AARGH!!!! We *really* need to prevent these from > being expanded! (or remove the magic identifier from the source). Is it just me, or does everyone think this is poetic justice? :-) Yeah, $Log$ is evil. -DG From owner-freebsd-commit Sun Oct 29 15:23:55 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA24148 for freebsd-commit-outgoing; Sun, 29 Oct 1995 15:23:55 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA24135 for cvs-all-outgoing; Sun, 29 Oct 1995 15:23:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA24120 for cvs-gnu-outgoing; Sun, 29 Oct 1995 15:23:45 -0800 Received: from precipice.shockwave.com (precipice.shockwave.com [171.69.108.33]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id PAA24115 ; Sun, 29 Oct 1995 15:23:42 -0800 Received: from localhost (localhost [127.0.0.1]) by precipice.shockwave.com (8.6.12/8.6.12) with SMTP id PAA02647; Sun, 29 Oct 1995 15:22:37 -0800 Message-Id: <199510292322.PAA02647@precipice.shockwave.com> To: davidg@Root.COM cc: Peter Wemm , CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.c In-reply-to: Your message of "Sun, 29 Oct 1995 15:14:18 PST." <199510292314.PAA12164@corbin.Root.COM> Date: Sun, 29 Oct 1995 15:22:36 -0800 From: Paul Traina Sender: owner-commit@FreeBSD.org Precedence: bulk Some of us don't think so...in fact, I wish all files had $Log$'s kept inline and trimmed to show all changes in period of time. It's easier than digging through cvs log. Actually, I will agree with you, $Log$ is evil. I hate it, but it's handy. Is it just me, or does everyone think this is poetic justice? :-) Yeah, $Log$ is evil. -DG From owner-freebsd-commit Sun Oct 29 16:38:50 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA16125 for freebsd-commit-outgoing; Sun, 29 Oct 1995 16:38:50 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA15798 for cvs-all-outgoing; Sun, 29 Oct 1995 16:37:46 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA15780 for cvs-gnu-outgoing; Sun, 29 Oct 1995 16:37:44 -0800 Received: from rocky.sri.MT.net (sri.MT.net [204.94.231.129]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id QAA15694 ; Sun, 29 Oct 1995 16:37:33 -0800 Received: (from nate@localhost) by rocky.sri.MT.net (8.6.12/8.6.12) id RAA09168; Sun, 29 Oct 1995 17:39:55 -0700 Date: Sun, 29 Oct 1995 17:39:55 -0700 From: Nate Williams Message-Id: <199510300039.RAA09168@rocky.sri.MT.net> To: Peter Wemm Cc: CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c In-Reply-To: <199510282151.OAA01822@freefall.freebsd.org> References: <199510282151.OAA01822@freefall.freebsd.org> Sender: owner-commit@FreeBSD.org Precedence: bulk [ RCS commit ] > Some of the FreeBSD specific features are not working > in this commit yet (mainly rlog stuff and $FreeBSD$ support) Note, $FreeBSD$ support *never* worked quite right, although that might have been a CVS problem and not an RCS problem. Nate From owner-freebsd-commit Sun Oct 29 18:59:56 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA26084 for freebsd-commit-outgoing; Sun, 29 Oct 1995 18:59:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA26068 for cvs-all-outgoing; Sun, 29 Oct 1995 18:59:51 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA26058 for cvs-etc-outgoing; Sun, 29 Oct 1995 18:59:49 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA26044 ; Sun, 29 Oct 1995 18:59:44 -0800 Date: Sun, 29 Oct 1995 18:59:44 -0800 From: "Jordan K. Hubbard" Message-Id: <199510300259.SAA26044@freefall.freebsd.org> To: CVS-commiters, cvs-etc Subject: cvs commit: src/etc/etc.i386 MAKEDEV Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/10/29 18:59:43 Branch: etc/etc.i386 RELENG_2_1_0 Modified: etc/etc.i386 MAKEDEV Log: Add wcd0 to `all' target. From owner-freebsd-commit Sun Oct 29 19:37:58 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA27927 for freebsd-commit-outgoing; Sun, 29 Oct 1995 19:37:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA27905 for cvs-all-outgoing; Sun, 29 Oct 1995 19:37:51 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA27892 for cvs-gnu-outgoing; Sun, 29 Oct 1995 19:37:48 -0800 Received: from GndRsh.aac.dev.com (GndRsh.aac.dev.com [198.145.92.241]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id TAA27886 ; Sun, 29 Oct 1995 19:37:25 -0800 Received: (from rgrimes@localhost) by GndRsh.aac.dev.com (8.6.12/8.6.12) id TAA07247; Sun, 29 Oct 1995 19:37:13 -0800 From: "Rodney W. Grimes" Message-Id: <199510300337.TAA07247@GndRsh.aac.dev.com> Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c To: nate@rocky.sri.MT.net (Nate Williams) Date: Sun, 29 Oct 1995 19:37:13 -0800 (PST) Cc: peter@freefall.freebsd.org, CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org In-Reply-To: <199510300039.RAA09168@rocky.sri.MT.net> from "Nate Williams" at Oct 29, 95 05:39:55 pm X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 622 Sender: owner-commit@FreeBSD.org Precedence: bulk > > [ RCS commit ] > > > Some of the FreeBSD specific features are not working > > in this commit yet (mainly rlog stuff and $FreeBSD$ support) > > Note, $FreeBSD$ support *never* worked quite right, although that might > have been a CVS problem and not an RCS problem. It is a (was since you removed that support from cvs) cvs problem, the RCS part of the patches works just fine. The only cvs problem was I missed one place for cvs diff to work correctly. -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Reliable computers for FreeBSD From owner-freebsd-commit Sun Oct 29 20:17:31 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id UAA29914 for freebsd-commit-outgoing; Sun, 29 Oct 1995 20:17:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id UAA29900 for cvs-all-outgoing; Sun, 29 Oct 1995 20:17:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id UAA29890 for cvs-gnu-outgoing; Sun, 29 Oct 1995 20:17:25 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id UAA29865 ; Sun, 29 Oct 1995 20:16:49 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id MAA17470; Mon, 30 Oct 1995 12:15:20 +0800 Date: Mon, 30 Oct 1995 12:15:19 +0800 (WST) From: Peter Wemm To: Nate Williams cc: CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c In-Reply-To: <199510300039.RAA09168@rocky.sri.MT.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Sun, 29 Oct 1995, Nate Williams wrote: > [ RCS commit ] > > > Some of the FreeBSD specific features are not working > > in this commit yet (mainly rlog stuff and $FreeBSD$ support) > > Note, $FreeBSD$ support *never* worked quite right, although that might > have been a CVS problem and not an RCS problem. >From what I understood, it was a CVS problem that was confined to cvs diff. Even though it's not in the current mainline code, it's still in the cvs history. David Dawes had also given me a copy of his current version that they use for XFree86, built on top of the FreeBSD version of cvs/rcs. Now is probably not the time to bring up the issue of $Id$, $FreeBSD$ and keyword expansion (we've got a release to do)... -Peter > Nate > From owner-freebsd-commit Sun Oct 29 23:07:38 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA08073 for freebsd-commit-outgoing; Sun, 29 Oct 1995 23:07:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA08058 for cvs-all-outgoing; Sun, 29 Oct 1995 23:07:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA08040 for cvs-gnu-outgoing; Sun, 29 Oct 1995 23:07:18 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id XAA08016 ; Sun, 29 Oct 1995 23:07:07 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id SAA10648; Mon, 30 Oct 1995 18:04:53 +1100 Date: Mon, 30 Oct 1995 18:04:53 +1100 From: Bruce Evans Message-Id: <199510300704.SAA10648@godzilla.zeta.org.au> To: nate@rocky.sri.MT.net, peter@jhome.dialix.com Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c Cc: CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Sender: owner-commit@FreeBSD.org Precedence: bulk >Now is probably not the time to bring up the issue of $Id$, $FreeBSD$ and >keyword expansion (we've got a release to do)... Yes it is :-). $Id$ is treated differently by `cvs export', so in the release, all files with $Id$ have gratuitous differences from the checked out versions. Bruce From owner-freebsd-commit Mon Oct 30 00:05:10 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA10863 for freebsd-commit-outgoing; Mon, 30 Oct 1995 00:05:10 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA10845 for cvs-all-outgoing; Mon, 30 Oct 1995 00:05:07 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA10835 for cvs-user-outgoing; Mon, 30 Oct 1995 00:05:05 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA10821 ; Mon, 30 Oct 1995 00:05:00 -0800 Date: Mon, 30 Oct 1995 00:05:00 -0800 From: "Jordan K. Hubbard" Message-Id: <199510300805.AAA10821@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall/help hardware.hlp relnotes.hlp slice.hlp Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/10/30 00:04:59 Branch: release/sysinstall RELENG_2_1_0 release/sysinstall/help RELENG_2_1_0 Modified: release/sysinstall apache.c devices.c disks.c menus.c release/sysinstall/help hardware.hlp relnotes.hlp slice.hlp Log: Merge in Coranth's latest Apache setup fixes. Add support for wcd0 back in. Incorporate some of Frank Durda's doc fixes. Other miscellany. Submitted by: SNAP testers & myself. From owner-freebsd-commit Mon Oct 30 00:30:47 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA11945 for freebsd-commit-outgoing; Mon, 30 Oct 1995 00:30:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA11925 for cvs-all-outgoing; Mon, 30 Oct 1995 00:30:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA11915 for cvs-etc-outgoing; Mon, 30 Oct 1995 00:30:37 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA11905 ; Mon, 30 Oct 1995 00:30:33 -0800 Date: Mon, 30 Oct 1995 00:30:33 -0800 From: David Greenman Message-Id: <199510300830.AAA11905@freefall.freebsd.org> To: CVS-commiters, cvs-etc Subject: cvs commit: src/etc rc Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/10/30 00:30:32 Branch: etc RELENG_2_1_0 Modified: etc rc Log: Brought in changes from revs 1.74-1.75: fix for vi recovery files. From owner-freebsd-commit Mon Oct 30 00:39:17 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA12256 for freebsd-commit-outgoing; Mon, 30 Oct 1995 00:39:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA12244 for cvs-all-outgoing; Mon, 30 Oct 1995 00:39:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA12234 for cvs-gnu-outgoing; Mon, 30 Oct 1995 00:39:11 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id AAA12160 ; Mon, 30 Oct 1995 00:37:04 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id QAA18082; Mon, 30 Oct 1995 16:35:28 +0800 Date: Mon, 30 Oct 1995 16:35:28 +0800 (WST) From: Peter Wemm To: Bruce Evans cc: nate@rocky.sri.MT.net, CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c In-Reply-To: <199510300704.SAA10648@godzilla.zeta.org.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Mon, 30 Oct 1995, Bruce Evans wrote: > >Now is probably not the time to bring up the issue of $Id$, $FreeBSD$ and > >keyword expansion (we've got a release to do)... > > Yes it is :-). $Id$ is treated differently by `cvs export', so in the > release, all files with $Id$ have gratuitous differences from the checked > out versions. > > Bruce Perhaps somebody could explain the logic behind this to me, as I certainly do not understand why we do this.. Part of 'make release' does a 'cvs co' of the source tree, and builds it. OK, fair enough.. So, where does this 'cvs export' code come from? It looks very much like we supply source code that does not match the binaries.. That's not real comforting for people who want to modify a part of the system, but decide to compile that section first to discover that the new binaries dont match what's on the system. Does somebody manually 'cvs export' the code, tar.gz it and split it? If we are worried about somebody cvs importing the source into their own tree and loosing our $Id$ lines, IMHO that's not the way to do it - $FreeBSD$ would be much better and just ship either the source tree that was used in the 'make release' or use proper 'cvs co'.. Well Bruce, you started it.. :-) Cheers, -Peter From owner-freebsd-commit Mon Oct 30 01:10:51 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA13579 for freebsd-commit-outgoing; Mon, 30 Oct 1995 01:10:51 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA13558 for cvs-all-outgoing; Mon, 30 Oct 1995 01:10:39 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA13533 for cvs-gnu-outgoing; Mon, 30 Oct 1995 01:10:31 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id BAA13512 ; Mon, 30 Oct 1995 01:10:09 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id UAA15212; Mon, 30 Oct 1995 20:04:39 +1100 Date: Mon, 30 Oct 1995 20:04:39 +1100 From: Bruce Evans Message-Id: <199510300904.UAA15212@godzilla.zeta.org.au> To: bde@zeta.org.au, peter@jhome.dialix.com Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c Cc: CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org, nate@rocky.sri.MT.net Sender: owner-commit@FreeBSD.org Precedence: bulk >> Yes it is :-). $Id$ is treated differently by `cvs export', so in the >> release, all files with $Id$ have gratuitous differences from the checked >> out versions. >Perhaps somebody could explain the logic behind this to me, as I >certainly do not understand why we do this.. I thought it was to preserve our Ids from other users' revision control systems. It's annoying when foreign revision control polices such as $Log$ in rcs get imported. Even for things like $Id$ that we want, we really want our Ids separate from the originals. >So, where does this 'cvs export' code come from? It looks very much like Don't know. >If we are worried about somebody cvs importing the source into their own >tree and loosing our $Id$ lines, IMHO that's not the way to do it - >$FreeBSD$ would be much better and just ship either the source tree that >was used in the 'make release' or use proper 'cvs co'.. Perhaps that should be $FreeBSD-Id$. What does $FreeBSD$ do exactly. I'd like one that is applied automatically to all files that we've changed from the vendor branch. Bruce From owner-freebsd-commit Mon Oct 30 01:49:33 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA15350 for freebsd-commit-outgoing; Mon, 30 Oct 1995 01:49:33 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA15331 for cvs-all-outgoing; Mon, 30 Oct 1995 01:49:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA15314 for cvs-sys-outgoing; Mon, 30 Oct 1995 01:49:19 -0800 Received: from tfs.com (tfs.com [140.145.250.1]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id BAA15297 ; Mon, 30 Oct 1995 01:49:03 -0800 Received: from critter.tfs.com by tfs.com (smail3.1.28.1) with SMTP id m0t9qpx-0003wVC; Mon, 30 Oct 95 01:49 PST Received: from localhost (localhost [127.0.0.1]) by critter.tfs.com (8.6.11/8.6.9) with SMTP id KAA02657; Mon, 30 Oct 1995 10:49:10 +0100 X-Authentication-Warning: critter.tfs.com: Host localhost didn't use HELO protocol To: "Garrett A. Wollman" cc: Poul-Henning Kamp , CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/pci if_pdq.c pdq.c pdq_os.h In-reply-to: Your message of "Sun, 29 Oct 1995 14:33:37 EST." <9510291933.AA25580@halloran-eldar.lcs.mit.edu> Date: Mon, 30 Oct 1995 10:49:10 +0100 Message-ID: <2655.815046550@critter.tfs.com> From: Poul-Henning Kamp Sender: owner-commit@FreeBSD.org Precedence: bulk > < said: > > > Second batch of cleanup changes. > > This time mostly making a lot of things static and some unused > > variables here and there. > > I assume you are actually checking that the variables really are > unused and not just ``unused in my kernel configuration'', right? of course not! :-) I'm checking that GENERIC, LINT and my own config compiles. If something isn't included in one of those: toobad. -- 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-freebsd-commit Mon Oct 30 02:04:37 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA16038 for freebsd-commit-outgoing; Mon, 30 Oct 1995 02:04:37 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA16017 for cvs-all-outgoing; Mon, 30 Oct 1995 02:04:32 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA16006 for cvs-gnu-outgoing; Mon, 30 Oct 1995 02:04:30 -0800 Received: from tfs.com (tfs.com [140.145.250.1]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id CAA15989 ; Mon, 30 Oct 1995 02:04:13 -0800 Received: from critter.tfs.com by tfs.com (smail3.1.28.1) with SMTP id m0t9qRb-0003vsC; Mon, 30 Oct 95 01:23 PST Received: from localhost (localhost [127.0.0.1]) by critter.tfs.com (8.6.11/8.6.9) with SMTP id KAA02056; Mon, 30 Oct 1995 10:18:39 +0100 X-Authentication-Warning: critter.tfs.com: Host localhost didn't use HELO protocol To: Peter Wemm cc: CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c In-reply-to: Your message of "Mon, 30 Oct 1995 16:35:28 +0800." Date: Mon, 30 Oct 1995 10:18:36 +0100 Message-ID: <2054.815044716@critter.tfs.com> From: Poul-Henning Kamp Sender: owner-commit@FreeBSD.org Precedence: bulk > So, where does this 'cvs export' code come from? It looks very much like src/release/Makefile. I don't think we should use "export" any more, and it should be simple for Jordan to change it to a "co", though he may have to add a line or two to avoid putting the CVS/ into the src dists. -- 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-freebsd-commit Mon Oct 30 02:04:56 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA16115 for freebsd-commit-outgoing; Mon, 30 Oct 1995 02:04:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA16100 for cvs-all-outgoing; Mon, 30 Oct 1995 02:04:50 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA16089 for cvs-usrbin-outgoing; Mon, 30 Oct 1995 02:04:47 -0800 Received: from tfs.com (tfs.com [140.145.250.1]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id CAA16076 ; Mon, 30 Oct 1995 02:04:43 -0800 Received: from critter.tfs.com by tfs.com (smail3.1.28.1) with SMTP id m0t9qS1-0003wfC; Mon, 30 Oct 95 01:24 PST Received: from localhost (localhost [127.0.0.1]) by critter.tfs.com (8.6.11/8.6.9) with SMTP id CAA01972; Sat, 28 Oct 1995 02:10:02 +0100 X-Authentication-Warning: critter.tfs.com: Host localhost didn't use HELO protocol To: Peter Wemm cc: CVS-commiters@freebsd.org, cvs-usrbin@freebsd.org Subject: Re: cvs commit: src/usr.bin/symorder symorder.c In-reply-to: Your message of "Sat, 28 Oct 1995 05:27:21 MST." <199510281227.FAA08026@freefall.freebsd.org> Date: Sat, 28 Oct 1995 02:10:02 +0100 Message-ID: <1970.814842602@critter.tfs.com> From: Poul-Henning Kamp Sender: owner-commit@freebsd.org Precedence: bulk > peter 95/10/28 05:27:21 > > Modified: usr.bin/symorder symorder.c > Log: > symorder appears to have been designed to run on executable files > only, as it payes no attention to the relocation table (which > references the symbols). > > As a result, running "symorder -c" to clean up the visibility of a LKM > ".o" file (as is done in the new bsd.kmod.mk) totally screws up the > relocation table, making the LKM file unloadable. (ld: bogus > relocation record) Darn, I should have thought of that. > This is a pretty crude fix - I've changed symorder so that when > running in "cleanup" mode, it disables the reordering which was > screwing up the relocation table. I'm sure there is a better fix, but > I didn't have the energy. Feel free to fix this hack, probably by > renumbering the symbol indexes in the relocation table. This is perfectly sensible. The order of symbols in a .o is completely insignificant. Thanks Peter! -- 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-freebsd-commit Mon Oct 30 02:27:05 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA16752 for freebsd-commit-outgoing; Mon, 30 Oct 1995 02:27:05 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA16739 for cvs-all-outgoing; Mon, 30 Oct 1995 02:27:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA16728 for cvs-usrbin-outgoing; Mon, 30 Oct 1995 02:26:57 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id CAA16716 ; Mon, 30 Oct 1995 02:26:35 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id VAA18175; Mon, 30 Oct 1995 21:21:46 +1100 Date: Mon, 30 Oct 1995 21:21:46 +1100 From: Bruce Evans Message-Id: <199510301021.VAA18175@godzilla.zeta.org.au> To: peter@freebsd.org, phk@critter.tfs.com Subject: Re: cvs commit: src/usr.bin/symorder symorder.c Cc: CVS-commiters@freebsd.org, cvs-usrbin@freebsd.org Sender: owner-commit@freebsd.org Precedence: bulk >> This is a pretty crude fix - I've changed symorder so that when >> running in "cleanup" mode, it disables the reordering which was >> screwing up the relocation table. I'm sure there is a better fix, but >> I didn't have the energy. Feel free to fix this hack, probably by >> renumbering the symbol indexes in the relocation table. >This is perfectly sensible. The order of symbols in a .o is completely >insignificant. And you don't want to remove any because they should be used for debugging. `symorder' is not a good name for a utility that manipulates symbol types. Even `strip' would be better. I'd like to nuke symorder because it has a Net/2 copyright. Bruce From owner-freebsd-commit Mon Oct 30 03:03:28 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA18010 for freebsd-commit-outgoing; Mon, 30 Oct 1995 03:03:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA17993 for cvs-all-outgoing; Mon, 30 Oct 1995 03:03:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA17977 for cvs-gnu-outgoing; Mon, 30 Oct 1995 03:03:14 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id DAA17960 ; Mon, 30 Oct 1995 03:02:57 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id VAA19597; Mon, 30 Oct 1995 21:57:34 +1100 Date: Mon, 30 Oct 1995 21:57:34 +1100 From: Bruce Evans Message-Id: <199510301057.VAA19597@godzilla.zeta.org.au> To: peter@jhome.dialix.com, phk@critter.tfs.com Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c Cc: CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Sender: owner-commit@FreeBSD.org Precedence: bulk >> So, where does this 'cvs export' code come from? It looks very much like >src/release/Makefile. >I don't think we should use "export" any more, and it should be simple for >Jordan to change it to a "co", though he may have to add a line or two >to avoid putting the CVS/ into the src dists. Nevermind. This is already implemented. Bruce From owner-freebsd-commit Mon Oct 30 06:03:21 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA23171 for freebsd-commit-outgoing; Mon, 30 Oct 1995 06:03:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA23140 for cvs-all-outgoing; Mon, 30 Oct 1995 06:03:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA23124 for cvs-usrsbin-outgoing; Mon, 30 Oct 1995 06:03:09 -0800 Received: (from adam@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA23115 ; Mon, 30 Oct 1995 06:03:03 -0800 Date: Mon, 30 Oct 1995 06:03:03 -0800 From: Adam David Message-Id: <199510301403.GAA23115@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/inetd inetd.c Sender: owner-commit@FreeBSD.org Precedence: bulk adam 95/10/30 06:03:02 Modified: usr.sbin/inetd inetd.c Log: Implement simple quoting for command args. Previously "abc xyz" became 2 args split at the space. From owner-freebsd-commit Mon Oct 30 07:24:20 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA25857 for freebsd-commit-outgoing; Mon, 30 Oct 1995 07:24:20 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA25845 for cvs-all-outgoing; Mon, 30 Oct 1995 07:24:11 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA25835 for cvs-share-outgoing; Mon, 30 Oct 1995 07:24:09 -0800 Received: (from jfieber@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA25825 ; Mon, 30 Oct 1995 07:24:01 -0800 Date: Mon, 30 Oct 1995 07:24:01 -0800 From: John Fieber Message-Id: <199510301524.HAA25825@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/doc/handbook dma.sgml scsi.sgml Sender: owner-commit@FreeBSD.org Precedence: bulk jfieber 95/10/30 07:24:00 Branch: share/doc/handbook RELENG_2_1_0 Modified: share/doc/handbook dma.sgml scsi.sgml Log: Completely rewritten section on DMA. Submitted by: Frank Durda IV Revised section on SCSI Submitted by: Wilko Bulte From owner-freebsd-commit Mon Oct 30 07:44:51 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26826 for freebsd-commit-outgoing; Mon, 30 Oct 1995 07:44:51 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26806 for cvs-all-outgoing; Mon, 30 Oct 1995 07:44:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26785 for cvs-user-outgoing; Mon, 30 Oct 1995 07:44:44 -0800 Received: (from jfieber@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26771 ; Mon, 30 Oct 1995 07:44:36 -0800 Date: Mon, 30 Oct 1995 07:44:36 -0800 From: John Fieber Message-Id: <199510301544.HAA26771@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall/help relnotes.hlp Sender: owner-commit@FreeBSD.org Precedence: bulk jfieber 95/10/30 07:44:34 Branch: release/sysinstall/help RELENG_2_1_0 Modified: release/sysinstall/help relnotes.hlp Log: Fix incorrect url for the FAQ. From owner-freebsd-commit Mon Oct 30 07:44:59 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26862 for freebsd-commit-outgoing; Mon, 30 Oct 1995 07:44:59 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26850 for cvs-all-outgoing; Mon, 30 Oct 1995 07:44:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26835 for cvs-usrbin-outgoing; Mon, 30 Oct 1995 07:44:53 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26803 ; Mon, 30 Oct 1995 07:44:47 -0800 Date: Mon, 30 Oct 1995 07:44:47 -0800 From: Poul-Henning Kamp Message-Id: <199510301544.HAA26803@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/nfsstat nfsstat.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/30 07:44:46 Modified: usr.bin/nfsstat nfsstat.c Log: -> Spotted by: bde From owner-freebsd-commit Mon Oct 30 07:45:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26979 for freebsd-commit-outgoing; Mon, 30 Oct 1995 07:45:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26954 for cvs-all-outgoing; Mon, 30 Oct 1995 07:45:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26939 for cvs-usrsbin-outgoing; Mon, 30 Oct 1995 07:45:27 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA26920 ; Mon, 30 Oct 1995 07:45:24 -0800 Date: Mon, 30 Oct 1995 07:45:24 -0800 From: Poul-Henning Kamp Message-Id: <199510301545.HAA26920@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/kgmon kgmon.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/30 07:45:23 Modified: usr.sbin/kgmon kgmon.c Log: -> Spotted by: bde From owner-freebsd-commit Mon Oct 30 08:19:17 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA28741 for freebsd-commit-outgoing; Mon, 30 Oct 1995 08:19:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA28728 for cvs-all-outgoing; Mon, 30 Oct 1995 08:19:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA28714 for cvs-share-outgoing; Mon, 30 Oct 1995 08:19:09 -0800 Received: (from jfieber@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA28702 ; Mon, 30 Oct 1995 08:18:58 -0800 Date: Mon, 30 Oct 1995 08:18:58 -0800 From: John Fieber Message-Id: <199510301618.IAA28702@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/doc/handbook install.sgml relnotes.sgml Sender: owner-commit@FreeBSD.org Precedence: bulk jfieber 95/10/30 08:18:57 Branch: share/doc/handbook RELENG_2_1_0 Modified: share/doc/handbook install.sgml relnotes.sgml Log: Start 2.1-ifying these. From owner-freebsd-commit Mon Oct 30 09:02:21 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01016 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:02:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA00995 for cvs-all-outgoing; Mon, 30 Oct 1995 09:02:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA00981 for cvs-sys-outgoing; Mon, 30 Oct 1995 09:01:53 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA00966 ; Mon, 30 Oct 1995 09:01:43 -0800 Date: Mon, 30 Oct 1995 09:01:43 -0800 From: Bruce Evans Message-Id: <199510301701.JAA00966@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/include spl.h Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/30 09:01:41 Modified: sys/i386/include spl.h Log: Mask netisrs during softtty isrs. This may fix PR 798. SLIP and PPP line discipline interrupt handlers more or less expect to be called at spltty() == splimp(), although they have internal splimp()s that are bogus if this expectation is satisfied. They are called at splsoftty() from many tty drivers, so they were not protected from being reentered from their own netisrs. They certainly don't expect that but are apparently remarkably robust if it occurs. The problem in PR 798 seems to be caused by pppstart() being reentered and finishing off the output in progress by following the (stale) sc->sc_outm pointer. Then the original pppstart() finds garbage in m2 after MFREE(m, m2). slstart() doesn't have internal state like sc_outm so reentry of it probably only causes out of order and dropped packets. From owner-freebsd-commit Mon Oct 30 09:13:54 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01376 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:13:54 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01358 for cvs-all-outgoing; Mon, 30 Oct 1995 09:13:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01348 for cvs-sys-outgoing; Mon, 30 Oct 1995 09:13:40 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01336 ; Mon, 30 Oct 1995 09:13:29 -0800 Date: Mon, 30 Oct 1995 09:13:29 -0800 From: Bruce Evans Message-Id: <199510301713.JAA01336@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/i386 db_disasm.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/30 09:13:27 Modified: sys/i386/i386 db_disasm.c Log: Removed bogus statics in declarations that don't allocate storage. Added prototypes. From owner-freebsd-commit Mon Oct 30 09:17:10 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01545 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:17:10 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01533 for cvs-all-outgoing; Mon, 30 Oct 1995 09:17:07 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01523 for cvs-sys-outgoing; Mon, 30 Oct 1995 09:17:04 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01512 ; Mon, 30 Oct 1995 09:16:58 -0800 Date: Mon, 30 Oct 1995 09:16:58 -0800 From: Bruce Evans Message-Id: <199510301716.JAA01512@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern tty_pty.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/30 09:16:57 Modified: sys/kern tty_pty.c Log: Removed an annoying redundant declaration that I added in the previous revision. From owner-freebsd-commit Mon Oct 30 09:25:42 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01947 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:25:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01935 for cvs-all-outgoing; Mon, 30 Oct 1995 09:25:39 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01919 for cvs-CVSROOT-outgoing; Mon, 30 Oct 1995 09:25:37 -0800 Received: (from pst@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA01897 ; Mon, 30 Oct 1995 09:25:31 -0800 Date: Mon, 30 Oct 1995 09:25:31 -0800 From: Paul Traina Message-Id: <199510301725.JAA01897@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT modules Sender: owner-commit@FreeBSD.org Precedence: bulk pst 95/10/30 09:25:31 Modified: . modules Log: gnats --> ports/databases/gnats From owner-freebsd-commit Mon Oct 30 09:26:21 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02054 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:26:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02042 for cvs-all-outgoing; Mon, 30 Oct 1995 09:26:19 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02020 for cvs-ports-outgoing; Mon, 30 Oct 1995 09:26:14 -0800 Received: (from pst@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02004 ; Mon, 30 Oct 1995 09:26:10 -0800 Date: Mon, 30 Oct 1995 09:26:10 -0800 From: Paul Traina Message-Id: <199510301726.JAA02004@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/databases/gnats - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk pst 95/10/30 09:26:10 Branch: databases/gnats 1.1.1 Log: Initial import of gnats 3.2 Approved by: asami Status: Vendor Tag: CYGNUS Release Tags: v3_2 N ports/databases/gnats/Makefile N ports/databases/gnats/files/md5 N ports/databases/gnats/patches/patch-aa N ports/databases/gnats/patches/patch-ab N ports/databases/gnats/pkg/PLIST N ports/databases/gnats/pkg/COMMENT N ports/databases/gnats/pkg/DESCR No conflicts created by this import From owner-freebsd-commit Mon Oct 30 09:29:02 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02251 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:29:02 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02235 for cvs-all-outgoing; Mon, 30 Oct 1995 09:28:59 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02216 for cvs-CVSROOT-outgoing; Mon, 30 Oct 1995 09:28:53 -0800 Received: (from pst@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02189 ; Mon, 30 Oct 1995 09:28:49 -0800 Date: Mon, 30 Oct 1995 09:28:49 -0800 From: Paul Traina Message-Id: <199510301728.JAA02189@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT modules Sender: owner-commit@FreeBSD.org Precedence: bulk pst 95/10/30 09:28:49 Modified: . modules Log: ashe --> ports/editors/ashe From owner-freebsd-commit Mon Oct 30 09:29:17 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02315 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:29:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02297 for cvs-all-outgoing; Mon, 30 Oct 1995 09:29:14 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02287 for cvs-ports-outgoing; Mon, 30 Oct 1995 09:29:11 -0800 Received: (from pst@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02278 ; Mon, 30 Oct 1995 09:29:09 -0800 Date: Mon, 30 Oct 1995 09:29:09 -0800 From: Paul Traina Message-Id: <199510301729.JAA02278@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/editors/ashe - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk pst 95/10/30 09:29:08 Branch: editors/ashe 1.1.1 Log: Initial import of ashe-1.1.2. Status: Vendor Tag: PUNIN Release Tags: v1_1_2 N ports/editors/ashe/Makefile N ports/editors/ashe/files/md5 N ports/editors/ashe/files/Makefile N ports/editors/ashe/patches/patch-aa N ports/editors/ashe/patches/patch-ab N ports/editors/ashe/patches/patch-ac N ports/editors/ashe/patches/patch-ad N ports/editors/ashe/pkg/PLIST N ports/editors/ashe/pkg/DESCR N ports/editors/ashe/pkg/COMMENT N ports/editors/ashe/scripts/configure No conflicts created by this import From owner-freebsd-commit Mon Oct 30 09:32:46 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02521 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:32:46 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02504 for cvs-all-outgoing; Mon, 30 Oct 1995 09:32:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02493 for cvs-ports-outgoing; Mon, 30 Oct 1995 09:32:38 -0800 Received: (from pst@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA02484 ; Mon, 30 Oct 1995 09:32:35 -0800 Date: Mon, 30 Oct 1995 09:32:35 -0800 From: Paul Traina Message-Id: <199510301732.JAA02484@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/editors Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk pst 95/10/30 09:32:34 Modified: databases Makefile editors Makefile Log: Add ashe & gnats (ashe=nobuild due to motif) From owner-freebsd-commit Mon Oct 30 09:46:49 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05313 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:46:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05301 for cvs-all-outgoing; Mon, 30 Oct 1995 09:46:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05281 for cvs-sys-outgoing; Mon, 30 Oct 1995 09:46:34 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id JAA05262 ; Mon, 30 Oct 1995 09:46:19 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id EAA00822; Tue, 31 Oct 1995 04:42:12 +1100 Date: Tue, 31 Oct 1995 04:42:12 +1100 From: Bruce Evans Message-Id: <199510301742.EAA00822@godzilla.zeta.org.au> To: CVS-commiters@freefall.freebsd.org, bde@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/i386/include spl.h Sender: owner-commit@FreeBSD.org Precedence: bulk >bde 95/10/30 09:01:41 > Modified: sys/i386/include spl.h > Log: > Mask netisrs during softtty isrs. This may fix PR 798. SLIP and PPP > line discipline interrupt handlers more or less expect to be called at > spltty() == splimp(), although they have internal splimp()s that are > bogus if this expectation is satisfied. They are called at splsoftty() > from many tty drivers, so they were not protected from being reentered > from their own netisrs. They certainly don't expect that but are > apparently remarkably robust if it occurs. The problem in PR 798 seems > to be caused by pppstart() being reentered and finishing off the output > in progress by following the (stale) sc->sc_outm pointer. Then the > original pppstart() finds garbage in m2 after MFREE(m, m2). slstart() > doesn't have internal state like sc_outm so reentry of it probably only > causes out of order and dropped packets. This change, and possibly related ones, should be in 2.1. Sigh. I hope there are no further spl bugs like this, but it would be safer to run softtty isrs at spltty() == splimp() and mask netisrs and softtty isrs during all h/w isrs. I don't want to do the latter forever (I want softtty isrs to have higher priority than slow bio isrs like wdintr...) because I think netisr latency is more important than h/w isr latency for local devices. Bruce From owner-freebsd-commit Mon Oct 30 09:48:31 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05434 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:48:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05422 for cvs-all-outgoing; Mon, 30 Oct 1995 09:48:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05412 for cvs-share-outgoing; Mon, 30 Oct 1995 09:48:25 -0800 Received: (from jfieber@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05401 ; Mon, 30 Oct 1995 09:48:21 -0800 Date: Mon, 30 Oct 1995 09:48:21 -0800 From: John Fieber Message-Id: <199510301748.JAA05401@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/doc/handbook handbook.sgml install.sgml Sender: owner-commit@FreeBSD.org Precedence: bulk jfieber 95/10/30 09:48:21 Branch: share/doc/handbook RELENG_2_1_0 Modified: share/doc/handbook handbook.sgml install.sgml Log: 2.1-ification, round 2. The contraction police will be throwing Jordan behind bars if he does not clean up his act.... ]:> From owner-freebsd-commit Mon Oct 30 09:56:48 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05745 for freebsd-commit-outgoing; Mon, 30 Oct 1995 09:56:48 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05733 for cvs-all-outgoing; Mon, 30 Oct 1995 09:56:44 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05714 for cvs-sys-outgoing; Mon, 30 Oct 1995 09:56:40 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA05700 ; Mon, 30 Oct 1995 09:56:34 -0800 Date: Mon, 30 Oct 1995 09:56:34 -0800 From: Bruce Evans Message-Id: <199510301756.JAA05700@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/vm vnode_pager.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/30 09:56:33 Modified: sys/vm vnode_pager.c Log: Don't pass an extra trailing arg to some functions. Added the prototypes that found this bug. From owner-freebsd-commit Mon Oct 30 10:05:55 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06163 for freebsd-commit-outgoing; Mon, 30 Oct 1995 10:05:55 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06134 for cvs-all-outgoing; Mon, 30 Oct 1995 10:05:51 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06107 for cvs-user-outgoing; Mon, 30 Oct 1995 10:05:43 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06096 ; Mon, 30 Oct 1995 10:05:35 -0800 Date: Mon, 30 Oct 1995 10:05:35 -0800 From: "Jordan K. Hubbard" Message-Id: <199510301805.KAA06096@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release MIRROR.SITES Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/10/30 10:05:34 Branch: release RELENG_2_1_0 Modified: release MIRROR.SITES Log: Add new Korean site to mirrors. From owner-freebsd-commit Mon Oct 30 10:16:09 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06719 for freebsd-commit-outgoing; Mon, 30 Oct 1995 10:16:09 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06707 for cvs-all-outgoing; Mon, 30 Oct 1995 10:16:06 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06697 for cvs-gnu-outgoing; Mon, 30 Oct 1995 10:16:04 -0800 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id KAA06685 ; Mon, 30 Oct 1995 10:15:58 -0800 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id KAA20497; Mon, 30 Oct 1995 10:15:35 -0800 To: Poul-Henning Kamp cc: Peter Wemm , CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c In-reply-to: Your message of "Mon, 30 Oct 1995 10:18:36 +0100." <2054.815044716@critter.tfs.com> Date: Mon, 30 Oct 1995 10:15:35 -0800 Message-ID: <20491.815076935@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-commit@FreeBSD.org Precedence: bulk > I don't think we should use "export" any more, and it should be simple for > Jordan to change it to a "co", though he may have to add a line or two > to avoid putting the CVS/ into the src dists. Actually, I'm half tempted to change it to a "copy" with some filtering since I'm just about tired of fielding requests from people who wish to build their own customized floppies but don't (understandably) have the CVS repository lying around.. It'd also save a LOT of time in my builds! I know that I can ensure the sanity of my /usr/src, and if other folks want to build floppies then I daresay they can to. The CVS checkout strikes me as an unecessary safety belt. Jordan From owner-freebsd-commit Mon Oct 30 10:20:41 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06887 for freebsd-commit-outgoing; Mon, 30 Oct 1995 10:20:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06871 for cvs-all-outgoing; Mon, 30 Oct 1995 10:20:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA06861 for cvs-gnu-outgoing; Mon, 30 Oct 1995 10:20:33 -0800 Received: from halloran-eldar.lcs.mit.edu (halloran-eldar.lcs.mit.edu [18.26.0.159]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id KAA06856 ; Mon, 30 Oct 1995 10:20:26 -0800 Received: by halloran-eldar.lcs.mit.edu; (5.65/1.1.8.2/19Aug95-0530PM) id AA28005; Mon, 30 Oct 1995 13:20:05 -0500 Date: Mon, 30 Oct 1995 13:20:05 -0500 From: "Garrett A. Wollman" Message-Id: <9510301820.AA28005@halloran-eldar.lcs.mit.edu> To: "Jordan K. Hubbard" Cc: Poul-Henning Kamp , Peter Wemm , CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c In-Reply-To: <20491.815076935@time.cdrom.com> References: <2054.815044716@critter.tfs.com> <20491.815076935@time.cdrom.com> Sender: owner-commit@FreeBSD.org Precedence: bulk < said: > (understandably) have the CVS repository lying around.. It'd also > save a LOT of time in my builds! I know that I can ensure the sanity > of my /usr/src, and if other folks want to build floppies then I > daresay they can to. The CVS checkout strikes me as an unecessary > safety belt. In our environment I have found the separate source areas to be extremely useful in keeping the length of time required for a rebuild down to a minimum. (Of course, I never do a `make release' from the top since it wastes far too much time doing things that should already be done anyway.) If you really want to speed up `make release', get rid of the `make world' in there... -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-freebsd-commit Mon Oct 30 10:35:04 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA07361 for freebsd-commit-outgoing; Mon, 30 Oct 1995 10:35:04 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA07349 for cvs-all-outgoing; Mon, 30 Oct 1995 10:35:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA07336 for cvs-gnu-outgoing; Mon, 30 Oct 1995 10:34:58 -0800 Received: from kryten.atinc.com (kryten.Atinc.COM [198.138.38.7]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id KAA07304 ; Mon, 30 Oct 1995 10:33:45 -0800 Received: (jmb@localhost) by kryten.atinc.com (8.6.9/8.3) id NAA08529; Mon, 30 Oct 1995 13:21:31 -0500 Date: Mon, 30 Oct 1995 13:21:30 -0500 (EST) From: "Jonathan M. Bresler" Subject: Re: cvs commit: src/gnu/usr.bin/rcs/rlog rlog.1 rlog.c To: "Jordan K. Hubbard" cc: Poul-Henning Kamp , Peter Wemm , CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org In-Reply-To: <20491.815076935@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Mon, 30 Oct 1995, Jordan K. Hubbard wrote: > Actually, I'm half tempted to change it to a "copy" with some > filtering since I'm just about tired of fielding requests from people > who wish to build their own customized floppies but don't > (understandably) have the CVS repository lying around.. It'd also > save a LOT of time in my builds! I know that I can ensure the sanity > of my /usr/src, and if other folks want to build floppies then I > daresay they can to. The CVS checkout strikes me as an unecessary > safety belt. JUST DO IT! > > Jordan > Jonathan M. Bresler jmb@kryten.atinc.com | Analysis & Technology, Inc. FreeBSD Postmaster jmb@FreeBSD.Org | 2341 Jeff Davis Hwy play go. | Arlington, VA 22202 ride bike. hack FreeBSD.--ah the good life | 703-418-2800 x346 From owner-freebsd-commit Mon Oct 30 10:45:35 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA07738 for freebsd-commit-outgoing; Mon, 30 Oct 1995 10:45:35 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA07726 for cvs-all-outgoing; Mon, 30 Oct 1995 10:45:32 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA07711 for cvs-share-outgoing; Mon, 30 Oct 1995 10:45:29 -0800 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id KAA07705 ; Mon, 30 Oct 1995 10:45:24 -0800 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id KAA22604; Mon, 30 Oct 1995 10:45:19 -0800 To: John Fieber cc: CVS-commiters@freefall.freebsd.org, cvs-share@freefall.freebsd.org Subject: Re: cvs commit: src/share/doc/handbook handbook.sgml install.sgml In-reply-to: Your message of "Mon, 30 Oct 1995 09:48:21 PST." <199510301748.JAA05401@freefall.freebsd.org> Date: Mon, 30 Oct 1995 10:45:19 -0800 Message-ID: <22602.815078719@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-commit@FreeBSD.org Precedence: bulk > jfieber 95/10/30 09:48:21 > > Branch: share/doc/handbook RELENG_2_1_0 > Modified: share/doc/handbook handbook.sgml install.sgml > Log: > 2.1-ification, round 2. > The contraction police will be throwing Jordan behind bars if > he does not clean up his act.... ]:> No! No! I won't stop! I can't stop! You couldn't make me! :-) Jordan From owner-freebsd-commit Mon Oct 30 12:21:00 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA13819 for freebsd-commit-outgoing; Mon, 30 Oct 1995 12:21:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA13807 for cvs-all-outgoing; Mon, 30 Oct 1995 12:20:57 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA13796 for cvs-sys-outgoing; Mon, 30 Oct 1995 12:20:55 -0800 Received: (from guido@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA13786 ; Mon, 30 Oct 1995 12:20:50 -0800 Date: Mon, 30 Oct 1995 12:20:50 -0800 From: Guido van Rooij Message-Id: <199510302020.MAA13786@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/conf Makefile.i386 Sender: owner-commit@FreeBSD.org Precedence: bulk guido 95/10/30 12:20:50 Modified: sys/i386/conf Makefile.i386 Log: When moving kernel to kernel.old, also change kern.bootfile.to kernel.old. This is a solution for only the first install on a running system, but it's better than it is now. From owner-freebsd-commit Mon Oct 30 14:41:32 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA21558 for freebsd-commit-outgoing; Mon, 30 Oct 1995 14:41:32 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA21495 for cvs-all-outgoing; Mon, 30 Oct 1995 14:39:54 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA21485 for cvs-sys-outgoing; Mon, 30 Oct 1995 14:39:51 -0800 Received: (from markm@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA21463 ; Mon, 30 Oct 1995 14:39:37 -0800 Date: Mon, 30 Oct 1995 14:39:37 -0800 From: Mark Murray Message-Id: <199510302239.OAA21463@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/i386 mem.c Sender: owner-commit@FreeBSD.org Precedence: bulk markm 95/10/30 14:39:36 Modified: sys/i386/i386 mem.c Log: Security fix - do not allow anyone but root to choose the interrupts used in the the randomising process. (This is a change to the /dev/random ioctl())) From owner-freebsd-commit Mon Oct 30 16:39:17 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA27991 for freebsd-commit-outgoing; Mon, 30 Oct 1995 16:39:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA27977 for cvs-all-outgoing; Mon, 30 Oct 1995 16:39:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA27960 for cvs-sys-outgoing; Mon, 30 Oct 1995 16:39:07 -0800 Received: (from julian@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA27940 ; Mon, 30 Oct 1995 16:38:59 -0800 Date: Mon, 30 Oct 1995 16:38:59 -0800 From: Julian Elischer Message-Id: <199510310038.QAA27940@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netipx ipx.h ipx_error.h ipx_if.h ipx_input.c ipx_ip.c ipx_pcb.h ipx_usrreq.c spx.h spx_debug.h spx_timer.h spx_usrreq.c spx_var.h Sender: owner-commit@FreeBSD.org Precedence: bulk julian 95/10/30 16:38:58 Modified: sys/netipx ipx.h ipx_error.h ipx_if.h ipx_input.c ipx_ip.c ipx_pcb.h ipx_usrreq.c spx.h spx_debug.h spx_timer.h spx_usrreq.c spx_var.h Log: Submitted by: Mike Mitchell revise prototypes etc. cleanups (probably more coming) From owner-freebsd-commit Mon Oct 30 16:46:55 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA28367 for freebsd-commit-outgoing; Mon, 30 Oct 1995 16:46:55 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA28353 for cvs-all-outgoing; Mon, 30 Oct 1995 16:46:53 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA28341 for cvs-sys-outgoing; Mon, 30 Oct 1995 16:46:51 -0800 Received: (from julian@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA28324 ; Mon, 30 Oct 1995 16:46:45 -0800 Date: Mon, 30 Oct 1995 16:46:45 -0800 From: Julian Elischer Message-Id: <199510310046.QAA28324@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netipx ipx_ip.h Sender: owner-commit@FreeBSD.org Precedence: bulk julian 95/10/30 16:46:45 Added: sys/netipx ipx_ip.h Log: Submitted by: Mike mitchell add prototypes htat are related to ipx.ip tunnelling From owner-freebsd-commit Mon Oct 30 23:43:22 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA26775 for freebsd-commit-outgoing; Mon, 30 Oct 1995 23:43:22 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA26757 for cvs-all-outgoing; Mon, 30 Oct 1995 23:43:16 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA26743 for cvs-sys-outgoing; Mon, 30 Oct 1995 23:43:12 -0800 Received: (from julian@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA26726 ; Mon, 30 Oct 1995 23:42:56 -0800 Date: Mon, 30 Oct 1995 23:42:56 -0800 From: Julian Elischer Message-Id: <199510310742.XAA26726@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/pci if_vx.c if_vxreg.h Sender: owner-commit@FreeBSD.org Precedence: bulk julian 95/10/30 23:42:55 Modified: sys/conf files sys/i386/conf LINT Added: sys/pci if_vx.c if_vxreg.h Log: Reviewed by: not yet Submitted by: fgray@rice.edu this driver hasn't been checked but as a separate module, bringing it in won't break anything else and it't the best way of testing it...... julian From owner-freebsd-commit Mon Oct 30 23:51:59 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27081 for freebsd-commit-outgoing; Mon, 30 Oct 1995 23:51:59 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27069 for cvs-all-outgoing; Mon, 30 Oct 1995 23:51:57 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27059 for cvs-sys-outgoing; Mon, 30 Oct 1995 23:51:54 -0800 Received: from precipice.shockwave.com (precipice.shockwave.com [171.69.108.33]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id XAA27053 ; Mon, 30 Oct 1995 23:51:51 -0800 Received: from localhost (localhost [127.0.0.1]) by precipice.shockwave.com (8.6.12/8.6.12) with SMTP id XAA15475; Mon, 30 Oct 1995 23:51:11 -0800 Message-Id: <199510310751.XAA15475@precipice.shockwave.com> To: Julian Elischer cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/pci if_vx.c if_vxreg.h In-reply-to: Your message of "Mon, 30 Oct 1995 23:42:56 PST." <199510310742.XAA26726@freefall.freebsd.org> Date: Mon, 30 Oct 1995 23:51:10 -0800 From: Paul Traina Sender: owner-commit@FreeBSD.org Precedence: bulk Um, not to be a jerk... but I see no man page as part of this commit. I think one is necessary given that the behavior is significantly different than the if_ep driver. Paul From: Julian Elischer Subject: cvs commit: src/sys/pci if_vx.c if_vxreg.h julian 95/10/30 23:42:55 Modified: sys/conf files sys/i386/conf LINT Added: sys/pci if_vx.c if_vxreg.h Log: Reviewed by: not yet Submitted by: fgray@rice.edu this driver hasn't been checked but as a separate module, bringing it in wo >>n't break anything else and it't the best way of testing it...... julian From owner-freebsd-commit Tue Oct 31 00:22:25 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA00470 for freebsd-commit-outgoing; Tue, 31 Oct 1995 00:22:25 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA00453 for cvs-all-outgoing; Tue, 31 Oct 1995 00:22:22 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA00439 for cvs-libexec-outgoing; Tue, 31 Oct 1995 00:22:20 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA00415 ; Tue, 31 Oct 1995 00:22:14 -0800 Date: Tue, 31 Oct 1995 00:22:14 -0800 From: "Andrey A. Chernov" Message-Id: <199510310822.AAA00415@freefall.freebsd.org> To: CVS-commiters, cvs-libexec Subject: cvs commit: src/libexec/mail.local Makefile mail.local.c Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/10/31 00:22:14 Modified: libexec/mail.local Makefile mail.local.c Log: Put fsync under #ifdef EXTRA_SANITY and turn it off by default. fsync here cause real disk trashing when large UUCP mail chanks parsed. From owner-freebsd-commit Tue Oct 31 00:32:35 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA02157 for freebsd-commit-outgoing; Tue, 31 Oct 1995 00:32:35 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA02141 for cvs-all-outgoing; Tue, 31 Oct 1995 00:32:32 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA02129 for cvs-libexec-outgoing; Tue, 31 Oct 1995 00:32:30 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id AAA01954 ; Tue, 31 Oct 1995 00:30:41 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id QAA22655; Tue, 31 Oct 1995 16:30:28 +0800 Date: Tue, 31 Oct 1995 16:30:27 +0800 (WST) From: Peter Wemm To: "Andrey A. Chernov" cc: CVS-commiters@freefall.freebsd.org, cvs-libexec@freefall.freebsd.org Subject: Re: cvs commit: src/libexec/mail.local Makefile mail.local.c In-Reply-To: <199510310822.AAA00415@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Tue, 31 Oct 1995, Andrey A. Chernov wrote: > ache 95/10/31 00:22:14 > > Modified: libexec/mail.local Makefile mail.local.c > Log: > Put fsync under #ifdef EXTRA_SANITY and turn it off by default. > fsync here cause real disk trashing when large UUCP mail chanks > parsed. I dont mean to upset Andrey, but IMHO, this is a FUNDAMENTAL sanity requirement. IMHO, incoming email is *precious*, especially on a commercial system. Andrey, I respectfully request that you change it from #ifdef EXTRA_SANITY fsync().. #endif to #ifndef DONT_FSYNC fsync() #endif And the same for Taylor-UUCP 1.06, and sendmail(?) in case you were thinking about doing those too. IMHO, this is bad karma, because we've committed to accepting and delivering the mail. -Peter From owner-freebsd-commit Tue Oct 31 00:38:56 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA02868 for freebsd-commit-outgoing; Tue, 31 Oct 1995 00:38:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA02848 for cvs-all-outgoing; Tue, 31 Oct 1995 00:38:53 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA02825 for cvs-sys-outgoing; Tue, 31 Oct 1995 00:38:50 -0800 Received: from ref.tfs.com (ref.tfs.com [140.145.254.251]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id AAA02816 ; Tue, 31 Oct 1995 00:38:47 -0800 Received: (from julian@localhost) by ref.tfs.com (8.6.12/8.6.12) id AAA15150; Tue, 31 Oct 1995 00:38:18 -0800 From: Julian Elischer Message-Id: <199510310838.AAA15150@ref.tfs.com> Subject: Re: cvs commit: src/sys/pci if_vx.c if_vxreg.h To: pst@shockwave.com (Paul Traina) Date: Tue, 31 Oct 1995 00:38:17 -0800 (PST) Cc: julian@freefall.freebsd.org, CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org, fgray@rice.edu In-Reply-To: <199510310751.XAA15475@precipice.shockwave.com> from "Paul Traina" at Oct 30, 95 11:51:10 pm X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 755 Sender: owner-commit@FreeBSD.org Precedence: bulk I'll mention it to the author.. :) > > Um, not to be a jerk... but I see no man page as part of this commit. > I think one is necessary given that the behavior is significantly different > than the if_ep driver. > > Paul > > From: Julian Elischer > Subject: cvs commit: src/sys/pci if_vx.c if_vxreg.h > julian 95/10/30 23:42:55 > > Modified: sys/conf files > sys/i386/conf LINT > Added: sys/pci if_vx.c if_vxreg.h > Log: > Reviewed by: not yet > Submitted by: fgray@rice.edu > this driver hasn't been checked but as a separate module, bringing it in wo > >>n't > break anything else and it't the best way of testing it...... > > julian > From owner-freebsd-commit Tue Oct 31 00:44:40 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA03339 for freebsd-commit-outgoing; Tue, 31 Oct 1995 00:44:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA03326 for cvs-all-outgoing; Tue, 31 Oct 1995 00:44:35 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA03316 for cvs-gnu-outgoing; Tue, 31 Oct 1995 00:44:31 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA03307 ; Tue, 31 Oct 1995 00:44:25 -0800 Date: Tue, 31 Oct 1995 00:44:25 -0800 From: "Andrey A. Chernov" Message-Id: <199510310844.AAA03307@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/diff diff.c Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/10/31 00:44:24 Modified: gnu/usr.bin/diff diff.c Log: Add setlocale LC_CTYPE From owner-freebsd-commit Tue Oct 31 01:14:45 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA05920 for freebsd-commit-outgoing; Tue, 31 Oct 1995 01:14:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA05901 for cvs-all-outgoing; Tue, 31 Oct 1995 01:14:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA05882 for cvs-libexec-outgoing; Tue, 31 Oct 1995 01:14:38 -0800 Received: from sequent.kiae.su (sequent.kiae.su [144.206.136.6]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id BAA05845 ; Tue, 31 Oct 1995 01:14:20 -0800 Received: by sequent.kiae.su id AA16420 (5.65.kiae-2 ); Tue, 31 Oct 1995 12:13:00 +0300 Received: by sequent.KIAE.su (UUMAIL/2.0); Tue, 31 Oct 95 12:12:59 +0300 Received: (from ache@localhost) by ache.dialup.demos.ru (8.6.12/8.6.12) id MAA01070; Tue, 31 Oct 1995 12:06:27 +0300 To: Peter Wemm Cc: CVS-commiters@freefall.freebsd.org, cvs-libexec@freefall.freebsd.org References: In-Reply-To: ; from Peter Wemm at Tue, 31 Oct 1995 16:30:27 +0800 (WST) Message-Id: Organization: Olahm Ha-Yetzirah Date: Tue, 31 Oct 1995 12:06:26 +0300 (MSK) X-Mailer: Mail/@ [v2.40 FreeBSD] From: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) X-Class: Fast Subject: Re: cvs commit: src/libexec/mail.local Makefile mail.local.c Lines: 44 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Length: 1481 Sender: owner-commit@FreeBSD.org Precedence: bulk In message Peter Wemm writes: >On Tue, 31 Oct 1995, Andrey A. Chernov wrote: >> ache 95/10/31 00:22:14 >> >> Modified: libexec/mail.local Makefile mail.local.c >> Log: >> Put fsync under #ifdef EXTRA_SANITY and turn it off by default. >> fsync here cause real disk trashing when large UUCP mail chanks >> parsed. >I dont mean to upset Andrey, but IMHO, this is a FUNDAMENTAL sanity >requirement. IMHO, incoming email is *precious*, especially on a >commercial system. >Andrey, I respectfully request that you change it from >#ifdef EXTRA_SANITY > fsync().. >#endif >to >#ifndef DONT_FSYNC > fsync() >#endif Ok, I understand you... >And the same for Taylor-UUCP 1.06, and sendmail(?) in case you were thinking >about doing those too. IMHO, this is bad karma, because we've committed to >accepting and delivering the mail. Taylor-UUCP doesn't do fsync by default, sendmail do it in rare cases, so I don't think about them. fsync in mail.local is evil probably only on UUCP sites when large mail chunks parsed at once, on SMTP sites mail usually arrives in async. order, so it not hits. -- Andrey A. Chernov : And I rest so composedly, /Now, in my bed, ache@astral.msk.su : That any beholder /Might fancy me dead - http://dt.demos.su/~ache : Might start at beholding me, /Thinking me dead. RELCOM Team,FreeBSD Team : E.A.Poe From "For Annie" 1849 From owner-freebsd-commit Tue Oct 31 01:17:04 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06310 for freebsd-commit-outgoing; Tue, 31 Oct 1995 01:17:04 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06292 for cvs-all-outgoing; Tue, 31 Oct 1995 01:17:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06276 for cvs-libexec-outgoing; Tue, 31 Oct 1995 01:16:59 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06240 ; Tue, 31 Oct 1995 01:16:49 -0800 Date: Tue, 31 Oct 1995 01:16:49 -0800 From: "Andrey A. Chernov" Message-Id: <199510310916.BAA06240@freefall.freebsd.org> To: CVS-commiters, cvs-libexec Subject: cvs commit: src/libexec/mail.local Makefile mail.local.c Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/10/31 01:16:48 Modified: libexec/mail.local Makefile mail.local.c Log: Revert fsync ifdef behaviour and name, now default variant acts like original one. Suggested by: peter From owner-freebsd-commit Tue Oct 31 01:41:26 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09248 for freebsd-commit-outgoing; Tue, 31 Oct 1995 01:41:26 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09214 for cvs-all-outgoing; Tue, 31 Oct 1995 01:41:14 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA09194 for cvs-libexec-outgoing; Tue, 31 Oct 1995 01:41:11 -0800 Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id BAA09025 ; Tue, 31 Oct 1995 01:39:49 -0800 Received: from sax.sax.de by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id KAA10933; Tue, 31 Oct 1995 10:39:34 +0100 Received: by sax.sax.de (8.6.11/8.6.12-s1) with UUCP id KAA01926; Tue, 31 Oct 1995 10:39:33 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.6.12/8.6.9) id KAA11541; Tue, 31 Oct 1995 10:36:17 +0100 From: J Wunsch Message-Id: <199510310936.KAA11541@uriah.heep.sax.de> Subject: Re: cvs commit: src/libexec/mail.local Makefile mail.local.c To: ache@astral.msk.su (=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=) Date: Tue, 31 Oct 1995 10:36:16 +0100 (MET) Cc: peter@jhome.dialix.com, CVS-commiters@freefall.freebsd.org, cvs-libexec@freefall.freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: from "=?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?=" at Oct 31, 95 12:06:26 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 Content-Length: 612 Sender: owner-commit@FreeBSD.org Precedence: bulk As =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= wrote: > > fsync in mail.local is evil probably only on UUCP sites when large > mail chunks parsed at once, on SMTP sites mail usually > arrives in async. order, so it not hits. Even though i'm as affected as you are (i get everything via UUCP), i wouldn't waste a nanosecond in thinking about _not_ fsynch'ing there. As well as i would not mount anything else than /tmp with the async option. -- 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-freebsd-commit Tue Oct 31 02:46:15 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA17971 for freebsd-commit-outgoing; Tue, 31 Oct 1995 02:46:15 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA17954 for cvs-all-outgoing; Tue, 31 Oct 1995 02:46:03 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA17941 for cvs-sys-outgoing; Tue, 31 Oct 1995 02:46:00 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA17925 ; Tue, 31 Oct 1995 02:45:52 -0800 Date: Tue, 31 Oct 1995 02:45:52 -0800 From: Peter Wemm Message-Id: <199510311045.CAA17925@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/ufs/mfs mfs_vnops.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 02:45:51 Modified: sys/ufs/mfs mfs_vnops.c Log: mfs_open could panic with false identification: panic("mfs_ioctl: .... From owner-freebsd-commit Tue Oct 31 04:14:12 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28984 for freebsd-commit-outgoing; Tue, 31 Oct 1995 04:14:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28937 for cvs-all-outgoing; Tue, 31 Oct 1995 04:14:06 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28912 for cvs-sys-outgoing; Tue, 31 Oct 1995 04:14:03 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28844 ; Tue, 31 Oct 1995 04:13:52 -0800 Date: Tue, 31 Oct 1995 04:13:52 -0800 From: Poul-Henning Kamp Message-Id: <199510311213.EAA28844@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/isofs/cd9660 cd9660_node.h cd9660_vfsops.c cd9660_vnops.c iso.h Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/31 04:13:50 Modified: sys/isofs/cd9660 cd9660_node.h cd9660_vfsops.c cd9660_vnops.c iso.h Log: Make a lot of stuff static. From owner-freebsd-commit Tue Oct 31 09:21:23 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA08237 for freebsd-commit-outgoing; Tue, 31 Oct 1995 09:21:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA08214 for cvs-all-outgoing; Tue, 31 Oct 1995 09:21:19 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA08204 for cvs-sys-outgoing; Tue, 31 Oct 1995 09:21:15 -0800 Received: (from joerg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA08188 ; Tue, 31 Oct 1995 09:21:02 -0800 Date: Tue, 31 Oct 1995 09:21:02 -0800 From: Joerg Wunsch Message-Id: <199510311721.JAA08188@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/scsi scsi_sense.c scsiconf.c Sender: owner-commit@FreeBSD.org Precedence: bulk joerg 95/10/31 09:21:01 Modified: sys/i386/conf GENERIC LINT Log: Include the "od" driver. Modified: sys/i386/i386 swapgeneric.c Log: Minor correction for the "od" driver. Submitted by: akiyama@kme.mei.co.jp (Shunsuke Akiyama) Modified: sys/scsi scsi_sense.c scsiconf.c Log: Include the "od" driver. (Oops, forgot to cvs add the driver file itself. Will do this after this commit.) Make scsiconf more flexible about recognizing ``foreign'' devices. This part needs to be rewritten some day to allow for matches whithou strict version number checks, but either Julian as Peter seem to be too busy right now, so i'm finally commiting the version that's working for me stable now for several months, as an interim workaround. Submitted by: akiyama@kme.mei.co.jp (Shunsuke Akiyama) From owner-freebsd-commit Tue Oct 31 09:31:51 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA09522 for freebsd-commit-outgoing; Tue, 31 Oct 1995 09:31:51 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA09501 for cvs-all-outgoing; Tue, 31 Oct 1995 09:31:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA09487 for cvs-usrsbin-outgoing; Tue, 31 Oct 1995 09:31:44 -0800 Received: (from joerg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA09470 ; Tue, 31 Oct 1995 09:31:37 -0800 Date: Tue, 31 Oct 1995 09:31:37 -0800 From: Joerg Wunsch Message-Id: <199510311731.JAA09470@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/config mkioconf.c Sender: owner-commit@FreeBSD.org Precedence: bulk joerg 95/10/31 09:31:37 Modified: usr.sbin/config mkioconf.c Log: Support the configuration of "od" devices. Submitted by: akiyama@kme.mei.co.jp (Shunsuke Akiyama) From owner-freebsd-commit Tue Oct 31 10:29:13 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA15051 for freebsd-commit-outgoing; Tue, 31 Oct 1995 10:29:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA15035 for cvs-all-outgoing; Tue, 31 Oct 1995 10:29:07 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA15025 for cvs-sys-outgoing; Tue, 31 Oct 1995 10:29:04 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA15012 ; Tue, 31 Oct 1995 10:28:57 -0800 Date: Tue, 31 Oct 1995 10:28:57 -0800 From: Poul-Henning Kamp Message-Id: <199510311828.KAA15012@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa pcicx.c pcic.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/31 10:28:56 Modified: sys/i386/conf LINT files.i386 Added: sys/i386/isa pcicx.c Removed: sys/i386/isa pcic.c Log: Get pccard stuff into LINT. rename i386/isa/pcic.c to .../pcicx.c this file will go away when the if_ze and if_zp dies. From owner-freebsd-commit Tue Oct 31 10:42:07 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA16174 for freebsd-commit-outgoing; Tue, 31 Oct 1995 10:42:07 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA16157 for cvs-all-outgoing; Tue, 31 Oct 1995 10:42:04 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA16145 for cvs-sys-outgoing; Tue, 31 Oct 1995 10:42:02 -0800 Received: (from phk@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA16107 ; Tue, 31 Oct 1995 10:41:51 -0800 Date: Tue, 31 Oct 1995 10:41:51 -0800 From: Poul-Henning Kamp Message-Id: <199510311841.KAA16107@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/scsi aic7xxx.c Sender: owner-commit@FreeBSD.org Precedence: bulk phk 95/10/31 10:41:51 Modified: sys/i386/isa if_ed.c if_ix.c if_lnc.c if_lnc.h sys/i386/isa/ic i82586.h sys/i386/scsi aic7xxx.c Log: Cleanup, make things static. From owner-freebsd-commit Tue Oct 31 11:22:05 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18523 for freebsd-commit-outgoing; Tue, 31 Oct 1995 11:22:05 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18510 for cvs-all-outgoing; Tue, 31 Oct 1995 11:22:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18499 for cvs-libexec-outgoing; Tue, 31 Oct 1995 11:21:59 -0800 Received: from ibp.ibp.fr (ibp.ibp.fr [132.227.60.30]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA18480 ; Tue, 31 Oct 1995 11:21:24 -0800 Received: from blaise.ibp.fr (blaise.ibp.fr [132.227.60.1]) by ibp.ibp.fr (8.6.12/jtpda-5.0) with ESMTP id UAA01042 ; Tue, 31 Oct 1995 20:20:48 +0100 Received: from (uucp@localhost) by blaise.ibp.fr (8.6.12/jtpda-5.0) with UUCP id UAA16594 ; Tue, 31 Oct 1995 20:20:47 +0100 Received: (from roberto@localhost) by keltia.freenix.fr (8.7.1/keltia-uucp-2.6) id UAA08890; Tue, 31 Oct 1995 20:10:22 +0100 (MET) From: Ollivier Robert Message-Id: <199510311910.UAA08890@keltia.freenix.fr> Subject: Re: cvs commit: src/libexec/mail.local Makefile mail.local.c To: joerg_wunsch@uriah.heep.sax.de Date: Tue, 31 Oct 1995 20:10:21 +0100 (MET) Cc: ache@astral.msk.su, peter@jhome.dialix.com, CVS-commiters@freefall.freebsd.org, cvs-libexec@freefall.freebsd.org In-Reply-To: <199510310936.KAA11541@uriah.heep.sax.de> from "J Wunsch" at Oct 31, 95 10:36:16 am X-Operating-System: FreeBSD 2.2-CURRENT ctm#1275 X-Mailer: ELM [version 2.4 PL24 ME8b] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-commit@FreeBSD.org Precedence: bulk It seems that J Wunsch said: > Even though i'm as affected as you are (i get everything via UUCP), i > wouldn't waste a nanosecond in thinking about _not_ fsynch'ing there. I agree. > As well as i would not mount anything else than /tmp with the async > option. It is good for /var/spool/news too, especially during expire... -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.frmug.fr.net FreeBSD keltia.freenix.fr 2.2-CURRENT #5: Mon Oct 30 00:03:29 MET 1995 From owner-freebsd-commit Tue Oct 31 11:22:42 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18602 for freebsd-commit-outgoing; Tue, 31 Oct 1995 11:22:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18590 for cvs-all-outgoing; Tue, 31 Oct 1995 11:22:39 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18580 for cvs-sys-outgoing; Tue, 31 Oct 1995 11:22:37 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18569 ; Tue, 31 Oct 1995 11:22:33 -0800 Date: Tue, 31 Oct 1995 11:22:33 -0800 From: Peter Wemm Message-Id: <199510311922.LAA18569@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/net if_sl.c slcompress.c slcompress.h Sender: owner-commit@FreeBSD.org Precedence: bulk hsu 95/10/31 11:22:33 Modified: sys/net if_sl.c slcompress.c slcompress.h Log: slcompress: split one of the functions into two parts, to allow use by both if_sl and if_ppp (from ppp-2.2), eliminating the nearly identical pppcompress.[ch] code. Add maximum VJ compression states argument to sl_compress_init(). if_sl: call sl_compress_init() with the extra argument. From owner-freebsd-commit Tue Oct 31 11:28:00 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18822 for freebsd-commit-outgoing; Tue, 31 Oct 1995 11:28:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18810 for cvs-all-outgoing; Tue, 31 Oct 1995 11:27:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18800 for cvs-sys-outgoing; Tue, 31 Oct 1995 11:27:56 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18790 ; Tue, 31 Oct 1995 11:27:52 -0800 Date: Tue, 31 Oct 1995 11:27:52 -0800 From: Bruce Evans Message-Id: <199510311927.LAA18790@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern tty.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/10/31 11:27:52 Modified: sys/kern tty.c Log: Fixed initialization of TS_CONNECTED bit in t_state. It wasn't set in open() when CLOCAL is set unless carrier is present. Fixed initialization of line discipline. It lived across opens. Lines that started with the wrong discipline probably didn't work at all, because TS_ISOPEN is only set by TTYDISC. From owner-freebsd-commit Tue Oct 31 11:29:21 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18903 for freebsd-commit-outgoing; Tue, 31 Oct 1995 11:29:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18891 for cvs-all-outgoing; Tue, 31 Oct 1995 11:29:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18876 for cvs-sys-outgoing; Tue, 31 Oct 1995 11:29:14 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA18871 ; Tue, 31 Oct 1995 11:29:07 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id DAA25395; Wed, 1 Nov 1995 03:28:54 +0800 Date: Wed, 1 Nov 1995 03:28:53 +0800 (WST) From: Peter Wemm To: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/net if_sl.c slcompress.c slcompress.h In-Reply-To: <199510311922.LAA18569@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Tue, 31 Oct 1995, Peter Wemm wrote: > > hsu 95/10/31 11:22:33 ^^^ AARGH! Not again??? -Peter From owner-freebsd-commit Tue Oct 31 11:38:54 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19285 for freebsd-commit-outgoing; Tue, 31 Oct 1995 11:38:54 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19273 for cvs-all-outgoing; Tue, 31 Oct 1995 11:38:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19257 for cvs-sys-outgoing; Tue, 31 Oct 1995 11:38:47 -0800 Received: from Root.COM (implode.Root.COM [198.145.90.17]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA19239 ; Tue, 31 Oct 1995 11:38:31 -0800 Received: from corbin.Root.COM (corbin [198.145.90.50]) by Root.COM (8.6.12/8.6.5) with ESMTP id LAA02733; Tue, 31 Oct 1995 11:38:29 -0800 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.12/8.6.5) with SMTP id LAA09627; Tue, 31 Oct 1995 11:33:29 -0800 Message-Id: <199510311933.LAA09627@corbin.Root.COM> To: Peter Wemm cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/net if_sl.c slcompress.c slcompress.h In-reply-to: Your message of "Wed, 01 Nov 95 03:28:53 +0800." From: David Greenman Reply-To: davidg@Root.COM Date: Tue, 31 Oct 1995 11:33:28 -0800 Sender: owner-commit@FreeBSD.org Precedence: bulk >On Tue, 31 Oct 1995, Peter Wemm wrote: >> >> hsu 95/10/31 11:22:33 > ^^^ AARGH! Not again??? > >-Peter It's really ODD that this seems to only happen to you... Why is CVS thinking that you are hsu? -DG From owner-freebsd-commit Tue Oct 31 11:40:52 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19410 for freebsd-commit-outgoing; Tue, 31 Oct 1995 11:40:52 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19392 for cvs-all-outgoing; Tue, 31 Oct 1995 11:40:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19379 for cvs-sys-outgoing; Tue, 31 Oct 1995 11:40:47 -0800 Received: from Root.COM (implode.Root.COM [198.145.90.17]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA19373 ; Tue, 31 Oct 1995 11:40:41 -0800 Received: from corbin.Root.COM (corbin [198.145.90.50]) by Root.COM (8.6.12/8.6.5) with ESMTP id LAA02742; Tue, 31 Oct 1995 11:40:33 -0800 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.12/8.6.5) with SMTP id LAA09641; Tue, 31 Oct 1995 11:35:33 -0800 Message-Id: <199510311935.LAA09641@corbin.Root.COM> To: Peter Wemm cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/kern tty_subr.c In-reply-to: Your message of "Tue, 31 Oct 95 11:00:06 PST." <199510311900.LAA17702@freefall.freebsd.org> From: David Greenman Reply-To: davidg@Root.COM Date: Tue, 31 Oct 1995 11:35:32 -0800 Sender: owner-commit@FreeBSD.org Precedence: bulk >hsu 95/10/31 11:00:05 > > Modified: sys/kern tty_subr.c > Log: > Make a putc()/b_to_q() to a clist that hasn't had cblocks reserved > non-fatal. I've make it return an appropriate error to the caller instead > of panic()ing. > > Handling an error condition is inherently more friendly than exploding > the kernel.. :-) The new behavior is a little closer to traditional > clists, potentially making porting a little simpler. > > Suggested by: bde (many months ago, I've been using this for a while..) It's really strange that you should be committing this now - wcarchive just crashed because of this only a few minutes before your commit! (I'm sure you had nothing to do with it...right? :-)) -DG From owner-freebsd-commit Tue Oct 31 11:48:58 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19865 for freebsd-commit-outgoing; Tue, 31 Oct 1995 11:48:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19847 for cvs-all-outgoing; Tue, 31 Oct 1995 11:48:52 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19833 for cvs-sys-outgoing; Tue, 31 Oct 1995 11:48:49 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA19825 ; Tue, 31 Oct 1995 11:48:39 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id DAA25507; Wed, 1 Nov 1995 03:48:19 +0800 Date: Wed, 1 Nov 1995 03:48:19 +0800 (WST) From: Peter Wemm To: David Greenman cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/kern tty_subr.c In-Reply-To: <199510311935.LAA09641@corbin.Root.COM> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Tue, 31 Oct 1995, David Greenman wrote: > >hsu 95/10/31 11:00:05 ( ^^^^ aargh!!! ) > > Modified: sys/kern tty_subr.c > > Log: > > Make a putc()/b_to_q() to a clist that hasn't had cblocks reserved > > non-fatal. I've make it return an appropriate error to the caller instead > > of panic()ing. > > > > Handling an error condition is inherently more friendly than exploding > > the kernel.. :-) The new behavior is a little closer to traditional > > clists, potentially making porting a little simpler. > > > > Suggested by: bde (many months ago, I've been using this for a while..) > > It's really strange that you should be committing this now - wcarchive just > crashed because of this only a few minutes before your commit! > (I'm sure you had nothing to do with it...right? :-)) Honest, I swear I never knew.. Oh wow.. Perhaps I should go out and buy a lottery ticket or something... :-) :-) (or keep clear of mirrors/black cats etc - I'm not sure if this is a good or bad omen... :-) I used to have this problem occasionally with the specialix driver, and in the end the interrupt routine had to do a lot of tests to attempt to intuit whether or not he cblocks were currently reserved or not. The thought occurred to me this morning that the driver that is in -current has only been seriously stress tested with this modification in the kernel. -Peter > -DG > From owner-freebsd-commit Tue Oct 31 12:05:25 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA20589 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:05:25 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA20577 for cvs-all-outgoing; Tue, 31 Oct 1995 12:05:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA20564 for cvs-CVSROOT-outgoing; Tue, 31 Oct 1995 12:05:19 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA20548 ; Tue, 31 Oct 1995 12:05:13 -0800 Date: Tue, 31 Oct 1995 12:05:13 -0800 From: Peter Wemm Message-Id: <199510312005.MAA20548@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT log_accum.pl Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 12:05:13 Modified: . log_accum.pl Log: The following minor tweak adds a tiny bit of debug info so that I can see how 'hsu' is getting attributed with some of my commits. From owner-freebsd-commit Tue Oct 31 12:07:50 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA20720 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:07:50 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA20706 for cvs-all-outgoing; Tue, 31 Oct 1995 12:07:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA20694 for cvs-sys-outgoing; Tue, 31 Oct 1995 12:07:41 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA20684 ; Tue, 31 Oct 1995 12:07:33 -0800 Date: Tue, 31 Oct 1995 12:07:33 -0800 From: Peter Wemm Message-Id: <199510312007.MAA20684@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/net - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 12:07:33 (peter/633/peter) Branch: sys/net 1.1.2 Log: Import the FreeBSD specific kernel parts of the ppp-2.2 package.. This is the unmodified files vendor branch import, the working stuff will follow shortly.. Status: Vendor Tag: MACKERAS Release Tags: ppp_2_2 C src/sys/net/if_ppp.h N src/sys/net/ppp_tty.c N src/sys/net/if_pppvar.h C src/sys/net/if_ppp.c N src/sys/net/ppp_comp.h N src/sys/net/ppp_defs.h N src/sys/net/bsd_comp.c 2 conflicts created by this import. Use the following command to help the merge: ccvs checkout -jMACKERAS:yesterday -jMACKERAS src/sys/net From owner-freebsd-commit Tue Oct 31 12:24:28 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21425 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:24:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21408 for cvs-all-outgoing; Tue, 31 Oct 1995 12:24:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21397 for cvs-sys-outgoing; Tue, 31 Oct 1995 12:24:20 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21388 ; Tue, 31 Oct 1995 12:24:16 -0800 Date: Tue, 31 Oct 1995 12:24:16 -0800 From: Peter Wemm Message-Id: <199510312024.MAA21388@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/net if_ppp.c if_ppp.h if_pppvar.h ppp_comp.h ppp_defs.h ppp_tty.c Sender: owner-commit@FreeBSD.org Precedence: bulk hsu 95/10/31 12:24:15 (hsu/633/peter) Modified: sys/net if_ppp.c if_ppp.h if_pppvar.h ppp_comp.h ppp_defs.h ppp_tty.c Log: Merge/update ppp-2.2 kernel parts onto mainline. Note that the old if_ppp.c has been split in half into if_ppp.c and ppp_tty.c From owner-freebsd-commit Tue Oct 31 12:24:42 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21478 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:24:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21457 for cvs-all-outgoing; Tue, 31 Oct 1995 12:24:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21447 for cvs-sys-outgoing; Tue, 31 Oct 1995 12:24:36 -0800 Received: from Root.COM (implode.Root.COM [198.145.90.17]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id MAA21412 ; Tue, 31 Oct 1995 12:24:24 -0800 Received: from corbin.Root.COM (corbin [198.145.90.50]) by Root.COM (8.6.12/8.6.5) with ESMTP id MAA02878; Tue, 31 Oct 1995 12:24:23 -0800 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.12/8.6.5) with SMTP id MAA09861; Tue, 31 Oct 1995 12:19:16 -0800 Message-Id: <199510312019.MAA09861@corbin.Root.COM> To: Peter Wemm cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/kern tty_subr.c In-reply-to: Your message of "Tue, 31 Oct 95 11:00:06 PST." <199510311900.LAA17702@freefall.freebsd.org> From: David Greenman Reply-To: davidg@Root.COM Date: Tue, 31 Oct 1995 12:19:16 -0800 Sender: owner-commit@FreeBSD.org Precedence: bulk >hsu 95/10/31 11:00:05 > > Modified: sys/kern tty_subr.c > Log: > Make a putc()/b_to_q() to a clist that hasn't had cblocks reserved > non-fatal. I've make it return an appropriate error to the caller instead > of panic()ing. > > Handling an error condition is inherently more friendly than exploding > the kernel.. :-) The new behavior is a little closer to traditional > clists, potentially making porting a little simpler. > > Suggested by: bde (many months ago, I've been using this for a while..) I just looked at these changes and it appears that you preserve the data being putc()'d/b_to_q()'d rather than dropping it on the floor. It probably would be better to toss it out, otherwise you might cause an infinite loop trying to write it. I don't think the situation will change for the better, so not tossing out with b_to_q() seems to only result in the data staying in the uio struct [see the callers of b_to_q()] (for example) which would result in the process doing the writing to loop trying to do the output. I'm tired, however, and may have analyzed this incorrectly. -DG From owner-freebsd-commit Tue Oct 31 12:30:29 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21807 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:30:29 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21793 for cvs-all-outgoing; Tue, 31 Oct 1995 12:30:25 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21783 for cvs-usrsbin-outgoing; Tue, 31 Oct 1995 12:30:23 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21774 ; Tue, 31 Oct 1995 12:30:19 -0800 Date: Tue, 31 Oct 1995 12:30:19 -0800 From: "Jordan K. Hubbard" Message-Id: <199510312030.MAA21774@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pkg_install/lib file.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/10/31 12:30:19 (jkh/2035/jkh) Modified: usr.sbin/pkg_install/add perform.c usr.sbin/pkg_install/lib file.c Log: Fix the `pkg_add relative to .' bug. Thank you, Ville! Submitted by: Ville Eerola From owner-freebsd-commit Tue Oct 31 12:33:35 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21953 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:33:35 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21938 for cvs-all-outgoing; Tue, 31 Oct 1995 12:33:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21922 for cvs-sys-outgoing; Tue, 31 Oct 1995 12:33:27 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA21912 ; Tue, 31 Oct 1995 12:33:25 -0800 Date: Tue, 31 Oct 1995 12:33:25 -0800 From: Peter Wemm Message-Id: <199510312033.MAA21912@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/conf files Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 12:33:24 (peter/633/peter) Modified: sys/conf files Log: Update the file list for the new ppp files.. From owner-freebsd-commit Tue Oct 31 12:35:30 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22100 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:35:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22088 for cvs-all-outgoing; Tue, 31 Oct 1995 12:35:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22078 for cvs-usrsbin-outgoing; Tue, 31 Oct 1995 12:35:26 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22069 ; Tue, 31 Oct 1995 12:35:22 -0800 Date: Tue, 31 Oct 1995 12:35:22 -0800 From: "Jordan K. Hubbard" Message-Id: <199510312035.MAA22069@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pkg_install/lib file.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/10/31 12:35:21 (jkh/2035/jkh) Branch: usr.sbin/pkg_install/add RELENG_2_1_0 usr.sbin/pkg_install/lib RELENG_2_1_0 Modified: usr.sbin/pkg_install/add perform.c usr.sbin/pkg_install/lib file.c Log: Sync with HEAD. From owner-freebsd-commit Tue Oct 31 12:41:26 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22299 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:41:26 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22286 for cvs-all-outgoing; Tue, 31 Oct 1995 12:41:22 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22276 for cvs-sys-outgoing; Tue, 31 Oct 1995 12:41:19 -0800 Received: from precipice.shockwave.com (precipice.shockwave.com [171.69.108.33]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id MAA22270 ; Tue, 31 Oct 1995 12:41:15 -0800 Received: from localhost (localhost [127.0.0.1]) by precipice.shockwave.com (8.6.12/8.6.12) with SMTP id MAA29147; Tue, 31 Oct 1995 12:39:03 -0800 Message-Id: <199510312039.MAA29147@precipice.shockwave.com> To: Peter Wemm cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/net if_sl.c slcompress.c slcompress.h In-reply-to: Your message of "Tue, 31 Oct 1995 11:22:33 PST." <199510311922.LAA18569@freefall.freebsd.org> Date: Tue, 31 Oct 1995 12:39:02 -0800 From: Paul Traina Sender: owner-commit@FreeBSD.org Precedence: bulk Urk! (a) hsu strikes again? (b) this means that slcompress.[ch] are required for ppp, you need to fix the configuration stuff From: Peter Wemm Subject: cvs commit: src/sys/net if_sl.c slcompress.c slcompress.h hsu 95/10/31 11:22:33 Modified: sys/net if_sl.c slcompress.c slcompress.h Log: slcompress: split one of the functions into two parts, to allow use by both if_sl and if_ppp (from ppp-2.2), eliminating the nearly identical pppcompress.[ch] code. Add maximum VJ compression states argument to sl_compress_init(). if_sl: call sl_compress_init() with the extra argument. From owner-freebsd-commit Tue Oct 31 12:41:44 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22358 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:41:44 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22342 for cvs-all-outgoing; Tue, 31 Oct 1995 12:41:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22332 for cvs-sys-outgoing; Tue, 31 Oct 1995 12:41:36 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22323 ; Tue, 31 Oct 1995 12:41:34 -0800 Date: Tue, 31 Oct 1995 12:41:34 -0800 From: Peter Wemm Message-Id: <199510312041.MAA22323@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/net bsd_comp.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 12:41:34 (peter/633/peter) Modified: sys/net bsd_comp.c Log: Drat.. Missed this one, which #includes ppp-comp.h, not ppp_comp.h From owner-freebsd-commit Tue Oct 31 12:51:42 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22756 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:51:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22744 for cvs-all-outgoing; Tue, 31 Oct 1995 12:51:39 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22732 for cvs-sys-outgoing; Tue, 31 Oct 1995 12:51:35 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22722 ; Tue, 31 Oct 1995 12:51:26 -0800 Date: Tue, 31 Oct 1995 12:51:26 -0800 From: Peter Wemm Message-Id: <199510312051.MAA22722@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/net bsd_comp.c pppcompress.c pppcompress.h Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 12:51:25 (peter/633/peter) Modified: sys/net bsd_comp.c Removed: sys/net pppcompress.c pppcompress.h Log: Remove the old pppcompress files (btw: these look net-2 derived) commit merge for bsd_comp.c - I missed this with a *ppp* wildcard. From owner-freebsd-commit Tue Oct 31 12:54:27 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22989 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:54:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22973 for cvs-all-outgoing; Tue, 31 Oct 1995 12:54:24 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22963 for cvs-user-outgoing; Tue, 31 Oct 1995 12:54:22 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA22949 ; Tue, 31 Oct 1995 12:54:19 -0800 Date: Tue, 31 Oct 1995 12:54:19 -0800 From: Peter Wemm Message-Id: <199510312054.MAA22949@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/lkm/if_ppp Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 12:54:18 (peter/633/peter) Modified: lkm/if_ppp Makefile Log: Update if_ppp lkm to pull in the new files... From owner-freebsd-commit Tue Oct 31 12:54:42 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA23046 for freebsd-commit-outgoing; Tue, 31 Oct 1995 12:54:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA23034 for cvs-all-outgoing; Tue, 31 Oct 1995 12:54:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA23024 for cvs-sys-outgoing; Tue, 31 Oct 1995 12:54:36 -0800 Received: (from pst@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA23015 ; Tue, 31 Oct 1995 12:54:34 -0800 Date: Tue, 31 Oct 1995 12:54:34 -0800 From: Paul Traina Message-Id: <199510312054.MAA23015@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/msdosfs bootsect.h Sender: owner-commit@FreeBSD.org Precedence: bulk pst 95/10/31 12:54:33 (pst/577/pst) Modified: sys/msdosfs bootsect.h Log: Pad out MSDOS boot block to 512 bytes (bugfix only) Submitted by: Andreas Haakh, ah@alman.RoBIN.de From owner-freebsd-commit Tue Oct 31 13:04:17 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA23432 for freebsd-commit-outgoing; Tue, 31 Oct 1995 13:04:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA23420 for cvs-all-outgoing; Tue, 31 Oct 1995 13:04:14 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA23409 for cvs-sys-outgoing; Tue, 31 Oct 1995 13:04:11 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA23398 ; Tue, 31 Oct 1995 13:04:01 -0800 Date: Tue, 31 Oct 1995 13:04:01 -0800 From: Peter Wemm Message-Id: <199510312104.NAA23398@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa isa.c Sender: owner-commit@FreeBSD.org Precedence: bulk tweten 95/10/31 13:03:59 (tweten/633/peter) Modified: sys/i386/isa isa.c Log: We no longer need the spltty() == splimp() hack if PPP is configured into the kernel. ppp_tty.c goes to some lengths to minimise the inter-layer calling (including a soft ISR). ppp_tty.c takes care of the soft masking that was needed still. (I've discovered that bugs in this area show up within an hour if the masking was not correct.. :-} This combination has proven stable on specialix serial ports, although there was some concern about the softtty parts of sio/cy and netisr colliding - but Bruce has fixed that now) From owner-freebsd-commit Tue Oct 31 13:11:42 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA23869 for freebsd-commit-outgoing; Tue, 31 Oct 1995 13:11:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA23857 for cvs-all-outgoing; Tue, 31 Oct 1995 13:11:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA23844 for cvs-usrsbin-outgoing; Tue, 31 Oct 1995 13:11:34 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA23828 ; Tue, 31 Oct 1995 13:11:26 -0800 Date: Tue, 31 Oct 1995 13:11:26 -0800 From: Peter Wemm Message-Id: <199510312111.NAA23828@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pppd - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 13:11:24 (peter/633/peter) Branch: usr.sbin/pppd 1.1.2 Log: Import pppd onto the vendor branch from the ppp-2.2 package.. Status: Vendor Tag: MACKERAS Release Tags: ppp_2_2 C src/usr.sbin/pppd/auth.c N src/usr.sbin/pppd/ccp.c N src/usr.sbin/pppd/ccp.h C src/usr.sbin/pppd/chap.c C src/usr.sbin/pppd/chap.h C src/usr.sbin/pppd/fsm.c C src/usr.sbin/pppd/fsm.h C src/usr.sbin/pppd/ipcp.c C src/usr.sbin/pppd/ipcp.h C src/usr.sbin/pppd/lcp.c C src/usr.sbin/pppd/lcp.h C src/usr.sbin/pppd/magic.c C src/usr.sbin/pppd/magic.h C src/usr.sbin/pppd/main.c C src/usr.sbin/pppd/Makefile U src/usr.sbin/pppd/md5.c U src/usr.sbin/pppd/md5.h C src/usr.sbin/pppd/options.c C src/usr.sbin/pppd/pathnames.h C src/usr.sbin/pppd/patchlevel.h C src/usr.sbin/pppd/pppd.8 C src/usr.sbin/pppd/pppd.h C src/usr.sbin/pppd/sys-bsd.c C src/usr.sbin/pppd/upap.c C src/usr.sbin/pppd/upap.h 21 conflicts created by this import. Use the following command to help the merge: ccvs checkout -jMACKERAS:yesterday -jMACKERAS src/usr.sbin/pppd From owner-freebsd-commit Tue Oct 31 13:18:24 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA24307 for freebsd-commit-outgoing; Tue, 31 Oct 1995 13:18:24 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA24294 for cvs-all-outgoing; Tue, 31 Oct 1995 13:18:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA24283 for cvs-sys-outgoing; Tue, 31 Oct 1995 13:18:16 -0800 Received: (from joerg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA24264 ; Tue, 31 Oct 1995 13:18:03 -0800 Date: Tue, 31 Oct 1995 13:18:03 -0800 From: Joerg Wunsch Message-Id: <199510312118.NAA24264@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/nfs nfs.h Sender: owner-commit@FreeBSD.org Precedence: bulk joerg 95/10/31 13:18:02 (joerg/548/joerg) Modified: sys/nfs nfs.h Log: Include a prerequisite header (so this is consistent again with the NFSv2 state). From owner-freebsd-commit Tue Oct 31 13:22:12 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA24673 for freebsd-commit-outgoing; Tue, 31 Oct 1995 13:22:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA24660 for cvs-all-outgoing; Tue, 31 Oct 1995 13:22:08 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA24645 for cvs-usrsbin-outgoing; Tue, 31 Oct 1995 13:22:05 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA24616 ; Tue, 31 Oct 1995 13:21:54 -0800 Date: Tue, 31 Oct 1995 13:21:54 -0800 From: Peter Wemm Message-Id: <199510312121.NAA24616@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pppd Makefile auth.c ccp.c ccp.h chap.c chap.h fsm.c fsm.h ipcp.c ipcp.h lcp.c lcp.h magic.c magic.h main.c options.c patchlevel.h pathnames.h pppd.8 pppd.h sys-bsd.c upap.c upap.h Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 13:21:53 (peter/633/peter) Modified: usr.sbin/pppd Makefile auth.c ccp.c ccp.h chap.c chap.h fsm.c fsm.h ipcp.c ipcp.h lcp.c lcp.h magic.c magic.h main.c options.c patchlevel.h pathnames.h pppd.8 pppd.h sys-bsd.c upap.c upap.h Log: Bring pppd from ppp-2.2 onto the mainline.. (more work needs to be done here, I'm trying to beat the supscan) From owner-freebsd-commit Tue Oct 31 13:29:45 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA25152 for freebsd-commit-outgoing; Tue, 31 Oct 1995 13:29:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA25132 for cvs-all-outgoing; Tue, 31 Oct 1995 13:29:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA25111 for cvs-usrsbin-outgoing; Tue, 31 Oct 1995 13:29:37 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA25077 ; Tue, 31 Oct 1995 13:29:28 -0800 Date: Tue, 31 Oct 1995 13:29:28 -0800 From: Peter Wemm Message-Id: <199510312129.NAA25077@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pppd ccp.c options.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 13:29:27 (peter/633/peter) Modified: usr.sbin/pppd ccp.c options.c Log: Whoops.. ppp-comp.h -> ppp_comp.h... From owner-freebsd-commit Tue Oct 31 13:35:52 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA25809 for freebsd-commit-outgoing; Tue, 31 Oct 1995 13:35:52 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA25796 for cvs-all-outgoing; Tue, 31 Oct 1995 13:35:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA25786 for cvs-usrsbin-outgoing; Tue, 31 Oct 1995 13:35:47 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA25768 ; Tue, 31 Oct 1995 13:35:38 -0800 Date: Tue, 31 Oct 1995 13:35:38 -0800 From: Peter Wemm Message-Id: <199510312135.NAA25768@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pppstats - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 13:35:37 (peter/633/peter) Branch: usr.sbin/pppstats 1.1.2 Log: Import pppstats from the ppp-2.2 package onto vendor branch. Status: Vendor Tag: MACKERAS Release Tags: ppp_2_2 C src/usr.sbin/pppstats/pppstats.8 C src/usr.sbin/pppstats/pppstats.c C src/usr.sbin/pppstats/Makefile 3 conflicts created by this import. Use the following command to help the merge: ccvs checkout -jMACKERAS:yesterday -jMACKERAS src/usr.sbin/pppstats From owner-freebsd-commit Tue Oct 31 13:42:23 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA26195 for freebsd-commit-outgoing; Tue, 31 Oct 1995 13:42:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA26183 for cvs-all-outgoing; Tue, 31 Oct 1995 13:42:20 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA26170 for cvs-usrsbin-outgoing; Tue, 31 Oct 1995 13:42:17 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA26137 ; Tue, 31 Oct 1995 13:42:01 -0800 Date: Tue, 31 Oct 1995 13:42:01 -0800 From: Peter Wemm Message-Id: <199510312142.NAA26137@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pppstats Makefile pppstats.8 pppstats.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 13:42:00 (peter/633/peter) Modified: usr.sbin/pppstats Makefile pppstats.8 pppstats.c Log: Merge pppstats from ppp-2.2 onto mainline.. This version uses specific interface ioctl()'s rather than groveling around in /dev/kmem From owner-freebsd-commit Tue Oct 31 13:57:43 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA27089 for freebsd-commit-outgoing; Tue, 31 Oct 1995 13:57:43 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA27073 for cvs-all-outgoing; Tue, 31 Oct 1995 13:57:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id NAA27060 for cvs-sys-outgoing; Tue, 31 Oct 1995 13:57:34 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id NAA27041 ; Tue, 31 Oct 1995 13:57:11 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id FAA28492; Wed, 1 Nov 1995 05:56:58 +0800 Date: Wed, 1 Nov 1995 05:56:58 +0800 (WST) From: Peter Wemm To: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/i386/isa isa.c In-Reply-To: <199510312104.NAA23398@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Tue, 31 Oct 1995, Peter Wemm wrote: > tweten 95/10/31 13:03:59 (tweten/633/peter) OK.. Anybody got any idea why "getlogin" is failing on the tail end of a rsh? sub build_header { local($version) = @_; local($header); delete $ENV{'TZ'}; local($sec,$min,$hour,$mday,$mon,$year) = localtime(time); $version = ''; $login = getlogin || (getpwuid($<))[0] || die("Unknown user $<.\n"); ^^^^^^^^ $header = sprintf("%-8s %s %02d/%02d/%02d %02d:%02d:%02d (%s/%d/%s)", $login, $version, $year%100, $mon+1, $mday, $hour, $min, $sec, getlogin, $<, (getpwuid($<))[0]); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ } Since freefall isn't sharing uid's, I'd like to remove the getlogin as a defensive measure. I still want to know why it's possible for me to run a non-setuid program on the end of a rsh, and that non-setuid program somehow gets a different name from it's getlogin() system call. There has got to be a kernel bug there somewhere.. (I've seen similar things happen with XFree86's xdm). -Peter From owner-freebsd-commit Tue Oct 31 14:47:59 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA29360 for freebsd-commit-outgoing; Tue, 31 Oct 1995 14:47:59 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA29348 for cvs-all-outgoing; Tue, 31 Oct 1995 14:47:51 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA29338 for cvs-sys-outgoing; Tue, 31 Oct 1995 14:47:48 -0800 Received: from ref.tfs.com (ref.tfs.com [140.145.254.251]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id OAA29329 ; Tue, 31 Oct 1995 14:47:37 -0800 Received: (from julian@localhost) by ref.tfs.com (8.6.12/8.6.12) id OAA20647; Tue, 31 Oct 1995 14:47:22 -0800 From: Julian Elischer Message-Id: <199510312247.OAA20647@ref.tfs.com> Subject: Re: cvs commit: src/sys/scsi od.c To: joerg@freefall.freebsd.org (Joerg Wunsch) Date: Tue, 31 Oct 1995 14:47:21 -0800 (PST) Cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org In-Reply-To: <199510311726.JAA08622@freefall.freebsd.org> from "Joerg Wunsch" at Oct 31, 95 09:26:00 am X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 673 Sender: owner-commit@FreeBSD.org Precedence: bulk the cd driver handles non 512 byte sectors.. > > joerg 95/10/31 09:25:59 > > Added: sys/scsi od.c > Log: > The "od" driver. While the name is suggesting the use for > magneto-optical devices, it's scope can (and should) be widened to > cover all removable type 0 (direct) devices as well, since this class > of devices is sharing the same principles. Things like suport for > media eject etc. will be supported later. (Shunsuke is also working > on the problems arising out of the use of media with physical block > size != 512 bytes (which is not uncommon for MODs). > > Submitted by: akiyama@kme.mei.co.jp (Shunsuke Akiyama) > From owner-freebsd-commit Tue Oct 31 15:08:04 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA00354 for freebsd-commit-outgoing; Tue, 31 Oct 1995 15:08:04 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA00329 for cvs-all-outgoing; Tue, 31 Oct 1995 15:07:55 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA00309 for cvs-usrbin-outgoing; Tue, 31 Oct 1995 15:07:48 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA00265 ; Tue, 31 Oct 1995 15:07:25 -0800 Date: Tue, 31 Oct 1995 15:07:25 -0800 From: Peter Wemm Message-Id: <199510312307.PAA00265@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/chat - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 15:07:23 (peter/633/peter) Branch: usr.bin/chat 1.1.1 Log: Vendor branch import of chat from ppp-2.2 package.. Status: Vendor Tag: MACKERRAS Release Tags: ppp_2_2 U src/usr.bin/chat/Makefile C src/usr.bin/chat/chat.8 C src/usr.bin/chat/chat.c 2 conflicts created by this import. Use the following command to help the merge: ccvs checkout -jMACKERRAS:yesterday -jMACKERRAS src/usr.bin/chat From owner-freebsd-commit Tue Oct 31 15:08:06 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA00364 for freebsd-commit-outgoing; Tue, 31 Oct 1995 15:08:06 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA00330 for cvs-all-outgoing; Tue, 31 Oct 1995 15:07:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA00310 for cvs-sys-outgoing; Tue, 31 Oct 1995 15:07:48 -0800 Received: from sovcom.kiae.su (sovcom.kiae.su [144.206.136.1]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id PAA00258 ; Tue, 31 Oct 1995 15:07:22 -0800 Received: by sovcom.kiae.su id AA26015 (5.65.kiae-1 ); Wed, 1 Nov 1995 02:02:42 +0300 Received: by sovcom.KIAE.su (UUMAIL/2.0); Wed, 1 Nov 95 02:02:42 +0300 Received: (from ache@localhost) by ache.dialup.demos.ru (8.6.12/8.6.12) id CAA01409; Wed, 1 Nov 1995 02:01:47 +0300 To: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org, Peter Wemm References: <199510311900.LAA17702@freefall.freebsd.org> In-Reply-To: <199510311900.LAA17702@freefall.freebsd.org>; from Peter Wemm at Tue, 31 Oct 1995 11:00:06 -0800 Message-Id: Organization: Olahm Ha-Yetzirah Date: Wed, 1 Nov 1995 02:01:46 +0300 (MSK) X-Mailer: Mail/@ [v2.40 FreeBSD] From: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) X-Class: Fast Subject: Re: cvs commit: src/sys/kern tty_subr.c Lines: 12 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Length: 483 Sender: owner-commit@FreeBSD.org Precedence: bulk In message <199510311900.LAA17702@freefall.freebsd.org> Peter Wemm writes: >hsu 95/10/31 11:00:05 ^^^ Maybe you have the same UID as hsu? I saw already 3 such commits. -- Andrey A. Chernov : And I rest so composedly, /Now, in my bed, ache@astral.msk.su : That any beholder /Might fancy me dead - http://dt.demos.su/~ache : Might start at beholding me, /Thinking me dead. RELCOM Team,FreeBSD Team : E.A.Poe From "For Annie" 1849 From owner-freebsd-commit Tue Oct 31 15:17:41 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA01043 for freebsd-commit-outgoing; Tue, 31 Oct 1995 15:17:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA01022 for cvs-all-outgoing; Tue, 31 Oct 1995 15:17:33 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA01008 for cvs-CVSROOT-outgoing; Tue, 31 Oct 1995 15:17:27 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA00986 ; Tue, 31 Oct 1995 15:17:16 -0800 Date: Tue, 31 Oct 1995 15:17:16 -0800 From: Peter Wemm Message-Id: <199510312317.PAA00986@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT log_accum.pl Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 15:17:14 (peter/633/peter) Modified: . log_accum.pl Log: For the moment, prefer the getpwuid($<) value over getlogin.. Remove debugging output again.. (which proved that getlogin returns the wrong value sometimes..) From owner-freebsd-commit Tue Oct 31 15:29:04 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA01651 for freebsd-commit-outgoing; Tue, 31 Oct 1995 15:29:04 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA01636 for cvs-all-outgoing; Tue, 31 Oct 1995 15:28:55 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA01621 for cvs-usrbin-outgoing; Tue, 31 Oct 1995 15:28:47 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA01598 ; Tue, 31 Oct 1995 15:28:37 -0800 Date: Tue, 31 Oct 1995 15:28:37 -0800 From: Peter Wemm Message-Id: <199510312328.PAA01598@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/chat Makefile chat.8 chat.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 15:28:34 Modified: usr.bin/chat Makefile chat.8 chat.c Log: Merge in changes from ppp-2.2's chat onto the mainline... From owner-freebsd-commit Tue Oct 31 15:37:09 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA02267 for freebsd-commit-outgoing; Tue, 31 Oct 1995 15:37:09 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA02254 for cvs-all-outgoing; Tue, 31 Oct 1995 15:37:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA02244 for cvs-sys-outgoing; Tue, 31 Oct 1995 15:36:59 -0800 Received: (from julian@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA02234 ; Tue, 31 Oct 1995 15:36:48 -0800 Date: Tue, 31 Oct 1995 15:36:48 -0800 From: Julian Elischer Message-Id: <199510312336.PAA02234@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netipx ipx.c ipx.h ipx_cksum.c ipx_error.c ipx_error.h ipx_if.h ipx_input.c ipx_ip.c ipx_ip.h ipx_outputfl.c ipx_pcb.c ipx_pcb.h ipx_proto.c ipx_tun.c ipx_usrreq.c ipx_var.h spx.h spx_debug.c spx_debug.h spx_timer.h spx_usrreq.c spx_var.h Sender: owner-commit@FreeBSD.org Precedence: bulk julian 95/10/31 15:36:47 Modified: sys/i386/conf LINT sys/netipx ipx.c ipx.h ipx_cksum.c ipx_error.c ipx_error.h ipx_if.h ipx_input.c ipx_ip.c ipx_ip.h ipx_outputfl.c ipx_pcb.c ipx_pcb.h ipx_proto.c ipx_tun.c ipx_usrreq.c ipx_var.h spx.h spx_debug.c spx_debug.h spx_timer.h spx_usrreq.c spx_var.h Log: Submitted by: Mike Mitchell (mitchell@ref.tfs.com) these patches bring the ipx code up to the point that it compiles cleanly with the -W arguments suggested by bruce. From owner-freebsd-commit Tue Oct 31 15:45:43 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA02541 for freebsd-commit-outgoing; Tue, 31 Oct 1995 15:45:43 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA02529 for cvs-all-outgoing; Tue, 31 Oct 1995 15:45:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA02519 for cvs-CVSROOT-outgoing; Tue, 31 Oct 1995 15:45:38 -0800 Received: from sequent.kiae.su (sequent.kiae.su [144.206.136.6]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id PAA02510 ; Tue, 31 Oct 1995 15:45:30 -0800 Received: by sequent.kiae.su id AA13390 (5.65.kiae-2 ); Wed, 1 Nov 1995 02:42:15 +0300 Received: by sequent.KIAE.su (UUMAIL/2.0); Wed, 1 Nov 95 02:42:14 +0300 Received: (from ache@localhost) by ache.dialup.demos.ru (8.6.12/8.6.12) id CAA01772; Wed, 1 Nov 1995 02:39:08 +0300 To: CVS-commiters@freefall.freebsd.org, cvs-CVSROOT@freefall.freebsd.org, Peter Wemm References: <199510312317.PAA00986@freefall.freebsd.org> In-Reply-To: <199510312317.PAA00986@freefall.freebsd.org>; from Peter Wemm at Tue, 31 Oct 1995 15:17:16 -0800 Message-Id: Organization: Olahm Ha-Yetzirah Date: Wed, 1 Nov 1995 02:39:07 +0300 (MSK) X-Mailer: Mail/@ [v2.40 FreeBSD] From: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) X-Class: Fast Subject: Re: cvs commit: CVSROOT log_accum.pl Lines: 26 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Length: 1057 Sender: owner-commit@FreeBSD.org Precedence: bulk In message <199510312317.PAA00986@freefall.freebsd.org> Peter Wemm writes: >peter 95/10/31 15:17:14 (peter/633/peter) > Modified: . log_accum.pl > Log: > For the moment, prefer the getpwuid($<) value over getlogin.. > Remove debugging output again.. (which proved that getlogin returns the > wrong value sometimes..) getlogin depends on internal variable _logname_valid which is set after first sucessful getlogin call, then getlogin simple return its static data and even not issue syscall!!! How perl calls C-functions, it is the question... Maybe it call each C-function in the fork? I.e. _longname_valid always 0 for getlogin? Then it is perl bug, it seems that it change uids on the fly, then call getlogin for each of them. -- Andrey A. Chernov : And I rest so composedly, /Now, in my bed, ache@astral.msk.su : That any beholder /Might fancy me dead - http://dt.demos.su/~ache : Might start at beholding me, /Thinking me dead. RELCOM Team,FreeBSD Team : E.A.Poe From "For Annie" 1849 From owner-freebsd-commit Tue Oct 31 16:05:40 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA03197 for freebsd-commit-outgoing; Tue, 31 Oct 1995 16:05:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA03183 for cvs-all-outgoing; Tue, 31 Oct 1995 16:05:33 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA03173 for cvs-CVSROOT-outgoing; Tue, 31 Oct 1995 16:05:31 -0800 Received: from sovcom.kiae.su (sovcom.kiae.su [144.206.136.1]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id QAA03164 ; Tue, 31 Oct 1995 16:05:23 -0800 Received: by sovcom.kiae.su id AA00713 (5.65.kiae-1 ); Wed, 1 Nov 1995 03:00:17 +0300 Received: by sovcom.KIAE.su (UUMAIL/2.0); Wed, 1 Nov 95 03:00:17 +0300 Received: (from ache@localhost) by ache.dialup.demos.ru (8.6.12/8.6.12) id CAA01922; Wed, 1 Nov 1995 02:59:39 +0300 To: CVS-commiters@freefall.freebsd.org, cvs-CVSROOT@freefall.freebsd.org, Peter Wemm References: <199510312317.PAA00986@freefall.freebsd.org> In-Reply-To: ; from =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= at Wed, 1 Nov 1995 02:39:07 +0300 (MSK) Message-Id: Organization: Olahm Ha-Yetzirah Date: Wed, 1 Nov 1995 02:59:39 +0300 (MSK) X-Mailer: Mail/@ [v2.40 FreeBSD] From: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) X-Class: Fast Subject: Re: cvs commit: CVSROOT log_accum.pl Lines: 43 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Length: 1427 Sender: owner-commit@FreeBSD.org Precedence: bulk In message =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= writes: >In message <199510312317.PAA00986@freefall.freebsd.org> Peter Wemm > writes: >>peter 95/10/31 15:17:14 (peter/633/peter) >> Modified: . log_accum.pl >> Log: >> For the moment, prefer the getpwuid($<) value over getlogin.. >> Remove debugging output again.. (which proved that getlogin returns the >> wrong value sometimes..) >getlogin depends on internal variable _logname_valid which is set >after first sucessful getlogin call, then getlogin simple return >its static data and even not issue syscall!!! >How perl calls C-functions, it is the question... >Maybe it call each C-function in the fork? I.e. _longname_valid >always 0 for getlogin? Then it is perl bug, it seems that >it change uids on the fly, then call getlogin for each of them. You can to localize perl miss with simple script like: #!/usr/bin/perl while(1) { print getlogin(); print " "; print ((getpwuid($<))[0]); print "\n"; } If it works right, try to reproduce sequence from CVS .pl exactly (in the infinite loop). -- Andrey A. Chernov : And I rest so composedly, /Now, in my bed, ache@astral.msk.su : That any beholder /Might fancy me dead - http://dt.demos.su/~ache : Might start at beholding me, /Thinking me dead. RELCOM Team,FreeBSD Team : E.A.Poe From "For Annie" 1849 From owner-freebsd-commit Tue Oct 31 16:23:05 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA05841 for freebsd-commit-outgoing; Tue, 31 Oct 1995 16:23:05 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA05824 for cvs-all-outgoing; Tue, 31 Oct 1995 16:22:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA05811 for cvs-etc-outgoing; Tue, 31 Oct 1995 16:22:55 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA05790 ; Tue, 31 Oct 1995 16:22:48 -0800 Date: Tue, 31 Oct 1995 16:22:48 -0800 From: "Andrey A. Chernov" Message-Id: <199511010022.QAA05790@freefall.freebsd.org> To: CVS-commiters, cvs-etc Subject: cvs commit: src/etc rc Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/10/31 16:22:47 Modified: etc rc Log: If accounting becomes enabled and /var/account/acct not exist, touch it, or accounting is never started (it must be pre-existen file). From owner-freebsd-commit Tue Oct 31 16:42:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA06870 for freebsd-commit-outgoing; Tue, 31 Oct 1995 16:42:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA06852 for cvs-all-outgoing; Tue, 31 Oct 1995 16:42:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA06842 for cvs-share-outgoing; Tue, 31 Oct 1995 16:42:27 -0800 Received: (from gpalmer@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA06831 ; Tue, 31 Oct 1995 16:42:19 -0800 Date: Tue, 31 Oct 1995 16:42:19 -0800 From: Gary Palmer Message-Id: <199511010042.QAA06831@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/doc/handbook firewalls.sgml Sender: owner-commit@FreeBSD.org Precedence: bulk gpalmer 95/10/31 16:42:19 Modified: share/doc/handbook firewalls.sgml Log: Minor changes. Note that the ICMP code will either send a host unreachable or port unreachable as appropriate. From owner-freebsd-commit Tue Oct 31 16:58:56 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA07205 for freebsd-commit-outgoing; Tue, 31 Oct 1995 16:58:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA07193 for cvs-all-outgoing; Tue, 31 Oct 1995 16:58:53 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA07183 for cvs-sys-outgoing; Tue, 31 Oct 1995 16:58:51 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA07173 ; Tue, 31 Oct 1995 16:58:45 -0800 Date: Tue, 31 Oct 1995 16:58:45 -0800 From: Peter Wemm Message-Id: <199511010058.QAA07173@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/net if_ppp.c ppp_tty.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/10/31 16:58:45 Modified: sys/net if_ppp.c ppp_tty.c Log: Re-Zap unused variables in their new location.. :-) From owner-freebsd-commit Tue Oct 31 19:15:56 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA12437 for freebsd-commit-outgoing; Tue, 31 Oct 1995 19:15:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA12421 for cvs-all-outgoing; Tue, 31 Oct 1995 19:15:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA12411 for cvs-share-outgoing; Tue, 31 Oct 1995 19:15:38 -0800 Received: (from jfieber@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA12395 ; Tue, 31 Oct 1995 19:15:19 -0800 Date: Tue, 31 Oct 1995 19:15:19 -0800 From: John Fieber Message-Id: <199511010315.TAA12395@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/doc/handbook firewalls.sgml Sender: owner-commit@FreeBSD.org Precedence: bulk jfieber 95/10/31 19:15:18 Branch: share/doc/handbook RELENG_2_1_0 Modified: share/doc/handbook firewalls.sgml Log: Sync with head. From owner-freebsd-commit Tue Oct 31 21:32:49 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA22048 for freebsd-commit-outgoing; Tue, 31 Oct 1995 21:32:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA22033 for cvs-all-outgoing; Tue, 31 Oct 1995 21:32:44 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA22023 for cvs-ports-outgoing; Tue, 31 Oct 1995 21:32:41 -0800 Received: (from asami@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA22010 ; Tue, 31 Oct 1995 21:32:35 -0800 Date: Tue, 31 Oct 1995 21:32:35 -0800 From: Satoshi Asami Message-Id: <199511010532.VAA22010@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/shells/pdksh/pkg PLIST Sender: owner-commit@FreeBSD.org Precedence: bulk asami 95/10/31 21:32:35 Modified: shells/pdksh/pkg PLIST Log: Don't add manpage to /etc/shells. ;> Reported by: obrien@cs.ucdavis.edu (David E. O'Brien) From owner-freebsd-commit Tue Oct 31 21:56:55 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA23238 for freebsd-commit-outgoing; Tue, 31 Oct 1995 21:56:55 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA23224 for cvs-all-outgoing; Tue, 31 Oct 1995 21:56:52 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA23214 for cvs-sys-outgoing; Tue, 31 Oct 1995 21:56:50 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id VAA23199 ; Tue, 31 Oct 1995 21:56:40 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id QAA17404; Wed, 1 Nov 1995 16:55:00 +1100 Date: Wed, 1 Nov 1995 16:55:00 +1100 From: Bruce Evans Message-Id: <199511010555.QAA17404@godzilla.zeta.org.au> To: davidg@Root.COM, peter@jhome.dialix.com Subject: Re: cvs commit: src/sys/kern tty_subr.c Cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Sender: owner-commit@FreeBSD.org Precedence: bulk >I used to have this problem occasionally with the specialix driver, and in >the end the interrupt routine had to do a lot of tests to attempt to >intuit whether or not he cblocks were currently reserved or not. The That's why I don't like silently ignoring the problem. Reporting it nastily should have been good for getting drivers fixed. si.c was relying on TS_CONNECTED but TS_CONNECTED isn't set quite right for it. TS_CONNECTED shouldn't be set in ttymodem() unless TS_ISOPEN is set. If you fix this, then change the recent fix to ttyopen() to set TS_CONNECTED if carrier is on as well as if CLOCAL is set. Bruce From owner-freebsd-commit Tue Oct 31 22:41:59 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA26046 for freebsd-commit-outgoing; Tue, 31 Oct 1995 22:41:59 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA26026 for cvs-all-outgoing; Tue, 31 Oct 1995 22:41:52 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA26015 for cvs-sys-outgoing; Tue, 31 Oct 1995 22:41:49 -0800 Received: from ibp.ibp.fr (ibp.ibp.fr [132.227.60.30]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id WAA26000 ; Tue, 31 Oct 1995 22:41:39 -0800 Received: from blaise.ibp.fr (blaise.ibp.fr [132.227.60.1]) by ibp.ibp.fr (8.6.12/jtpda-5.0) with ESMTP id HAA04974 ; Wed, 1 Nov 1995 07:41:33 +0100 Received: from (uucp@localhost) by blaise.ibp.fr (8.6.12/jtpda-5.0) with UUCP id HAA17872 ; Wed, 1 Nov 1995 07:41:33 +0100 Received: (from roberto@localhost) by keltia.freenix.fr (8.7.1/keltia-uucp-2.6) id XAA14359; Tue, 31 Oct 1995 23:56:49 +0100 (MET) From: Ollivier Robert Message-Id: <199510312256.XAA14359@keltia.freenix.fr> Subject: Re: cvs commit: src/sys/i386/isa isa.c To: peter@jhome.dialix.com (Peter Wemm) Date: Tue, 31 Oct 1995 23:56:48 +0100 (MET) Cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org In-Reply-To: from "Peter Wemm" at Nov 1, 95 05:56:58 am X-Operating-System: FreeBSD 2.2-CURRENT ctm#1275 X-Mailer: ELM [version 2.4 PL24 ME8b] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-commit@FreeBSD.org Precedence: bulk It seems that Peter Wemm said: > OK.. Anybody got any idea why "getlogin" is failing on the tail end of a > rsh? Maybe because from a fast look at rshd's code, it doesn't seem to update the utmp file (it does not call login/logout) ? -- Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.frmug.fr.net FreeBSD keltia.freenix.fr 2.2-CURRENT #5: Mon Oct 30 00:03:29 MET 1995 From owner-freebsd-commit Tue Oct 31 23:31:40 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA28709 for freebsd-commit-outgoing; Tue, 31 Oct 1995 23:31:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA28693 for cvs-all-outgoing; Tue, 31 Oct 1995 23:31:36 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA28680 for cvs-sys-outgoing; Tue, 31 Oct 1995 23:31:34 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id XAA28660 ; Tue, 31 Oct 1995 23:31:12 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id PAA01036; Wed, 1 Nov 1995 15:30:28 +0800 Date: Wed, 1 Nov 1995 15:30:28 +0800 (WST) From: Peter Wemm To: Ollivier Robert cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/i386/isa isa.c In-Reply-To: <199510312256.XAA14359@keltia.freenix.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Tue, 31 Oct 1995, Ollivier Robert wrote: > It seems that Peter Wemm said: > > OK.. Anybody got any idea why "getlogin" is failing on the tail end of a > > rsh? > > Maybe because from a fast look at rshd's code, it doesn't seem to update the > utmp file (it does not call login/logout) ? On SYSV system, getlogin() fetches data from the utmp file. Maybe older BSD systems did it too. Now, it's done by the kernel in a "secure" fashion with setlogin()/getlogin(). setlogin() stores the full name in the session strutures in the kernel, and I think once it's set it's not supposed to be able to be changed except by root.. it doesn't depend on the security of your utmp file anymore. It's used by a lot of things for authentication/accounting purposes. What bothers me, is how a non-setuid process suddenly got a new getlogin name. Maybe it's a perl bug (but it does little more than a strdup(getlogin()) - it'd be hard for that code to have a bug..), or a libc bug with the static buffer getting munched. However, I think the kernel has something to do with it because of another unrelated problem... If you log in as root and start XFree86 3.1.2 xdm and check the result of the 'logname' command and verify that the xdm has detached from your tty and session, the moment somebody logs in on the xdm login, the original (supposedly detached) session suddenly has it's getlogin() result changed.. I do not know if it's the same bug but it suggests to me that something fishy is going on. BTW: rshd does call setlogin(), and syslogs an error return if it fails. I've checked freefall's /var/log/messages and the warning is not there. -Peter > -- > Ollivier ROBERT -=- The daemon is FREE! -=- roberto@keltia.frmug.fr.net > FreeBSD keltia.freenix.fr 2.2-CURRENT #5: Mon Oct 30 00:03:29 MET 1995 > From owner-freebsd-commit Tue Oct 31 23:48:02 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA29328 for freebsd-commit-outgoing; Tue, 31 Oct 1995 23:48:02 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA29301 for cvs-all-outgoing; Tue, 31 Oct 1995 23:47:53 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA29285 for cvs-sys-outgoing; Tue, 31 Oct 1995 23:47:50 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id XAA29269 ; Tue, 31 Oct 1995 23:47:35 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id PAA01090; Wed, 1 Nov 1995 15:46:21 +0800 Date: Wed, 1 Nov 1995 15:46:21 +0800 (WST) From: Peter Wemm To: Bruce Evans cc: davidg@Root.COM, CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/kern tty_subr.c In-Reply-To: <199511010555.QAA17404@godzilla.zeta.org.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Wed, 1 Nov 1995, Bruce Evans wrote: > >I used to have this problem occasionally with the specialix driver, and in > >the end the interrupt routine had to do a lot of tests to attempt to > >intuit whether or not he cblocks were currently reserved or not. The > > That's why I don't like silently ignoring the problem. Reporting it > nastily should have been good for getting drivers fixed. si.c was > relying on TS_CONNECTED but TS_CONNECTED isn't set quite right for it. > TS_CONNECTED shouldn't be set in ttymodem() unless TS_ISOPEN is set. > If you fix this, then change the recent fix to ttyopen() to set > TS_CONNECTED if carrier is on as well as if CLOCAL is set. > > Bruce My main thoughts on the issue is that it doesn't _need_ to panic.. :-) The system can quite safely recover from it. Yes, a nasty message is a good idea, but bombing the kernel seems a little drastic. Cheers, -Peter From owner-freebsd-commit Wed Nov 1 00:06:14 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA00571 for freebsd-commit-outgoing; Wed, 1 Nov 1995 00:06:14 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA00554 for cvs-all-outgoing; Wed, 1 Nov 1995 00:06:10 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA00542 for cvs-usrbin-outgoing; Wed, 1 Nov 1995 00:06:08 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA00528 ; Wed, 1 Nov 1995 00:06:02 -0800 Date: Wed, 1 Nov 1995 00:06:02 -0800 From: "Andrey A. Chernov" Message-Id: <199511010806.AAA00528@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/ranlib build.c Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/01 00:06:02 Modified: usr.bin/ranlib build.c Log: Fix ranlib to work with odd-length extended names. Submitted by: Jim Leppek From owner-freebsd-commit Wed Nov 1 00:52:00 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA03540 for freebsd-commit-outgoing; Wed, 1 Nov 1995 00:52:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA03508 for cvs-all-outgoing; Wed, 1 Nov 1995 00:51:53 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA03496 for cvs-sys-outgoing; Wed, 1 Nov 1995 00:51:49 -0800 Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id AAA03477 ; Wed, 1 Nov 1995 00:51:25 -0800 Received: from sax.sax.de by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id JAA27722; Wed, 1 Nov 1995 09:51:13 +0100 Received: by sax.sax.de (8.6.11/8.6.12-s1) with UUCP id JAA03493; Wed, 1 Nov 1995 09:51:12 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.6.12/8.6.9) id JAA16876; Wed, 1 Nov 1995 09:50:03 +0100 From: J Wunsch Message-Id: <199511010850.JAA16876@uriah.heep.sax.de> Subject: Re: cvs commit: src/sys/i386/isa isa.c To: peter@jhome.dialix.com (Peter Wemm) Date: Wed, 1 Nov 1995 09:50:03 +0100 (MET) Cc: roberto@keltia.freenix.fr, CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: from "Peter Wemm" at Nov 1, 95 03:30:28 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 Content-Length: 655 Sender: owner-commit@FreeBSD.org Precedence: bulk As Peter Wemm wrote: > What bothers me, is how a non-setuid process suddenly got a new getlogin > name. Maybe it's a perl bug (but it does little more than a > strdup(getlogin()) - it'd be hard for that code to have a bug..), or a libc > bug with the static buffer getting munched. case O_GETLOGIN: #ifdef HAS_GETLOGIN if (!(tmps = getlogin())) goto say_undef; str_set(str,tmps); #else fatal("Unsupported function getlogin"); #endif break; -- 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-freebsd-commit Wed Nov 1 04:18:45 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA12870 for freebsd-commit-outgoing; Wed, 1 Nov 1995 04:18:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA12856 for cvs-all-outgoing; Wed, 1 Nov 1995 04:18:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA12846 for cvs-usrbin-outgoing; Wed, 1 Nov 1995 04:18:40 -0800 Received: (from adam@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA12836 ; Wed, 1 Nov 1995 04:18:34 -0800 Date: Wed, 1 Nov 1995 04:18:34 -0800 From: Adam David Message-Id: <199511011218.EAA12836@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/make var.c Sender: owner-commit@FreeBSD.org Precedence: bulk adam 95/11/01 04:18:33 Modified: usr.bin/make var.c Log: Fix the :S modifier to substitute in each word of the variable, according to the description in the manpage. g flag means "replace every occurence in each word", and its absence means "replace first occurence in each word". Previously, absence of the g flag was implemented to mean "replace first occurence found in all words, and then stop replacing", which was incorrect. From owner-freebsd-commit Wed Nov 1 05:38:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA15649 for freebsd-commit-outgoing; Wed, 1 Nov 1995 05:38:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA15637 for cvs-all-outgoing; Wed, 1 Nov 1995 05:38:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA15627 for cvs-user-outgoing; Wed, 1 Nov 1995 05:38:29 -0800 Received: (from markm@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA15613 ; Wed, 1 Nov 1995 05:38:23 -0800 Date: Wed, 1 Nov 1995 05:38:23 -0800 From: Mark Murray Message-Id: <199511011338.FAA15613@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/eBones Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk markm 95/11/01 05:38:23 Modified: eBones Makefile Log: Add the man directory to the SUBDIR list - some pages were bing lost. Thes pages will move for 2.2. Please put this in 2.1 From owner-freebsd-commit Wed Nov 1 07:03:31 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA17640 for freebsd-commit-outgoing; Wed, 1 Nov 1995 07:03:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA17625 for cvs-all-outgoing; Wed, 1 Nov 1995 07:03:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA17613 for cvs-sys-outgoing; Wed, 1 Nov 1995 07:03:14 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA17603 ; Wed, 1 Nov 1995 07:03:06 -0800 Date: Wed, 1 Nov 1995 07:03:06 -0800 From: Peter Wemm Message-Id: <199511011503.HAA17603@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/conf Makefile.i386 Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/01 07:03:05 Modified: sys/i386/conf Makefile.i386 Log: Add a DRIVER_S= definition that config wants to use for assembler source. This was copied from NORMAL_S.. From owner-freebsd-commit Wed Nov 1 08:00:17 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA19761 for freebsd-commit-outgoing; Wed, 1 Nov 1995 08:00:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA19748 for cvs-all-outgoing; Wed, 1 Nov 1995 08:00:14 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA19732 for cvs-sys-outgoing; Wed, 1 Nov 1995 08:00:11 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA19704 ; Wed, 1 Nov 1995 07:59:58 -0800 Date: Wed, 1 Nov 1995 07:59:58 -0800 From: Peter Wemm Message-Id: <199511011559.HAA19704@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern tty_subr.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/01 07:59:58 Modified: sys/kern tty_subr.c Log: Clean up the previous commit I did on this file. The Jury has not reached a verdict yet on this approach - a better fix may be thought of, but for now this works. From owner-freebsd-commit Wed Nov 1 08:40:37 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA21147 for freebsd-commit-outgoing; Wed, 1 Nov 1995 08:40:37 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA21130 for cvs-all-outgoing; Wed, 1 Nov 1995 08:40:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA21118 for cvs-share-outgoing; Wed, 1 Nov 1995 08:40:26 -0800 Received: (from jfieber@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA21101 ; Wed, 1 Nov 1995 08:40:17 -0800 Date: Wed, 1 Nov 1995 08:40:17 -0800 From: John Fieber Message-Id: <199511011640.IAA21101@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/doc/handbook dma.sgml Sender: owner-commit@FreeBSD.org Precedence: bulk jfieber 95/11/01 08:40:16 Branch: share/doc/handbook RELENG_2_1_0 Modified: share/doc/handbook dma.sgml Log: Changes submitted by the author. From owner-freebsd-commit Wed Nov 1 08:53:51 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA21766 for freebsd-commit-outgoing; Wed, 1 Nov 1995 08:53:51 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA21739 for cvs-all-outgoing; Wed, 1 Nov 1995 08:53:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA21727 for cvs-etc-outgoing; Wed, 1 Nov 1995 08:53:40 -0800 Received: (from nate@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA21718 ; Wed, 1 Nov 1995 08:53:30 -0800 Date: Wed, 1 Nov 1995 08:53:30 -0800 From: Nate Williams Message-Id: <199511011653.IAA21718@freefall.freebsd.org> To: CVS-commiters, cvs-etc Subject: cvs commit: src/etc rc Sender: owner-commit@FreeBSD.org Precedence: bulk nate 95/11/01 08:53:29 Modified: etc rc Log: Don't have ldconfig look in /usr/gnu/lib since it was removed before 2.0R. From owner-freebsd-commit Wed Nov 1 09:18:47 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA22585 for freebsd-commit-outgoing; Wed, 1 Nov 1995 09:18:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA22573 for cvs-all-outgoing; Wed, 1 Nov 1995 09:18:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA22561 for cvs-sys-outgoing; Wed, 1 Nov 1995 09:18:36 -0800 Received: (from wollman@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA22547 ; Wed, 1 Nov 1995 09:18:29 -0800 Date: Wed, 1 Nov 1995 09:18:29 -0800 From: "Garrett A. Wollman" Message-Id: <199511011718.JAA22547@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netinet in.h ip_input.c Sender: owner-commit@FreeBSD.org Precedence: bulk wollman 95/11/01 09:18:28 Modified: sys/netinet in.h ip_input.c Log: Instrument the IP input queue with two new read-only MIB entries: net.inet.ip.intr-queue-maxlen (=== ipintrq.ifq_maxlen) and net.inet.ip.intr-queue-drops (=== ipintrq.ifq_drops) There should probably be a standard way of getting the same information going the other way. From owner-freebsd-commit Wed Nov 1 19:28:00 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09201 for freebsd-commit-outgoing; Wed, 1 Nov 1995 19:28:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09187 for cvs-all-outgoing; Wed, 1 Nov 1995 19:27:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09177 for cvs-libexec-outgoing; Wed, 1 Nov 1995 19:27:53 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09163 ; Wed, 1 Nov 1995 19:27:43 -0800 Date: Wed, 1 Nov 1995 19:27:43 -0800 From: David Greenman Message-Id: <199511020327.TAA09163@freefall.freebsd.org> To: CVS-commiters, cvs-libexec Subject: cvs commit: src/libexec/telnetd sys_term.c Sender: owner-commit@FreeBSD.org Precedence: bulk root 95/11/01 19:27:42 Branch: libexec/telnetd RELENG_2_1_0 Modified: libexec/telnetd sys_term.c Log: Brought in revs 1.10-1.11: security patch. From owner-freebsd-commit Wed Nov 1 19:41:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09800 for freebsd-commit-outgoing; Wed, 1 Nov 1995 19:41:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09782 for cvs-all-outgoing; Wed, 1 Nov 1995 19:41:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09768 for cvs-user-outgoing; Wed, 1 Nov 1995 19:41:24 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id TAA09671 ; Wed, 1 Nov 1995 19:39:52 -0800 Date: Wed, 1 Nov 1995 19:39:52 -0800 From: David Greenman Message-Id: <199511020339.TAA09671@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/secure/libexec/telnetd sys_term.c Sender: owner-commit@FreeBSD.org Precedence: bulk root 95/11/01 19:39:51 Branch: secure/libexec/telnetd RELENG_2_1_0 Modified: secure/libexec/telnetd sys_term.c Log: Brought in revs 1.8-1.9: security fix. From owner-freebsd-commit Wed Nov 1 22:43:07 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA18037 for freebsd-commit-outgoing; Wed, 1 Nov 1995 22:43:07 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA18023 for cvs-all-outgoing; Wed, 1 Nov 1995 22:43:02 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA18012 for cvs-sys-outgoing; Wed, 1 Nov 1995 22:42:57 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA18001 ; Wed, 1 Nov 1995 22:42:49 -0800 Date: Wed, 1 Nov 1995 22:42:49 -0800 From: David Greenman Message-Id: <199511020642.WAA18001@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/vm swap_pager.c vm_fault.c Sender: owner-commit@FreeBSD.org Precedence: bulk root 95/11/01 22:42:48 Modified: sys/vm swap_pager.c vm_fault.c Log: Move page fixups (pmap_clear_modify, etc) that happen after paging input completes out of vm_fault and into the pagers. This get rid of some redundancy and improves the architecture. Reviewed by: John Dyson From owner-freebsd-commit Wed Nov 1 22:46:42 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA18197 for freebsd-commit-outgoing; Wed, 1 Nov 1995 22:46:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA18185 for cvs-all-outgoing; Wed, 1 Nov 1995 22:46:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA18174 for cvs-user-outgoing; Wed, 1 Nov 1995 22:46:36 -0800 Received: from grunt.grondar.za (grunt.grondar.za [196.7.18.129]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id WAA18158 ; Wed, 1 Nov 1995 22:46:14 -0800 Received: from grumble.grondar.za (grumble.grondar.za [196.7.18.130]) by grunt.grondar.za (8.6.12/8.6.9) with ESMTP id IAA03090; Thu, 2 Nov 1995 08:45:56 +0200 Received: from localhost (localhost [127.0.0.1]) by grumble.grondar.za (8.6.12/8.6.9) with SMTP id IAA14005; Thu, 2 Nov 1995 08:45:48 +0200 Message-Id: <199511020645.IAA14005@grumble.grondar.za> X-Authentication-Warning: grumble.grondar.za: Host localhost didn't use HELO protocol To: David Greenman cc: CVS-commiters@freefall.freebsd.org, cvs-user@freefall.freebsd.org Subject: Re: cvs commit: src/secure/libexec/telnetd sys_term.c Date: Thu, 02 Nov 1995 08:45:48 +0200 From: Mark Murray Sender: owner-commit@FreeBSD.org Precedence: bulk > root 95/11/01 19:39:51 > > Branch: secure/libexec/telnetd RELENG_2_1_0 > Modified: secure/libexec/telnetd sys_term.c > Log: > Brought in revs 1.8-1.9: security fix. Hi May I have a patch, please? M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grumble.grondar.za for PGP key From owner-freebsd-commit Wed Nov 1 23:33:41 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA19546 for freebsd-commit-outgoing; Wed, 1 Nov 1995 23:33:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA19534 for cvs-all-outgoing; Wed, 1 Nov 1995 23:33:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA19522 for cvs-CVSROOT-outgoing; Wed, 1 Nov 1995 23:33:35 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA19504 ; Wed, 1 Nov 1995 23:33:24 -0800 Date: Wed, 1 Nov 1995 23:33:24 -0800 From: Peter Wemm Message-Id: <199511020733.XAA19504@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT log_accum.pl Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/01 23:33:24 Modified: . log_accum.pl Log: Have another crack at getting the login name. Try `logname` - it seems that the mail process always gets it right and that's a subshell of the perl script log_accum.pl, so it's worth giving this a go. From owner-freebsd-commit Thu Nov 2 00:07:58 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA20905 for freebsd-commit-outgoing; Thu, 2 Nov 1995 00:07:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA20893 for cvs-all-outgoing; Thu, 2 Nov 1995 00:07:48 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA20882 for cvs-ports-outgoing; Thu, 2 Nov 1995 00:07:40 -0800 Received: (from asami@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA20872 ; Thu, 2 Nov 1995 00:07:32 -0800 Date: Thu, 2 Nov 1995 00:07:32 -0800 From: Satoshi Asami Message-Id: <199511020807.AAA20872@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/databases/gnats Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk asami 95/11/02 00:07:31 Modified: databases/gnats Makefile Log: Put BUILD_DEPENDS before other misc. variables. From owner-freebsd-commit Thu Nov 2 00:21:39 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21298 for freebsd-commit-outgoing; Thu, 2 Nov 1995 00:21:39 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21286 for cvs-all-outgoing; Thu, 2 Nov 1995 00:21:36 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21276 for cvs-ports-outgoing; Thu, 2 Nov 1995 00:21:33 -0800 Received: (from asami@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21267 ; Thu, 2 Nov 1995 00:21:28 -0800 Date: Thu, 2 Nov 1995 00:21:28 -0800 From: Satoshi Asami Message-Id: <199511020821.AAA21267@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/editors Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk asami 95/11/02 00:21:28 Modified: editors Makefile Log: Change ashe from NOBUILD to RESTRICTED, that's what we use elsewhere for things that require Motif (like Mosaic). Move ashe into alphabetically correct position. From owner-freebsd-commit Thu Nov 2 00:36:46 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21668 for freebsd-commit-outgoing; Thu, 2 Nov 1995 00:36:46 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21653 for cvs-all-outgoing; Thu, 2 Nov 1995 00:36:43 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21642 for cvs-ports-outgoing; Thu, 2 Nov 1995 00:36:40 -0800 Received: (from asami@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21633 ; Thu, 2 Nov 1995 00:36:34 -0800 Date: Thu, 2 Nov 1995 00:36:34 -0800 From: Satoshi Asami Message-Id: <199511020836.AAA21633@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/databases Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk asami 95/11/02 00:36:33 Modified: databases Makefile Log: Sort things alphabetically. From owner-freebsd-commit Thu Nov 2 00:37:40 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21743 for freebsd-commit-outgoing; Thu, 2 Nov 1995 00:37:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21731 for cvs-all-outgoing; Thu, 2 Nov 1995 00:37:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21721 for cvs-sys-outgoing; Thu, 2 Nov 1995 00:37:27 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA21712 ; Thu, 2 Nov 1995 00:37:25 -0800 Date: Thu, 2 Nov 1995 00:37:25 -0800 From: Peter Wemm Message-Id: <199511020837.AAA21712@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern tty_subr.c Sender: owner-commit@FreeBSD.org Precedence: bulk hsu 95/11/02 00:37:24 Modified: sys/kern tty_subr.c Log: Make putc and b_to_q deal with clists with no reserved blocks in a more civilised manner than panicing. This only happens as a result of another state botch somewhere else, eg: from a tty driver calling putc or b_to_q on a closed device. Apparently, it's also been implicated in a panic with a status (^T) event on ptys. This change should pretty well be in it's final form now. From owner-freebsd-commit Thu Nov 2 01:01:22 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA22511 for freebsd-commit-outgoing; Thu, 2 Nov 1995 01:01:22 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA22497 for cvs-all-outgoing; Thu, 2 Nov 1995 01:01:19 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA22485 for cvs-user-outgoing; Thu, 2 Nov 1995 01:01:14 -0800 Received: from sequent.kiae.su (sequent.kiae.su [144.206.136.6]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id BAA22471 ; Thu, 2 Nov 1995 01:01:00 -0800 Received: by sequent.kiae.su id AA17021 (5.65.kiae-2 ); Thu, 2 Nov 1995 12:00:28 +0300 Received: by sequent.KIAE.su (UUMAIL/2.0); Thu, 2 Nov 95 12:00:27 +0300 Received: (from ache@localhost) by ache.dialup.demos.ru (8.6.12/8.6.12) id LAA00278; Thu, 2 Nov 1995 11:24:50 +0300 To: David Greenman , Mark Murray Cc: CVS-commiters@freefall.freebsd.org, cvs-user@freefall.freebsd.org References: <199511020645.IAA14005@grumble.grondar.za> In-Reply-To: <199511020645.IAA14005@grumble.grondar.za>; from Mark Murray at Thu, 02 Nov 1995 08:45:48 +0200 Message-Id: Organization: Olahm Ha-Yetzirah Date: Thu, 2 Nov 1995 11:24:50 +0300 (MSK) X-Mailer: Mail/@ [v2.40 FreeBSD] From: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) X-Class: Fast Subject: Re: cvs commit: src/secure/libexec/telnetd sys_term.c Lines: 21 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Length: 626 Sender: owner-commit@FreeBSD.org Precedence: bulk In message <199511020645.IAA14005@grumble.grondar.za> Mark Murray writes: >> root 95/11/01 19:39:51 >> >> Branch: secure/libexec/telnetd RELENG_2_1_0 >> Modified: secure/libexec/telnetd sys_term.c >> Log: >> Brought in revs 1.8-1.9: security fix. >Hi >May I have a patch, please? You already have. -- Andrey A. Chernov : And I rest so composedly, /Now, in my bed, ache@astral.msk.su : That any beholder /Might fancy me dead - http://dt.demos.su/~ache : Might start at beholding me, /Thinking me dead. RELCOM Team,FreeBSD Team : E.A.Poe From "For Annie" 1849 From owner-freebsd-commit Thu Nov 2 01:30:42 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA23422 for freebsd-commit-outgoing; Thu, 2 Nov 1995 01:30:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA23409 for cvs-all-outgoing; Thu, 2 Nov 1995 01:30:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA23397 for cvs-CVSROOT-outgoing; Thu, 2 Nov 1995 01:30:34 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA23378 ; Thu, 2 Nov 1995 01:30:25 -0800 Date: Thu, 2 Nov 1995 01:30:25 -0800 From: Peter Wemm Message-Id: <199511020930.BAA23378@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT log_accum.pl Sender: owner-commit@FreeBSD.org Precedence: bulk swallace 95/11/02 01:30:23 Modified: . log_accum.pl Log: Take $ENV{'USER'} for the login name, as rshd, telnetd and rlogind all set it. I'm still at a loss to explain why getlogin and `logname` (which make a supposedly secure system call) are returning somebody else's username when cvs (a non privileged process) is run on the end of a rsh. If I do: rsh freefall 'print getlogin' it always seems to work... (If this doesn't work after this commit, I might commandeer Jeffrey Hsu's login.. :-) This commit may say 'hsu' though.) From owner-freebsd-commit Thu Nov 2 01:53:12 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA24309 for freebsd-commit-outgoing; Thu, 2 Nov 1995 01:53:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA24296 for cvs-all-outgoing; Thu, 2 Nov 1995 01:53:06 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA24286 for cvs-sys-outgoing; Thu, 2 Nov 1995 01:53:03 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA24252 ; Thu, 2 Nov 1995 01:52:45 -0800 Date: Thu, 2 Nov 1995 01:52:45 -0800 From: Peter Wemm Message-Id: <199511020952.BAA24252@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/i386 machdep.c Sender: owner-commit@FreeBSD.org Precedence: bulk pete 95/11/02 01:52:43 Modified: sys/i386/i386 machdep.c Log: When the sync-on-shutdown fails to clear all buffers, this bit of code can print them out. I have seen that MFS can leave BUSY buffers, preventing a clean reboot... From owner-freebsd-commit Thu Nov 2 02:03:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA24736 for freebsd-commit-outgoing; Thu, 2 Nov 1995 02:03:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA24724 for cvs-all-outgoing; Thu, 2 Nov 1995 02:03:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA24714 for cvs-CVSROOT-outgoing; Thu, 2 Nov 1995 02:03:25 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA24693 ; Thu, 2 Nov 1995 02:03:13 -0800 Date: Thu, 2 Nov 1995 02:03:13 -0800 From: Peter Wemm Message-Id: <199511021003.CAA24693@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT log_accum.pl Sender: owner-commit@FreeBSD.org Precedence: bulk pete 95/11/02 02:03:12 Modified: . log_accum.pl Log: Bang! Shoot me! I'll RTFM next time, I promise. I thought chop only took off newlines. :-O From owner-freebsd-commit Thu Nov 2 02:09:45 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA24911 for freebsd-commit-outgoing; Thu, 2 Nov 1995 02:09:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA24899 for cvs-all-outgoing; Thu, 2 Nov 1995 02:09:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA24889 for cvs-CVSROOT-outgoing; Thu, 2 Nov 1995 02:09:39 -0800 Received: (from hsu@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA24880 ; Thu, 2 Nov 1995 02:09:31 -0800 Date: Thu, 2 Nov 1995 02:09:31 -0800 From: Jeffrey Hsu Message-Id: <199511021009.CAA24880@freefall.freebsd.org> To: peter Subject: Re: cvs commit: CVSROOT log_accum.pl Cc: CVS-commiters, cvs-CVSROOT Sender: owner-commit@FreeBSD.org Precedence: bulk > From: Peter Wemm > Subject: cvs commit: CVSROOT log_accum.pl > > swallace 95/11/02 01:30:23 > > Modified: . log_accum.pl > Log: > Take $ENV{'USER'} for the login name, as rshd, telnetd and rlogind all > set it. I'm still at a loss to explain why getlogin and `logname` > (which make a supposedly secure system call) are returning somebody else's > username when cvs (a non privileged process) is run on the end of a rsh. > > (If this doesn't work after this commit, I might commandeer Jeffrey Hsu's > login.. :-) This commit may say 'hsu' though.) I laughed so hard I had tears in my eye. From owner-freebsd-commit Thu Nov 2 02:18:29 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA25236 for freebsd-commit-outgoing; Thu, 2 Nov 1995 02:18:29 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA25220 for cvs-all-outgoing; Thu, 2 Nov 1995 02:18:25 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA25206 for cvs-ports-outgoing; Thu, 2 Nov 1995 02:18:20 -0800 Received: from thud.FreeBSD.org (thud.FreeBSD.ORG [192.216.222.13]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id CAA25194 ; Thu, 2 Nov 1995 02:18:12 -0800 Received: (from adam@localhost) by thud.FreeBSD.org (8.6.12/8.6.12) id CAA21552; Thu, 2 Nov 1995 02:17:18 -0800 Date: Thu, 2 Nov 1995 02:17:18 -0800 From: Adam David Message-Id: <199511021017.CAA21552@thud.FreeBSD.org> To: CVS-commiters@thud.FreeBSD.org, cvs-ports@thud.FreeBSD.org Subject: cvs commit: ports/net/dgd Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk adam 95/11/02 02:17:17 Modified: net/dgd Makefile Log: Emergency fix to fake-install workaround. This will all go away later when I implement fake-install generically. Needed by: asami From owner-freebsd-commit Thu Nov 2 02:48:36 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA25747 for freebsd-commit-outgoing; Thu, 2 Nov 1995 02:48:36 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA25735 for cvs-all-outgoing; Thu, 2 Nov 1995 02:48:32 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA25725 for cvs-user-outgoing; Thu, 2 Nov 1995 02:48:30 -0800 Received: from grunt.grondar.za (grunt.grondar.za [196.7.18.129]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id CAA25695 ; Thu, 2 Nov 1995 02:44:56 -0800 Received: from grumble.grondar.za (grumble.grondar.za [196.7.18.130]) by grunt.grondar.za (8.6.12/8.6.9) with ESMTP id MAA00356; Thu, 2 Nov 1995 12:44:27 +0200 Received: from localhost (localhost [127.0.0.1]) by grumble.grondar.za (8.6.12/8.6.9) with SMTP id MAA00359; Thu, 2 Nov 1995 12:44:22 +0200 Message-Id: <199511021044.MAA00359@grumble.grondar.za> X-Authentication-Warning: grumble.grondar.za: Host localhost didn't use HELO protocol To: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) cc: David Greenman , Mark Murray , CVS-commiters@freefall.freebsd.org, cvs-user@freefall.freebsd.org Subject: Re: cvs commit: src/secure/libexec/telnetd sys_term.c Date: Thu, 02 Nov 1995 12:44:22 +0200 From: Mark Murray Sender: owner-commit@FreeBSD.org Precedence: bulk > In message <199511020645.IAA14005@grumble.grondar.za> Mark Murray > writes: > > >> root 95/11/01 19:39:51 > >> > >> Branch: secure/libexec/telnetd RELENG_2_1_0 > >> Modified: secure/libexec/telnetd sys_term.c > >> Log: > >> Brought in revs 1.8-1.9: security fix. > > >Hi > > >May I have a patch, please? > > You already have. Just checking - is is that very short, almost one liner that has to do with L* environment variables? M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grumble.grondar.za for PGP key From owner-freebsd-commit Thu Nov 2 04:01:15 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28044 for freebsd-commit-outgoing; Thu, 2 Nov 1995 04:01:15 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28031 for cvs-all-outgoing; Thu, 2 Nov 1995 04:01:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28020 for cvs-user-outgoing; Thu, 2 Nov 1995 04:01:10 -0800 Received: from sequent.kiae.su (sequent.kiae.su [144.206.136.6]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id EAA28001 ; Thu, 2 Nov 1995 04:00:59 -0800 Received: by sequent.kiae.su id AA03767 (5.65.kiae-2 ); Thu, 2 Nov 1995 14:47:32 +0300 Received: by sequent.KIAE.su (UUMAIL/2.0); Thu, 2 Nov 95 14:47:32 +0300 Received: (from ache@localhost) by ache.dialup.demos.ru (8.6.12/8.6.12) id OAA01525; Thu, 2 Nov 1995 14:09:33 +0300 To: Mark Murray Cc: CVS-commiters@freefall.freebsd.org, cvs-user@freefall.freebsd.org, David Greenman References: <199511021044.MAA00359@grumble.grondar.za> In-Reply-To: <199511021044.MAA00359@grumble.grondar.za>; from Mark Murray at Thu, 02 Nov 1995 12:44:22 +0200 Message-Id: Organization: Olahm Ha-Yetzirah Date: Thu, 2 Nov 1995 14:09:33 +0300 (MSK) X-Mailer: Mail/@ [v2.40 FreeBSD] From: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) X-Class: Fast Subject: Re: cvs commit: src/secure/libexec/telnetd sys_term.c Lines: 29 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Length: 935 Sender: owner-commit@FreeBSD.org Precedence: bulk In message <199511021044.MAA00359@grumble.grondar.za> Mark Murray writes: >> In message <199511020645.IAA14005@grumble.grondar.za> Mark Murray >> writes: >> >> >> root 95/11/01 19:39:51 >> >> >> >> Branch: secure/libexec/telnetd RELENG_2_1_0 >> >> Modified: secure/libexec/telnetd sys_term.c >> >> Log: >> >> Brought in revs 1.8-1.9: security fix. >> >> >Hi >> >> >May I have a patch, please? >> >> You already have. >Just checking - is is that very short, almost one liner that has to do >with L* environment variables? 1.8 is new function, 1.9 is one line change, I already mail this stuff to you. -- Andrey A. Chernov : And I rest so composedly, /Now, in my bed, ache@astral.msk.su : That any beholder /Might fancy me dead - http://dt.demos.su/~ache : Might start at beholding me, /Thinking me dead. RELCOM Team,FreeBSD Team : E.A.Poe From "For Annie" 1849 From owner-freebsd-commit Thu Nov 2 04:26:12 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28698 for freebsd-commit-outgoing; Thu, 2 Nov 1995 04:26:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28685 for cvs-all-outgoing; Thu, 2 Nov 1995 04:26:08 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28675 for cvs-user-outgoing; Thu, 2 Nov 1995 04:26:06 -0800 Received: from grunt.grondar.za (grunt.grondar.za [196.7.18.129]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id EAA28669 ; Thu, 2 Nov 1995 04:25:48 -0800 Received: from grumble.grondar.za (grumble.grondar.za [196.7.18.130]) by grunt.grondar.za (8.6.12/8.6.9) with ESMTP id OAA00466; Thu, 2 Nov 1995 14:25:19 +0200 Received: from localhost (localhost [127.0.0.1]) by grumble.grondar.za (8.6.12/8.6.9) with SMTP id OAA00891; Thu, 2 Nov 1995 14:25:19 +0200 Message-Id: <199511021225.OAA00891@grumble.grondar.za> X-Authentication-Warning: grumble.grondar.za: Host localhost didn't use HELO protocol To: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) cc: Mark Murray , CVS-commiters@freefall.freebsd.org, cvs-user@freefall.freebsd.org, David Greenman Subject: Re: cvs commit: src/secure/libexec/telnetd sys_term.c Date: Thu, 02 Nov 1995 14:25:19 +0200 From: Mark Murray Sender: owner-commit@FreeBSD.org Precedence: bulk > 1.8 is new function, 1.9 is one line change, I already mail this stuff to you Aha! So its both. I needed to know that. Will do it later. M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grumble.grondar.za for PGP key From owner-freebsd-commit Thu Nov 2 04:36:58 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28958 for freebsd-commit-outgoing; Thu, 2 Nov 1995 04:36:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28945 for cvs-all-outgoing; Thu, 2 Nov 1995 04:36:55 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28935 for cvs-CVSROOT-outgoing; Thu, 2 Nov 1995 04:36:53 -0800 Received: (from asami@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA28915 ; Thu, 2 Nov 1995 04:36:48 -0800 Date: Thu, 2 Nov 1995 04:36:48 -0800 From: Satoshi Asami Message-Id: <199511021236.EAA28915@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT avail Sender: owner-commit@FreeBSD.org Precedence: bulk asami 95/11/02 04:36:47 Modified: . avail Log: Take out adam. (Repeated offense.) From owner-freebsd-commit Thu Nov 2 04:42:52 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29160 for freebsd-commit-outgoing; Thu, 2 Nov 1995 04:42:52 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29147 for cvs-all-outgoing; Thu, 2 Nov 1995 04:42:50 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29136 for cvs-lib-outgoing; Thu, 2 Nov 1995 04:42:47 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29127 ; Thu, 2 Nov 1995 04:42:44 -0800 Date: Thu, 2 Nov 1995 04:42:44 -0800 From: "Andrey A. Chernov" Message-Id: <199511021242.EAA29127@freefall.freebsd.org> To: CVS-commiters, cvs-lib Subject: cvs commit: src/lib/csu/i386 Makefile crt0.c Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/02 04:42:43 Modified: lib/csu/i386 Makefile crt0.c Log: Remove my locale hack. Sigh. From owner-freebsd-commit Thu Nov 2 04:46:32 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29283 for freebsd-commit-outgoing; Thu, 2 Nov 1995 04:46:32 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29271 for cvs-all-outgoing; Thu, 2 Nov 1995 04:46:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29261 for cvs-etc-outgoing; Thu, 2 Nov 1995 04:46:25 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29252 ; Thu, 2 Nov 1995 04:46:21 -0800 Date: Thu, 2 Nov 1995 04:46:21 -0800 From: "Andrey A. Chernov" Message-Id: <199511021246.EAA29252@freefall.freebsd.org> To: CVS-commiters, cvs-etc Subject: cvs commit: src/etc csh.login profile Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/02 04:46:21 Modified: etc csh.login profile Log: Remove startup_locale reference From owner-freebsd-commit Thu Nov 2 04:53:37 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29505 for freebsd-commit-outgoing; Thu, 2 Nov 1995 04:53:37 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29490 for cvs-all-outgoing; Thu, 2 Nov 1995 04:53:32 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29480 for cvs-share-outgoing; Thu, 2 Nov 1995 04:53:31 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA29471 ; Thu, 2 Nov 1995 04:53:27 -0800 Date: Thu, 2 Nov 1995 04:53:27 -0800 From: "Andrey A. Chernov" Message-Id: <199511021253.EAA29471@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/man/man7 environ.7 Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/02 04:53:27 Modified: share/man/man7 environ.7 Log: Remove startup_locale reference. Add LANG variable description. From owner-freebsd-commit Thu Nov 2 06:31:47 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA01580 for freebsd-commit-outgoing; Thu, 2 Nov 1995 06:31:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA01561 for cvs-all-outgoing; Thu, 2 Nov 1995 06:31:41 -0800 Received: from ki1.chemie.fu-berlin.de (ki1.Chemie.FU-Berlin.DE [160.45.24.21]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id GAA01553 for ; Thu, 2 Nov 1995 06:31:26 -0800 Received: by ki1.chemie.fu-berlin.de (Smail3.1.28.1) from julia.physik.fu-berlin.de (130.133.3.235) with smtp id ; Thu, 2 Nov 95 15:31 MET Received: (from graichen@localhost) by julia.physik.fu-berlin.de (8.6.11/8.6.9) id PAA05864; Thu, 2 Nov 1995 15:30:43 +0100 From: Thomas Graichen Message-Id: <199511021430.PAA05864@julia.physik.fu-berlin.de> Subject: Re: cvs commit: src/etc rc To: ache@freefall.freebsd.org (Andrey A. Chernov), cvs-all@freebsd.org Date: Thu, 2 Nov 1995 15:30:43 +0100 (MET) In-Reply-To: <199511010022.QAA05790@freefall.freebsd.org> from "Andrey A. Chernov" at Oct 31, 95 04:22:48 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Content-Length: 547 Sender: owner-commit@freebsd.org Precedence: bulk > > ache 95/10/31 16:22:47 > > Modified: etc rc > Log: > If accounting becomes enabled and /var/account/acct > not exist, touch it, or accounting is never started > (it must be pre-existen file). > haven't looked into current yet - but for 2.0.5 (and i think current too) the same would be good for syslogd and /var/log/messages /var/log/lpd-errs /var/log/maillog and /var/cron/log - if they doesn't exist syslogd complains and would not create them (the files are the ones from the /etc/syslog.conf) just'n idea - t From owner-freebsd-commit Thu Nov 2 10:49:01 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11353 for freebsd-commit-outgoing; Thu, 2 Nov 1995 10:49:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11313 for cvs-all-outgoing; Thu, 2 Nov 1995 10:48:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11292 for cvs-gnu-outgoing; Thu, 2 Nov 1995 10:48:39 -0800 Received: (from nate@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11239 ; Thu, 2 Nov 1995 10:48:20 -0800 Date: Thu, 2 Nov 1995 10:48:20 -0800 From: Nate Williams Message-Id: <199511021848.KAA11239@freefall.freebsd.org> To: CVS-commiters, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/ld/rtld rtld.c Sender: owner-commit@FreeBSD.org Precedence: bulk nate 95/11/02 10:48:17 Modified: gnu/usr.bin/ld/i386 md-static-funcs.c gnu/usr.bin/ld/rtld rtld.c Log: Changed the terminology for what used to be called the "memorizing" vector. Now it is called the "symbol caching" vector. This was made possible and unconfusing by other changes that allowed me to localize everything having to do with the caching vector in the function reloc_map(). Switched to alloca() for allocating the caching vector, and eliminated the special mmap-based allocation routines. Although this was motivated by performance reasons, it led to significant simplification of the code, and made it possible to confine the symbol caching code to the single function reloc_map(). Got rid of the unnecessary and inefficient division loop at the beginning of rtld(). Reduced the number of calls to getenv("LD_LIBRARY_PATH") to just 1, on suggestion from . Added breaks out of the relocation loops when the relocation address is found to be 0. A relocation address of 0 is caused by an unused relocation entry. Unused relocation entries are caused by linking a shared object with the "-Bsymbolic" switch. The runtime linker itself is linked that way, and the last 40% of its relocation entries are unused. Thus, breaking out of the loop on the first such entry is a performance win when ld.so relocates itself. As a side benefit, it permits removing a test from md_relocate_simple() in ../i386/md-static-funcs.c. Unused relocation entries in other shared objects (linked with "-Bsymbolic") caused even bigger problems in previous versions of the runtime linker. The runtime linker interpreted the unused entries as if they were valid. That caused it to perform repeated relocations of the first byte of the shared object. In order to do that, it had to remap the text segment writable. Breaking out of the loop on the first unused relocation entry solves that. Submitted by: John Polstra From owner-freebsd-commit Thu Nov 2 10:49:06 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11378 for freebsd-commit-outgoing; Thu, 2 Nov 1995 10:49:06 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11350 for cvs-all-outgoing; Thu, 2 Nov 1995 10:49:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA11321 for cvs-CVSROOT-outgoing; Thu, 2 Nov 1995 10:48:50 -0800 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id KAA11277 ; Thu, 2 Nov 1995 10:48:37 -0800 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id KAA11796; Thu, 2 Nov 1995 10:48:31 -0800 To: Peter Wemm cc: CVS-commiters@freefall.freebsd.org, cvs-CVSROOT@freefall.freebsd.org Subject: Re: cvs commit: CVSROOT log_accum.pl In-reply-to: Your message of "Thu, 02 Nov 1995 01:30:25 PST." <199511020930.BAA23378@freefall.freebsd.org> Date: Thu, 02 Nov 1995 10:48:31 -0800 Message-ID: <11794.815338111@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-commit@FreeBSD.org Precedence: bulk > swallace 95/11/02 01:30:23 > > Modified: . log_accum.pl > Log: > Take $ENV{'USER'} for the login name, as rshd, telnetd and rlogind all > set it. I'm still at a loss to explain why getlogin and `logname` > (which make a supposedly secure system call) are returning somebody else's > username when cvs (a non privileged process) is run on the end of a rsh. > If I do: rsh freefall 'print getlogin' it always seems to work... > > (If this doesn't work after this commit, I might commandeer Jeffrey Hsu's > login.. :-) This commit may say 'hsu' though.) Nope, now you're Steven Wallace! Peter Wemm, man of a thousand identities! :-) Jordan From owner-freebsd-commit Thu Nov 2 11:46:20 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA13045 for freebsd-commit-outgoing; Thu, 2 Nov 1995 11:46:20 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA13033 for cvs-all-outgoing; Thu, 2 Nov 1995 11:46:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA13023 for cvs-CVSROOT-outgoing; Thu, 2 Nov 1995 11:46:15 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA13016 ; Thu, 2 Nov 1995 11:45:28 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id DAA06601; Fri, 3 Nov 1995 03:44:32 +0800 Date: Fri, 3 Nov 1995 03:44:31 +0800 (WST) From: Peter Wemm To: "Jordan K. Hubbard" cc: CVS-commiters@freefall.freebsd.org, cvs-CVSROOT@freefall.freebsd.org Subject: Re: cvs commit: CVSROOT log_accum.pl In-Reply-To: <11794.815338111@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Thu, 2 Nov 1995, Jordan K. Hubbard wrote: > > swallace 95/11/02 01:30:23 > > > > Modified: . log_accum.pl > > Log: > > Take $ENV{'USER'} for the login name, as rshd, telnetd and rlogind all > > set it. I'm still at a loss to explain why getlogin and `logname` > > (which make a supposedly secure system call) are returning somebody else's > > username when cvs (a non privileged process) is run on the end of a rsh. > > If I do: rsh freefall 'print getlogin' it always seems to work... > > > > (If this doesn't work after this commit, I might commandeer Jeffrey Hsu's > > login.. :-) This commit may say 'hsu' though.) > > Nope, now you're Steven Wallace! Peter Wemm, man of a thousand identities! :-) > > Jordan Damn.. I can never keep up these days. First Peter Wemm, then Jeffery Hsu, then I became Dave Tweten, back to Jeffrey Hsu, and now Steven! No wonder I'm having so much trouble.. Jordan :-) :-) :-) (well, at least we've found the problem and can fix it in inetd and the kernel) From owner-freebsd-commit Thu Nov 2 11:57:35 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA13338 for freebsd-commit-outgoing; Thu, 2 Nov 1995 11:57:35 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA13321 for cvs-all-outgoing; Thu, 2 Nov 1995 11:57:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA13311 for cvs-CVSROOT-outgoing; Thu, 2 Nov 1995 11:57:26 -0800 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA13305 ; Thu, 2 Nov 1995 11:57:21 -0800 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id LAA12158; Thu, 2 Nov 1995 11:57:15 -0800 To: Satoshi Asami cc: CVS-commiters@freefall.freebsd.org, cvs-CVSROOT@freefall.freebsd.org Subject: Re: cvs commit: CVSROOT avail In-reply-to: Your message of "Thu, 02 Nov 1995 04:36:48 PST." <199511021236.EAA28915@freefall.freebsd.org> Date: Thu, 02 Nov 1995 11:57:15 -0800 Message-ID: <12155.815342235@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-commit@FreeBSD.org Precedence: bulk > asami 95/11/02 04:36:47 > > Modified: . avail > Log: > Take out adam. (Repeated offense.) I propose that the individual formerly known as Satoshi be henceforth referred to as "the gunslinger." :-) From owner-freebsd-commit Thu Nov 2 12:35:05 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA14427 for freebsd-commit-outgoing; Thu, 2 Nov 1995 12:35:05 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA14413 for cvs-all-outgoing; Thu, 2 Nov 1995 12:35:02 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA14399 for cvs-CVSROOT-outgoing; Thu, 2 Nov 1995 12:34:59 -0800 Received: from grunt.grondar.za (grunt.grondar.za [196.7.18.129]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id MAA14381 ; Thu, 2 Nov 1995 12:34:24 -0800 Received: from grumble.grondar.za (grumble.grondar.za [196.7.18.130]) by grunt.grondar.za (8.6.12/8.6.9) with ESMTP id WAA00939; Thu, 2 Nov 1995 22:31:03 +0200 Received: from localhost (localhost [127.0.0.1]) by grumble.grondar.za (8.6.12/8.6.9) with SMTP id WAA02554; Thu, 2 Nov 1995 22:30:51 +0200 Message-Id: <199511022030.WAA02554@grumble.grondar.za> X-Authentication-Warning: grumble.grondar.za: Host localhost didn't use HELO protocol To: "Jordan K. Hubbard" cc: Satoshi Asami , CVS-commiters@freefall.freebsd.org, cvs-CVSROOT@freefall.freebsd.org Subject: Re: cvs commit: CVSROOT avail Date: Thu, 02 Nov 1995 22:30:51 +0200 From: Mark Murray Sender: owner-commit@FreeBSD.org Precedence: bulk > > asami 95/11/02 04:36:47 > > > > Modified: . avail > > Log: > > Take out adam. (Repeated offense.) > > I propose that the individual formerly known as Satoshi be henceforth > referred to as "the gunslinger." "Two Gun Sam" ROTFL M -- Mark Murray 46 Harvey Rd, Claremont, Cape Town 7700, South Africa +27 21 61-3768 GMT+0200 Finger mark@grumble.grondar.za for PGP key From owner-freebsd-commit Thu Nov 2 18:56:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA05719 for freebsd-commit-outgoing; Thu, 2 Nov 1995 18:56:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA05701 for cvs-all-outgoing; Thu, 2 Nov 1995 18:56:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA05691 for cvs-usrsbin-outgoing; Thu, 2 Nov 1995 18:56:25 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA05540 ; Thu, 2 Nov 1995 18:55:00 -0800 Date: Thu, 2 Nov 1995 18:55:00 -0800 From: "Jordan K. Hubbard" Message-Id: <199511030255.SAA05540@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pkg_install/add main.c perform.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/02 18:54:59 Branch: usr.sbin/pkg_install/add RELENG_2_1_0 Modified: usr.sbin/pkg_install/add main.c perform.c Log: These patches fix two problems : 1 ) Tar was being called to process the archive after chdir()ing into the playpen, but the pathname given to it was uncorrected for the chdir(). This is corrected by converting _all_ pathname arguments using realpath() (fileFindByPath() is used as a last-ditch attempt if the argument can't be found) 2 ) min_free was being called on the saved invocation directory, not on the playpen at one point. (There are currently two seperate space checks, one when the playpen is created, and one later. This is harmless cruft) Submitted by: Michael Smith From owner-freebsd-commit Thu Nov 2 22:22:21 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA21469 for freebsd-commit-outgoing; Thu, 2 Nov 1995 22:22:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA21442 for cvs-all-outgoing; Thu, 2 Nov 1995 22:22:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA21424 for cvs-user-outgoing; Thu, 2 Nov 1995 22:22:07 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA21372 ; Thu, 2 Nov 1995 22:21:50 -0800 Date: Thu, 2 Nov 1995 22:21:50 -0800 From: "Jordan K. Hubbard" Message-Id: <199511030621.WAA21372@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release MIRROR.SITES Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/02 22:21:49 Branch: release RELENG_2_1_0 Modified: release MIRROR.SITES Log: Update Hensa site to point to new location. Submitted by: "N.G.Smith" From owner-freebsd-commit Thu Nov 2 23:54:18 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27054 for freebsd-commit-outgoing; Thu, 2 Nov 1995 23:54:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27033 for cvs-all-outgoing; Thu, 2 Nov 1995 23:54:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27021 for cvs-sys-outgoing; Thu, 2 Nov 1995 23:54:09 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27010 ; Thu, 2 Nov 1995 23:54:01 -0800 Date: Thu, 2 Nov 1995 23:54:01 -0800 From: David Greenman Message-Id: <199511030754.XAA27010@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netinet tcp_usrreq.c Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/11/02 23:54:00 Branch: sys/netinet RELENG_2_1_0 Modified: sys/netinet tcp_usrreq.c Log: Brought in fix from rev 1.17: start 2MSL timer for FIN_WAIT_2. From owner-freebsd-commit Thu Nov 2 23:59:28 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27258 for freebsd-commit-outgoing; Thu, 2 Nov 1995 23:59:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27246 for cvs-all-outgoing; Thu, 2 Nov 1995 23:59:24 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27234 for cvs-sys-outgoing; Thu, 2 Nov 1995 23:59:23 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA27224 ; Thu, 2 Nov 1995 23:59:20 -0800 Date: Thu, 2 Nov 1995 23:59:20 -0800 From: David Greenman Message-Id: <199511030759.XAA27224@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/net route.c Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/11/02 23:59:20 Branch: sys/net RELENG_2_1_0 Modified: sys/net route.c Log: Brought in fix from rev 1.26: autodelete a cloned route if it gets in the way of adding a new route. Reviewed by: wollman From owner-freebsd-commit Fri Nov 3 00:01:17 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27409 for freebsd-commit-outgoing; Fri, 3 Nov 1995 00:01:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27397 for cvs-all-outgoing; Fri, 3 Nov 1995 00:01:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27387 for cvs-sys-outgoing; Fri, 3 Nov 1995 00:01:11 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27378 ; Fri, 3 Nov 1995 00:01:07 -0800 Date: Fri, 3 Nov 1995 00:01:07 -0800 From: David Greenman Message-Id: <199511030801.AAA27378@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern tty.c Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/11/03 00:01:07 Branch: sys/kern RELENG_2_1_0 Modified: sys/kern tty.c Log: Brought in fix from rev 1.71: initialize TS_CONNECTED and line discipline properly. Reviewed by: bde From owner-freebsd-commit Fri Nov 3 00:05:20 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27635 for freebsd-commit-outgoing; Fri, 3 Nov 1995 00:05:20 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27619 for cvs-all-outgoing; Fri, 3 Nov 1995 00:05:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27605 for cvs-sys-outgoing; Fri, 3 Nov 1995 00:05:14 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27596 ; Fri, 3 Nov 1995 00:05:08 -0800 Date: Fri, 3 Nov 1995 00:05:08 -0800 From: David Greenman Message-Id: <199511030805.AAA27596@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern tty_subr.c Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/11/03 00:05:07 Branch: sys/kern RELENG_2_1_0 Modified: sys/kern tty_subr.c Log: Brought in revs 1.15-1.17: lessen severity of no pre-allocated cblocks for a tty to a printf rather than a panic. Reviewed by: bde, peter From owner-freebsd-commit Fri Nov 3 00:07:31 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27790 for freebsd-commit-outgoing; Fri, 3 Nov 1995 00:07:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27775 for cvs-all-outgoing; Fri, 3 Nov 1995 00:07:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27765 for cvs-sys-outgoing; Fri, 3 Nov 1995 00:07:26 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA27754 ; Fri, 3 Nov 1995 00:07:22 -0800 Date: Fri, 3 Nov 1995 00:07:22 -0800 From: David Greenman Message-Id: <199511030807.AAA27754@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa pcibus.c Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/11/03 00:07:21 Branch: sys/i386/isa RELENG_2_1_0 Modified: sys/i386/isa pcibus.c Log: Add a special case check to allow Acer PCI chipsets to work with FreeBSD. Submitted by: se From owner-freebsd-commit Fri Nov 3 00:43:02 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA28774 for freebsd-commit-outgoing; Fri, 3 Nov 1995 00:43:02 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA28760 for cvs-all-outgoing; Fri, 3 Nov 1995 00:42:55 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA28744 for cvs-sys-outgoing; Fri, 3 Nov 1995 00:42:32 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA28730 ; Fri, 3 Nov 1995 00:42:23 -0800 Date: Fri, 3 Nov 1995 00:42:23 -0800 From: Peter Wemm Message-Id: <199511030842.AAA28730@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/net if_ppp.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 00:42:23 Modified: sys/net if_ppp.c Log: Fix the incomplete merge for the IPX code - the internals are different. Note, the IPX in pppd support is not really there. I suspect that it may work if you ifconfig it up manually. From owner-freebsd-commit Fri Nov 3 00:57:33 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA29281 for freebsd-commit-outgoing; Fri, 3 Nov 1995 00:57:33 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA29266 for cvs-all-outgoing; Fri, 3 Nov 1995 00:57:29 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA29251 for cvs-share-outgoing; Fri, 3 Nov 1995 00:57:26 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA29239 ; Fri, 3 Nov 1995 00:57:21 -0800 Date: Fri, 3 Nov 1995 00:57:21 -0800 From: David Greenman Message-Id: <199511030857.AAA29239@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/man/man4/man4.i386 Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/11/03 00:57:20 Branch: share/man/man4/man4.i386 RELENG_2_1_0 Modified: share/man/man4/man4.i386 Makefile Log: Brought in changes from rev 1.33: add missing manual pages. From owner-freebsd-commit Fri Nov 3 00:59:11 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA29403 for freebsd-commit-outgoing; Fri, 3 Nov 1995 00:59:11 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA29391 for cvs-all-outgoing; Fri, 3 Nov 1995 00:59:09 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA29381 for cvs-lib-outgoing; Fri, 3 Nov 1995 00:59:07 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA29372 ; Fri, 3 Nov 1995 00:59:03 -0800 Date: Fri, 3 Nov 1995 00:59:03 -0800 From: "Andrey A. Chernov" Message-Id: <199511030859.AAA29372@freefall.freebsd.org> To: CVS-commiters, cvs-lib Subject: cvs commit: src/lib/libc/locale runetype.c setrunelocale.c tolower.c toupper.c Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/03 00:59:02 Modified: lib/libc/locale runetype.c setrunelocale.c tolower.c toupper.c Log: Move more stuff out to XPG4 Handle negative chars inside runetype/tolower/toupper From owner-freebsd-commit Fri Nov 3 01:03:19 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA29691 for freebsd-commit-outgoing; Fri, 3 Nov 1995 01:03:19 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA29679 for cvs-all-outgoing; Fri, 3 Nov 1995 01:03:16 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA29669 for cvs-lib-outgoing; Fri, 3 Nov 1995 01:03:14 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA29651 ; Fri, 3 Nov 1995 01:03:03 -0800 Date: Fri, 3 Nov 1995 01:03:03 -0800 From: "Andrey A. Chernov" Message-Id: <199511030903.BAA29651@freefall.freebsd.org> To: CVS-commiters, cvs-lib Subject: cvs commit: src/lib/libxpg4 Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/03 01:03:02 Modified: lib/libxpg4 Makefile Log: Add more stuff moved out from XPG3 From owner-freebsd-commit Fri Nov 3 01:30:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA01162 for freebsd-commit-outgoing; Fri, 3 Nov 1995 01:30:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA01146 for cvs-all-outgoing; Fri, 3 Nov 1995 01:30:29 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA01136 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 01:30:27 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA01125 ; Fri, 3 Nov 1995 01:30:16 -0800 Date: Fri, 3 Nov 1995 01:30:16 -0800 From: Peter Wemm Message-Id: <199511030930.BAA01125@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/inetd inetd.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 01:30:15 Modified: usr.sbin/inetd inetd.c Log: Workaround for the setlogin()-in-same-session-as-inetd bug. This causes: 1: inetd to clear it's getlogin() name at startup (in case the sysadmin logged in and su'ed to root and restarted inetd) 2: inetd to start each spawned process in it's own session. 3: inetd to call setlogin() on non-root processes (eg: uucp for uucico) 4: log failures more extensively This means that root spawned processes from inetd remain responsible for setting their login name if they change their uid. (eg: rshd, login, etc). If they do not do so, it is safer for them to have no "login name" than a wrong one (like "root") because the getlogin() system call is documented as "secure" on 4.4BSD. inetd when started from /etc/rc would have no login name anyway, so this isn't really a change - it's making it consistant with the bootup state... The setsid() change *may* cause something to break that is doing a setsid() itself and checking the result - it will fail now because it's already been done. The consensis seems to be that this is unlikely. David G. thinks this is acceptable as it is cleaner from an architectural point of view. From owner-freebsd-commit Fri Nov 3 01:58:20 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA02900 for freebsd-commit-outgoing; Fri, 3 Nov 1995 01:58:20 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA02887 for cvs-all-outgoing; Fri, 3 Nov 1995 01:58:15 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA02875 for cvs-CVSROOT-outgoing; Fri, 3 Nov 1995 01:58:13 -0800 Received: from tfs.com (tfs.com [140.145.250.1]) by freefall.freebsd.org (8.6.12/8.6.6) with SMTP id BAA02843 ; Fri, 3 Nov 1995 01:57:59 -0800 Received: from critter.tfs.com by tfs.com (smail3.1.28.1) with SMTP id m0tBIso-0003wlC; Fri, 3 Nov 95 01:57 PST Received: from localhost (localhost [127.0.0.1]) by critter.tfs.com (8.6.11/8.6.9) with SMTP id KAA01926; Fri, 3 Nov 1995 10:57:56 +0100 X-Authentication-Warning: critter.tfs.com: Host localhost didn't use HELO protocol To: "Jordan K. Hubbard" cc: Satoshi Asami , CVS-commiters@freefall.freebsd.org, cvs-CVSROOT@freefall.freebsd.org Subject: Re: cvs commit: CVSROOT avail In-reply-to: Your message of "Thu, 02 Nov 1995 11:57:15 PST." <12155.815342235@time.cdrom.com> Date: Fri, 03 Nov 1995 10:57:55 +0100 Message-ID: <1924.815392675@critter.tfs.com> From: Poul-Henning Kamp Sender: owner-commit@FreeBSD.org Precedence: bulk > > asami 95/11/02 04:36:47 > > > > Modified: . avail > > Log: > > Take out adam. (Repeated offense.) > > I propose that the individual formerly known as Satoshi be henceforth > referred to as "the gunslinger." > > :-) Jordan ? Jordaan ? Joordaaan ? are you there ? Hello ? Hmm, strange... -- 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-freebsd-commit Fri Nov 3 03:13:49 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA05765 for freebsd-commit-outgoing; Fri, 3 Nov 1995 03:13:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA05746 for cvs-all-outgoing; Fri, 3 Nov 1995 03:13:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA05735 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 03:13:43 -0800 Received: from Root.COM (implode.Root.COM [198.145.90.17]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id DAA05719 ; Fri, 3 Nov 1995 03:13:31 -0800 Received: from corbin.Root.COM (corbin [198.145.90.50]) by Root.COM (8.6.12/8.6.5) with ESMTP id DAA04060; Fri, 3 Nov 1995 03:12:55 -0800 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.12/8.6.5) with SMTP id DAA00303; Fri, 3 Nov 1995 03:12:25 -0800 Message-Id: <199511031112.DAA00303@corbin.Root.COM> To: Peter Wemm cc: CVS-commiters@freefall.freebsd.org, cvs-usrsbin@freefall.freebsd.org Subject: Re: cvs commit: src/usr.sbin/inetd inetd.c In-reply-to: Your message of "Fri, 03 Nov 95 01:30:16 PST." <199511030930.BAA01125@freefall.freebsd.org> From: David Greenman Reply-To: davidg@Root.COM Date: Fri, 03 Nov 1995 03:12:25 -0800 Sender: owner-commit@FreeBSD.org Precedence: bulk >peter 95/11/03 01:30:15 > > Modified: usr.sbin/inetd inetd.c > Log: > Workaround for the setlogin()-in-same-session-as-inetd bug. > > This causes: > 1: inetd to clear it's getlogin() name at startup (in case the sysadmin > logged in and su'ed to root and restarted inetd) > 2: inetd to start each spawned process in it's own session. > 3: inetd to call setlogin() on non-root processes (eg: uucp for uucico) > 4: log failures more extensively > > This means that root spawned processes from inetd remain responsible for > setting their login name if they change their uid. (eg: rshd, login, etc). > > If they do not do so, it is safer for them to have no "login name" than a > wrong one (like "root") because the getlogin() system call is documented > as "secure" on 4.4BSD. inetd when started from /etc/rc would have no login > name anyway, so this isn't really a change - it's making it consistant with > the bootup state... > > The setsid() change *may* cause something to break that is doing a setsid() > itself and checking the result - it will fail now because it's already been > done. The consensis seems to be that this is unlikely. David G. thinks > this is acceptable as it is cleaner from an architectural point of view. Heh..trying to blame ME for it, huh? :-) I'll also point out that both Mike Karels and Kirk McKusick reviewed this change. -DG From owner-freebsd-commit Fri Nov 3 04:03:31 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA08220 for freebsd-commit-outgoing; Fri, 3 Nov 1995 04:03:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA08204 for cvs-all-outgoing; Fri, 3 Nov 1995 04:03:26 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA08193 for cvs-user-outgoing; Fri, 3 Nov 1995 04:03:24 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA08170 ; Fri, 3 Nov 1995 04:03:17 -0800 Date: Fri, 3 Nov 1995 04:03:17 -0800 From: "Jordan K. Hubbard" Message-Id: <199511031203.EAA08170@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall/help relnotes.hlp Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/03 04:03:15 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall Makefile apache.c cdrom.c config.c decode.c devices.c ftp_strat.c install.c installFinal.c installPreconfig.c installUpgrade.c label.c menus.c options.c sysinstall.h Added: release/sysinstall lndir.c Log: Lots-o-cleanup(tm): 1. Fix the bogon I introduced that made some root filesystems fail to be made with `unable to make filesystem on sd1s1a' or some such error message. 2. Latest installment in the never-ending chapter on making FTP do the right thing on a cruel internet. 3. Make `express install' a truly express install and split off what it used to do into a `novice install' that's even more geared to the novice by asking questions in order, rather than forcing them through the menu interface. 4. Make anonymous FTP setup truly DTRT. 5. Build lndir directly into sysinstall and make the novice install offer to set up the ports tree. Also make the ports setup truly explanatory about what it's doing, and always link the ports destination to /usr/ports if necessary so that bsd.port.mk doesn't need to be tweaked. Branch: release/sysinstall/help RELENG_2_1_0 Modified: release/sysinstall/help relnotes.hlp Log: Small tweaks. From owner-freebsd-commit Fri Nov 3 04:10:28 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA08597 for freebsd-commit-outgoing; Fri, 3 Nov 1995 04:10:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA08583 for cvs-all-outgoing; Fri, 3 Nov 1995 04:10:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA08573 for cvs-user-outgoing; Fri, 3 Nov 1995 04:10:20 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA08555 ; Fri, 3 Nov 1995 04:10:16 -0800 Date: Fri, 3 Nov 1995 04:10:16 -0800 From: "Jordan K. Hubbard" Message-Id: <199511031210.EAA08555@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall/help install.hlp Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/03 04:10:15 Branch: release/sysinstall/help RELENG_2_1_0 Modified: release/sysinstall/help install.hlp Log: Document the Novice install From owner-freebsd-commit Fri Nov 3 04:25:27 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA09261 for freebsd-commit-outgoing; Fri, 3 Nov 1995 04:25:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA09241 for cvs-all-outgoing; Fri, 3 Nov 1995 04:25:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA09231 for cvs-include-outgoing; Fri, 3 Nov 1995 04:25:21 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA09218 ; Fri, 3 Nov 1995 04:25:15 -0800 Date: Fri, 3 Nov 1995 04:25:15 -0800 From: "Andrey A. Chernov" Message-Id: <199511031225.EAA09218@freefall.freebsd.org> To: CVS-commiters, cvs-include Subject: cvs commit: src/include ctype.h Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/03 04:25:15 Modified: include ctype.h Log: Fix isspecial/isphonogram, they was swapped Remove EOF hack, now it is recognized per ANSI/POSIX Add upper bounds check Handle all negative chars inside locale functions From owner-freebsd-commit Fri Nov 3 06:39:27 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13417 for freebsd-commit-outgoing; Fri, 3 Nov 1995 06:39:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13405 for cvs-all-outgoing; Fri, 3 Nov 1995 06:39:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13395 for cvs-usrbin-outgoing; Fri, 3 Nov 1995 06:39:19 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13386 ; Fri, 3 Nov 1995 06:39:12 -0800 Date: Fri, 3 Nov 1995 06:39:12 -0800 From: "Andrey A. Chernov" Message-Id: <199511031439.GAA13386@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/mklocale/data Makefile ja_JP.EUC.src lt_LN.ASCII.src lt_LN.ISO_8859-1.src ru_SU.CP866.src ru_SU.KOI8-R.src ja_JP.EUC lt_LN.ASCII lt_LN.ISO_8859-1 ru_SU.CP866 ru_SU.KOI8-R Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/03 06:39:11 Modified: usr.bin/mklocale Makefile Added: usr.bin/mklocale/data Makefile ja_JP.EUC.src lt_LN.ASCII.src lt_LN.ISO_8859-1.src ru_SU.CP866.src ru_SU.KOI8-R.src Removed: usr.bin/mklocale/data ja_JP.EUC lt_LN.ASCII lt_LN.ISO_8859-1 ru_SU.CP866 ru_SU.KOI8-R Log: Cleanup make process per Bruce suggestions From owner-freebsd-commit Fri Nov 3 06:52:00 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13574 for freebsd-commit-outgoing; Fri, 3 Nov 1995 06:52:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13559 for cvs-all-outgoing; Fri, 3 Nov 1995 06:51:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13549 for cvs-usrbin-outgoing; Fri, 3 Nov 1995 06:51:52 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13539 ; Fri, 3 Nov 1995 06:51:47 -0800 Date: Fri, 3 Nov 1995 06:51:47 -0800 From: "Andrey A. Chernov" Message-Id: <199511031451.GAA13539@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/mklocale/data Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/03 06:51:47 Modified: usr.bin/mklocale/data Makefile Log: Add $id$ and ${COPY} From owner-freebsd-commit Fri Nov 3 06:54:09 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13723 for freebsd-commit-outgoing; Fri, 3 Nov 1995 06:54:09 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13710 for cvs-all-outgoing; Fri, 3 Nov 1995 06:54:04 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13700 for cvs-usrbin-outgoing; Fri, 3 Nov 1995 06:54:00 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA13691 ; Fri, 3 Nov 1995 06:53:55 -0800 Date: Fri, 3 Nov 1995 06:53:55 -0800 From: "Andrey A. Chernov" Message-Id: <199511031453.GAA13691@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/colldef/data Makefile lt_LN.ISO_8859-1.src ru_SU.CP866.src ru_SU.KOI8-R.src lt_LN.ISO_8859-1 ru_SU.CP866 ru_SU.KOI8-R Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/03 06:53:54 Modified: usr.bin/colldef Makefile Added: usr.bin/colldef/data Makefile lt_LN.ISO_8859-1.src ru_SU.CP866.src ru_SU.KOI8-R.src Removed: usr.bin/colldef/data lt_LN.ISO_8859-1 ru_SU.CP866 ru_SU.KOI8-R Log: Cleanup make process per Bruce suggestions From owner-freebsd-commit Fri Nov 3 07:06:36 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA13990 for freebsd-commit-outgoing; Fri, 3 Nov 1995 07:06:36 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA13976 for cvs-all-outgoing; Fri, 3 Nov 1995 07:06:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA13966 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 07:06:24 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA13952 ; Fri, 3 Nov 1995 07:06:06 -0800 Date: Fri, 3 Nov 1995 07:06:06 -0800 From: Peter Wemm Message-Id: <199511031506.HAA13952@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/quot - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 07:06:05 Branch: usr.sbin/quot 1.1.1 Log: Import NetBSD's quot command, filling the gap in our sources (We only have the man page...) Obtained from: NetBSD; Wolfgang Solfrank / TooLs GmbH. Status: Vendor Tag: NETBSD Release Tags: cur_951014 N src/usr.sbin/quot/Makefile U src/usr.sbin/quot/quot.8 N src/usr.sbin/quot/quot.c No conflicts created by this import From owner-freebsd-commit Fri Nov 3 07:08:27 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA14096 for freebsd-commit-outgoing; Fri, 3 Nov 1995 07:08:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA14084 for cvs-all-outgoing; Fri, 3 Nov 1995 07:08:21 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA14074 for cvs-share-outgoing; Fri, 3 Nov 1995 07:08:18 -0800 Received: (from ache@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA14063 ; Fri, 3 Nov 1995 07:08:12 -0800 Date: Fri, 3 Nov 1995 07:08:12 -0800 From: "Andrey A. Chernov" Message-Id: <199511031508.HAA14063@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/timedef/data Makefile ru_SU.CP866.src ru_SU.KOI8-R.src ru_SU.KOI8-R Sender: owner-commit@FreeBSD.org Precedence: bulk ache 95/11/03 07:08:11 Modified: share/timedef Makefile Added: share/timedef/data Makefile ru_SU.CP866.src ru_SU.KOI8-R.src Removed: share/timedef/data ru_SU.KOI8-R Log: Cleanup make process per Bruce suggestions Add ru_SU.CP866 time locale From owner-freebsd-commit Fri Nov 3 07:21:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA14519 for freebsd-commit-outgoing; Fri, 3 Nov 1995 07:21:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA14499 for cvs-all-outgoing; Fri, 3 Nov 1995 07:21:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA14477 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 07:21:22 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA14452 ; Fri, 3 Nov 1995 07:21:07 -0800 Date: Fri, 3 Nov 1995 07:21:07 -0800 From: Peter Wemm Message-Id: <199511031521.HAA14452@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/quot Makefile quot.8 quot.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 07:21:06 Modified: usr.sbin/quot Makefile quot.8 quot.c Log: Minor tweaks to get quot to compile on FreeBSD.. Basically back-port the dynamic fsname strings back to static constants. From owner-freebsd-commit Fri Nov 3 08:08:01 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA16168 for freebsd-commit-outgoing; Fri, 3 Nov 1995 08:08:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA16152 for cvs-all-outgoing; Fri, 3 Nov 1995 08:07:43 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA16141 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 08:07:40 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id IAA16133 ; Fri, 3 Nov 1995 08:07:22 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id DAA13003; Sat, 4 Nov 1995 03:05:56 +1100 Date: Sat, 4 Nov 1995 03:05:56 +1100 From: Bruce Evans Message-Id: <199511031605.DAA13003@godzilla.zeta.org.au> To: CVS-commiters@freefall.freebsd.org, cvs-usrsbin@freefall.freebsd.org, peter@freefall.freebsd.org Subject: Re: cvs commit: src/usr.sbin/quot Makefile quot.8 quot.c Sender: owner-commit@FreeBSD.org Precedence: bulk > Modified: usr.sbin/quot Makefile quot.8 quot.c > Log: > Minor tweaks to get quot to compile on FreeBSD.. > Basically back-port the dynamic fsname strings back to static constants. This reminds me that our getvfsbyname() is inconsistent with 4.4lite2's. To get the 4.4lite2 `find' to work I had to port it like this: *** function.c~ Thu May 4 19:56:54 1995 --- function.c Thu Sep 28 00:18:06 1995 *************** *** 398,401 **** --- 400,404 ---- register PLAN *new; struct vfsconf vfc; + struct vfsconf *vfsp; ftsoptions &= ~FTS_NOSTAT; *************** *** 406,412 **** * Check first for a filesystem name. */ ! if (getvfsbyname(arg, &vfc) == 0) { new->flags = F_MTTYPE; ! new->mt_data = vfc.vfc_typenum; return (new); } --- 409,417 ---- * Check first for a filesystem name. */ ! vfsp = getvfsbyname(arg); ! if (vfsp != NULL) { ! vfc = *vfsp; new->flags = F_MTTYPE; ! new->mt_data = vfc.vfc_index; return (new); } (our find doesn't support most of the fstypes). The 4.4lite2 interface is better because it allows returning an error code. Bruce From owner-freebsd-commit Fri Nov 3 08:18:42 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA16541 for freebsd-commit-outgoing; Fri, 3 Nov 1995 08:18:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA16529 for cvs-all-outgoing; Fri, 3 Nov 1995 08:18:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA16512 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 08:18:35 -0800 Received: from jhome.DIALix.COM (jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id IAA16496 ; Fri, 3 Nov 1995 08:18:14 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id AAA01587; Sat, 4 Nov 1995 00:17:29 +0800 Date: Sat, 4 Nov 1995 00:17:24 +0800 (WST) From: Peter Wemm To: CVS-commiters@freefall.freebsd.org, cvs-usrsbin@freefall.freebsd.org Subject: Re: cvs commit: src/usr.sbin/quot - Imported sources In-Reply-To: <199511031506.HAA13952@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Fri, 3 Nov 1995, Peter Wemm wrote: > peter 95/11/03 07:06:05 > > Branch: usr.sbin/quot 1.1.1 > Log: > Import NetBSD's quot command, filling the gap in our sources > (We only have the man page...) > > Obtained from: NetBSD; Wolfgang Solfrank / TooLs GmbH. I'm also planning on pulling in their fsdb as well (John Kohl's one). I presume there will be no objections, since we have nothing else we can do if fsck can't fix something other than newfs at the moment - but yell anyway if you dont think this is a good idea. No, it doesn't have a libdialog GUI on it.. ;-) -Peter From owner-freebsd-commit Fri Nov 3 09:06:33 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA18552 for freebsd-commit-outgoing; Fri, 3 Nov 1995 09:06:33 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA18535 for cvs-all-outgoing; Fri, 3 Nov 1995 09:06:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA18516 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 09:06:15 -0800 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id JAA18509 ; Fri, 3 Nov 1995 09:05:44 -0800 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id BAA02135; Sat, 4 Nov 1995 01:05:31 +0800 Date: Sat, 4 Nov 1995 01:05:30 +0800 (WST) From: Peter Wemm To: CVS-commiters@freefall.freebsd.org, cvs-usrsbin@freefall.freebsd.org Subject: Re: cvs commit: src/usr.sbin/quot quot.c In-Reply-To: <199511031704.JAA18435@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-commit@FreeBSD.org Precedence: bulk On Fri, 3 Nov 1995, Peter Wemm wrote: > peter 95/11/03 09:04:07 > > Modified: usr.sbin/quot quot.c > Log: > No need to go back quite _that_ far to the MOUNT_UFS constant when we have > a perfectly good getvfsbyname("ufs").. :-) > > Pointed out by: wollman and bde BTW: why is it "ufs" and not "ffs"? Cheers, -Peter From owner-freebsd-commit Fri Nov 3 10:27:44 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA21791 for freebsd-commit-outgoing; Fri, 3 Nov 1995 10:27:44 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA21779 for cvs-all-outgoing; Fri, 3 Nov 1995 10:27:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA21766 for cvs-usrbin-outgoing; Fri, 3 Nov 1995 10:27:30 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA21756 ; Fri, 3 Nov 1995 10:27:19 -0800 Date: Fri, 3 Nov 1995 10:27:19 -0800 From: Peter Wemm Message-Id: <199511031827.KAA21756@freefall.freebsd.org> To: CVS-commiters, cvs-usrbin Subject: cvs commit: src/usr.bin/symorder symorder.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 10:27:19 Modified: usr.bin/symorder symorder.c Log: Repair the detection of undefined symbols that my last "quick fix" commit broke. It's much easier to debug the symbol export lists in lkm makefiles if you know what your errors are during the build process. :-) Bleah.. symorder.c is *horrible*. :-( From owner-freebsd-commit Fri Nov 3 10:34:01 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA22138 for freebsd-commit-outgoing; Fri, 3 Nov 1995 10:34:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA22122 for cvs-all-outgoing; Fri, 3 Nov 1995 10:33:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA22112 for cvs-sys-outgoing; Fri, 3 Nov 1995 10:33:52 -0800 Received: (from wollman@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA22102 ; Fri, 3 Nov 1995 10:33:48 -0800 Date: Fri, 3 Nov 1995 10:33:48 -0800 From: "Garrett A. Wollman" Message-Id: <199511031833.KAA22102@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern uipc_socket.c uipc_socket2.c Sender: owner-commit@FreeBSD.org Precedence: bulk wollman 95/11/03 10:33:47 Modified: sys/sys sysctl.h Log: Make somaxconn (maximum backlog in a listen(2) request) and sb_max (maximum size of a socket buffer) tunable. Modified: sys/kern uipc_socket.c uipc_socket2.c Log: Make somaxconn (maximum backlog in a listen(2) request) and sb_max (maximum size of a socket buffer) tunable. Permit callers of listen(2) to specify a negative backlog, which is translated into somaxconn. Previously, a negative backlog was silently translated into 0. From owner-freebsd-commit Fri Nov 3 10:34:50 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA22231 for freebsd-commit-outgoing; Fri, 3 Nov 1995 10:34:50 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA22216 for cvs-all-outgoing; Fri, 3 Nov 1995 10:34:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA22205 for cvs-lib-outgoing; Fri, 3 Nov 1995 10:34:44 -0800 Received: (from wollman@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA22194 ; Fri, 3 Nov 1995 10:34:39 -0800 Date: Fri, 3 Nov 1995 10:34:39 -0800 From: "Garrett A. Wollman" Message-Id: <199511031834.KAA22194@freefall.freebsd.org> To: CVS-commiters, cvs-lib Subject: cvs commit: src/lib/libc/sys getsockopt.2 listen.2 Sender: owner-commit@FreeBSD.org Precedence: bulk wollman 95/11/03 10:34:39 Modified: lib/libc/sys getsockopt.2 listen.2 Log: Document recent changes in socket buffers and listen(2). From owner-freebsd-commit Fri Nov 3 10:50:27 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA23081 for freebsd-commit-outgoing; Fri, 3 Nov 1995 10:50:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA23069 for cvs-all-outgoing; Fri, 3 Nov 1995 10:50:24 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA23057 for cvs-bin-outgoing; Fri, 3 Nov 1995 10:50:21 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA23038 ; Fri, 3 Nov 1995 10:50:16 -0800 Date: Fri, 3 Nov 1995 10:50:16 -0800 From: Peter Wemm Message-Id: <199511031850.KAA23038@freefall.freebsd.org> To: cvs-bin, CVS-commiters Subject: cvs commit: src/bin/sh input.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 10:50:15 Modified: bin/sh input.c Log: Implement allowing 'set -v' in the middle of a script to work. This means that a script containing: echo 1 set -v echo 2 will now produce output, like it does on SYSV machines and other 'proper' /bin/sh implementations.. This is done by a slight restructure of the input processor allowing it to read chunks from the file at a time, but process the data by line from the chunk. Obtained from: Christos Zoulas for NetBSD. From owner-freebsd-commit Fri Nov 3 11:07:05 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA23905 for freebsd-commit-outgoing; Fri, 3 Nov 1995 11:07:05 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA23891 for cvs-all-outgoing; Fri, 3 Nov 1995 11:06:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA23875 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 11:06:54 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA23861 ; Fri, 3 Nov 1995 11:06:47 -0800 Date: Fri, 3 Nov 1995 11:06:47 -0800 From: Peter Wemm Message-Id: <199511031906.LAA23861@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pppd ipcp.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 11:06:46 Modified: usr.sbin/pppd ipcp.c Log: AARGH!! by default, pppd would no longer allow users to use "proxyarp" or "defaultroute"... That's forgivable I guess, but the silly thing didn't have any way to _enable_ the options either! :-( This now enables them by default. Obtained from: ppp-2.3a0 From owner-freebsd-commit Fri Nov 3 12:32:12 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA28460 for freebsd-commit-outgoing; Fri, 3 Nov 1995 12:32:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA28434 for cvs-all-outgoing; Fri, 3 Nov 1995 12:32:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA28422 for cvs-CVSROOT-outgoing; Fri, 3 Nov 1995 12:31:58 -0800 Received: (from erich@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA28393 ; Fri, 3 Nov 1995 12:31:46 -0800 Date: Fri, 3 Nov 1995 12:31:46 -0800 From: "Eric L. Hernes" Message-Id: <199511032031.MAA28393@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT modules Sender: owner-commit@FreeBSD.org Precedence: bulk erich 95/11/03 12:31:43 Modified: . modules Log: linux_lib --> ports/emulators/linux_lib From owner-freebsd-commit Fri Nov 3 12:33:53 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA28649 for freebsd-commit-outgoing; Fri, 3 Nov 1995 12:33:53 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA28615 for cvs-all-outgoing; Fri, 3 Nov 1995 12:33:43 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA28601 for cvs-ports-outgoing; Fri, 3 Nov 1995 12:33:40 -0800 Received: (from erich@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA28583 ; Fri, 3 Nov 1995 12:33:36 -0800 Date: Fri, 3 Nov 1995 12:33:36 -0800 From: "Eric L. Hernes" Message-Id: <199511032033.MAA28583@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/emulators/linux_lib - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk erich 95/11/03 12:33:35 Branch: emulators/linux_lib 1.1.1 Log: imported port for linux-libraries This is part of the linux-compatibility setup Obtained from: an old slackware dist Approved by: asami (I hope ;-) ) Status: Vendor Tag: ERICH Release Tags: linux_lib_1_0 N ports/emulators/linux_lib/Makefile N ports/emulators/linux_lib/files/md5 N ports/emulators/linux_lib/pkg/PLIST N ports/emulators/linux_lib/pkg/COMMENT N ports/emulators/linux_lib/pkg/DESCR N ports/emulators/linux_lib/patches/patch-aa No conflicts created by this import From owner-freebsd-commit Fri Nov 3 12:47:39 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA29841 for freebsd-commit-outgoing; Fri, 3 Nov 1995 12:47:39 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA29825 for cvs-all-outgoing; Fri, 3 Nov 1995 12:47:36 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA29811 for cvs-ports-outgoing; Fri, 3 Nov 1995 12:47:32 -0800 Received: from forgery.CS.Berkeley.EDU (forgery.CS.Berkeley.EDU [128.32.33.75]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id MAA29798 ; Fri, 3 Nov 1995 12:47:22 -0800 Received: (from asami@localhost) by forgery.CS.Berkeley.EDU (8.6.11/8.6.9) id MAA22949; Fri, 3 Nov 1995 12:47:21 -0800 Date: Fri, 3 Nov 1995 12:47:21 -0800 Message-Id: <199511032047.MAA22949@forgery.CS.Berkeley.EDU> To: erich@freefall.freebsd.org CC: CVS-commiters@freefall.freebsd.org, cvs-ports@freefall.freebsd.org In-reply-to: <199511032033.MAA28583@freefall.freebsd.org> (erich@freefall.freebsd.org) Subject: Re: cvs commit: ports/emulators/linux_lib - Imported sources From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-commit@FreeBSD.org Precedence: bulk * Approved by: asami (I hope ;-) ) Yes, yes! Should I make a package? The Gunslinger From owner-freebsd-commit Fri Nov 3 14:08:36 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA07668 for freebsd-commit-outgoing; Fri, 3 Nov 1995 14:08:36 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA07643 for cvs-all-outgoing; Fri, 3 Nov 1995 14:08:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA07627 for cvs-sys-outgoing; Fri, 3 Nov 1995 14:08:25 -0800 Received: (from olah@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA07588 ; Fri, 3 Nov 1995 14:08:15 -0800 Date: Fri, 3 Nov 1995 14:08:15 -0800 From: Andras Olah Message-Id: <199511032208.OAA07588@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netinet tcp_output.c tcp_usrreq.c tcp_var.h Sender: owner-commit@FreeBSD.org Precedence: bulk olah 95/11/03 14:08:14 Modified: sys/netinet tcp_output.c tcp_usrreq.c tcp_var.h Log: Fix a logical error in T/TCP: when we actively open a connection, we have to decide whether to send a CC or CCnew option in our SYN segment depending on the contents of our TAO cache. This decision has to be made once when the connection starts. The earlier code delayed this decision until the segment was assembled in tcp_output() and retransmitted SYN segments could have different CC options. Reviewed by: Richard Stevens, davidg, wollman From owner-freebsd-commit Fri Nov 3 14:20:06 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA09136 for freebsd-commit-outgoing; Fri, 3 Nov 1995 14:20:06 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA09120 for cvs-all-outgoing; Fri, 3 Nov 1995 14:20:03 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA09099 for cvs-sys-outgoing; Fri, 3 Nov 1995 14:19:59 -0800 Received: (from olah@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA09081 ; Fri, 3 Nov 1995 14:19:52 -0800 Date: Fri, 3 Nov 1995 14:19:52 -0800 From: Andras Olah Message-Id: <199511032219.OAA09081@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netinet tcp_timer.c Sender: owner-commit@FreeBSD.org Precedence: bulk olah 95/11/03 14:19:52 Modified: sys/netinet tcp_timer.c Log: Setting the TF_ACKNOW flag was redundant in the REXMT timeout because tcp_output() checks for the condition snd_nxt == snd_una. Reviewed by: davidg, wollman, olah Suggested by: Richard Stevens From owner-freebsd-commit Fri Nov 3 14:29:38 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA10601 for freebsd-commit-outgoing; Fri, 3 Nov 1995 14:29:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA10564 for cvs-all-outgoing; Fri, 3 Nov 1995 14:29:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA10544 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 14:29:28 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA10499 ; Fri, 3 Nov 1995 14:29:14 -0800 Date: Fri, 3 Nov 1995 14:29:14 -0800 From: Peter Wemm Message-Id: <199511032229.OAA10499@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/fsdb - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 14:29:13 Branch: usr.sbin/fsdb 1.1.1 Log: Import NetBSD's fsdb program. I believe this was written by John Kohl. Obtained from: NetBSD Status: Vendor Tag: NETBSD Release Tags: cur_951014 N src/usr.sbin/fsdb/Makefile N src/usr.sbin/fsdb/fsdb.8 N src/usr.sbin/fsdb/fsdb.c N src/usr.sbin/fsdb/fsdb.h N src/usr.sbin/fsdb/fsdbutil.c No conflicts created by this import From owner-freebsd-commit Fri Nov 3 14:31:18 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA10965 for freebsd-commit-outgoing; Fri, 3 Nov 1995 14:31:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA10937 for cvs-all-outgoing; Fri, 3 Nov 1995 14:31:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA10920 for cvs-CVSROOT-outgoing; Fri, 3 Nov 1995 14:31:10 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA10884 ; Fri, 3 Nov 1995 14:31:00 -0800 Date: Fri, 3 Nov 1995 14:31:00 -0800 From: Peter Wemm Message-Id: <199511032231.OAA10884@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT modules Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 14:30:59 Modified: . modules Log: fsdb -> src/usr.sbin/fsdb From owner-freebsd-commit Fri Nov 3 14:32:19 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA11171 for freebsd-commit-outgoing; Fri, 3 Nov 1995 14:32:19 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA11129 for cvs-all-outgoing; Fri, 3 Nov 1995 14:32:12 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA11105 for cvs-sys-outgoing; Fri, 3 Nov 1995 14:32:07 -0800 Received: (from olah@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA11080 ; Fri, 3 Nov 1995 14:31:57 -0800 Date: Fri, 3 Nov 1995 14:31:57 -0800 From: Andras Olah Message-Id: <199511032231.OAA11080@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netinet tcp_input.c Sender: owner-commit@FreeBSD.org Precedence: bulk olah 95/11/03 14:31:56 Modified: sys/netinet tcp_input.c Log: Cosmetic changes to processing of segments in the SYN_SENT state: - remove a redundant condition; - complete all validity checks on segment before calling soisconnected(so). Reviewed by: Richard Stevens, davidg, wollman From owner-freebsd-commit Fri Nov 3 14:39:13 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA11918 for freebsd-commit-outgoing; Fri, 3 Nov 1995 14:39:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA11906 for cvs-all-outgoing; Fri, 3 Nov 1995 14:39:09 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA11894 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 14:39:05 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA11870 ; Fri, 3 Nov 1995 14:38:55 -0800 Date: Fri, 3 Nov 1995 14:38:55 -0800 From: Peter Wemm Message-Id: <199511032238.OAA11870@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/fsdb - Imported sources Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 14:38:54 Branch: usr.sbin/fsdb 1.1.1 Log: Whoops. RE-Import NetBSD's fsdb - I believe this was written by John Kohl. Obtained from: NetBSD Status: Vendor Tag: NETBSD Release Tags: cur_951014_real N src/usr.sbin/fsdb/Makefile N src/usr.sbin/fsdb/fsdb.8 N src/usr.sbin/fsdb/fsdb.c N src/usr.sbin/fsdb/fsdb.h N src/usr.sbin/fsdb/fsdbutil.c No conflicts created by this import From owner-freebsd-commit Fri Nov 3 14:47:43 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA13104 for freebsd-commit-outgoing; Fri, 3 Nov 1995 14:47:43 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA13088 for cvs-all-outgoing; Fri, 3 Nov 1995 14:47:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA13076 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 14:47:37 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA13067 ; Fri, 3 Nov 1995 14:47:28 -0800 Date: Fri, 3 Nov 1995 14:47:28 -0800 From: Peter Wemm Message-Id: <199511032247.OAA13067@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/fsdb Makefile fsdb.8 fsdb.c fsdbutil.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 14:47:26 Modified: usr.sbin/fsdb Makefile fsdb.8 fsdb.c fsdbutil.c Log: Commit FreeBSD-specific changes. Mainly to do with structure layout differences that we dont have. From owner-freebsd-commit Fri Nov 3 14:53:35 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA14132 for freebsd-commit-outgoing; Fri, 3 Nov 1995 14:53:35 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA14102 for cvs-all-outgoing; Fri, 3 Nov 1995 14:53:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA14081 for cvs-usrsbin-outgoing; Fri, 3 Nov 1995 14:53:26 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id OAA14026 ; Fri, 3 Nov 1995 14:53:11 -0800 Date: Fri, 3 Nov 1995 14:53:11 -0800 From: Peter Wemm Message-Id: <199511032253.OAA14026@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin Makefile Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/03 14:53:10 Modified: usr.sbin Makefile Log: Connect fsdb to the SUBDIR list. From owner-freebsd-commit Fri Nov 3 21:03:47 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA05352 for freebsd-commit-outgoing; Fri, 3 Nov 1995 21:03:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA05331 for cvs-all-outgoing; Fri, 3 Nov 1995 21:03:33 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA05321 for cvs-etc-outgoing; Fri, 3 Nov 1995 21:03:30 -0800 Received: (from pst@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA05300 ; Fri, 3 Nov 1995 21:03:20 -0800 Date: Fri, 3 Nov 1995 21:03:20 -0800 From: Paul Traina Message-Id: <199511040503.VAA05300@freefall.freebsd.org> To: CVS-commiters, cvs-etc Subject: cvs commit: src/etc rc Sender: owner-commit@FreeBSD.org Precedence: bulk pst 95/11/03 21:03:18 Modified: etc rc Log: remove path in front of kadmind, path already set correctly From owner-freebsd-commit Fri Nov 3 23:57:40 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA12000 for freebsd-commit-outgoing; Fri, 3 Nov 1995 23:57:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA11955 for cvs-all-outgoing; Fri, 3 Nov 1995 23:57:26 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA11943 for cvs-sys-outgoing; Fri, 3 Nov 1995 23:57:23 -0800 Received: (from julian@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA11917 ; Fri, 3 Nov 1995 23:57:15 -0800 Date: Fri, 3 Nov 1995 23:57:15 -0800 From: Julian Elischer Message-Id: <199511040757.XAA11917@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/pci if_vx.c Sender: owner-commit@FreeBSD.org Precedence: bulk julian 95/11/03 23:57:15 Modified: sys/pci if_vx.c Log: Submitted by: bde IFF_NOTRAILERS doesn't exist any more in current (driver came from 2.0.5) now compiles again. From owner-freebsd-commit Sat Nov 4 00:48:39 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA17940 for freebsd-commit-outgoing; Sat, 4 Nov 1995 00:48:39 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA17928 for cvs-all-outgoing; Sat, 4 Nov 1995 00:48:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA17918 for cvs-user-outgoing; Sat, 4 Nov 1995 00:48:29 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id AAA17908 ; Sat, 4 Nov 1995 00:48:20 -0800 Date: Sat, 4 Nov 1995 00:48:20 -0800 From: "Jordan K. Hubbard" Message-Id: <199511040848.AAA17908@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall/help distributions.hlp hardware.hlp install.hlp options.hlp partition.hlp readme.hlp relnotes.hlp Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 00:48:19 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall doc.c freebsd.cfg install.c installUpgrade.c menus.c Log: Various tweaks to adjust things more to my liking. Also bring in Rich's changes to update XFree86 to 3.1.2-S. Branch: release/sysinstall/help RELENG_2_1_0 Modified: release/sysinstall/help distributions.hlp hardware.hlp install.hlp options.hlp partition.hlp readme.hlp relnotes.hlp Log: Finally read through all the docs again and found much I didn't like. Tweak tweak. From owner-freebsd-commit Sat Nov 4 01:04:30 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA19783 for freebsd-commit-outgoing; Sat, 4 Nov 1995 01:04:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA19755 for cvs-all-outgoing; Sat, 4 Nov 1995 01:04:22 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA19730 for cvs-sys-outgoing; Sat, 4 Nov 1995 01:04:16 -0800 Received: (from julian@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA19663 ; Sat, 4 Nov 1995 01:03:53 -0800 Date: Sat, 4 Nov 1995 01:03:53 -0800 From: Julian Elischer Message-Id: <199511040903.BAA19663@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netipx ipx.c ipx.h ipx_cksum.c ipx_error.c ipx_error.h ipx_if.h ipx_input.c ipx_ip.c ipx_ip.h ipx_outputfl.c ipx_pcb.c ipx_pcb.h ipx_proto.c ipx_tun.c ipx_usrreq.c ipx_var.h spx.h spx_debug.c spx_debug.h spx_timer.h spx_usrreq.c spx_var.h Sender: owner-commit@FreeBSD.org Precedence: bulk julian 95/11/04 01:03:51 Modified: sys/netipx ipx.c ipx.h ipx_cksum.c ipx_error.c ipx_error.h ipx_if.h ipx_input.c ipx_ip.c ipx_ip.h ipx_outputfl.c ipx_pcb.c ipx_pcb.h ipx_proto.c ipx_tun.c ipx_usrreq.c ipx_var.h spx.h spx_debug.c spx_debug.h spx_timer.h spx_usrreq.c spx_var.h Log: Suggested by: bde clear up some confusion about Id: lines on behalf of the author From owner-freebsd-commit Sat Nov 4 01:33:37 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA22903 for freebsd-commit-outgoing; Sat, 4 Nov 1995 01:33:37 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA22891 for cvs-all-outgoing; Sat, 4 Nov 1995 01:33:35 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA22881 for cvs-user-outgoing; Sat, 4 Nov 1995 01:33:32 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA22863 ; Sat, 4 Nov 1995 01:33:23 -0800 Date: Sat, 4 Nov 1995 01:33:23 -0800 From: "Jordan K. Hubbard" Message-Id: <199511040933.BAA22863@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall/help relnotes.hlp Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 01:33:22 Branch: release/sysinstall/help RELENG_2_1_0 Modified: release/sysinstall/help relnotes.hlp Log: Correct a typo. From owner-freebsd-commit Sat Nov 4 01:42:13 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA24339 for freebsd-commit-outgoing; Sat, 4 Nov 1995 01:42:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA24307 for cvs-all-outgoing; Sat, 4 Nov 1995 01:42:07 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA24282 for cvs-user-outgoing; Sat, 4 Nov 1995 01:42:01 -0800 Received: (from markm@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA24224 ; Sat, 4 Nov 1995 01:41:47 -0800 Date: Sat, 4 Nov 1995 01:41:47 -0800 From: Mark Murray Message-Id: <199511040941.BAA24224@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/tools/test/devrandom - New directory Sender: owner-commit@FreeBSD.org Precedence: bulk markm 95/11/04 01:41:46 src/tools/test/devrandom - New directory From owner-freebsd-commit Sat Nov 4 01:51:14 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA25860 for freebsd-commit-outgoing; Sat, 4 Nov 1995 01:51:14 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA25814 for cvs-all-outgoing; Sat, 4 Nov 1995 01:51:08 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA25785 for cvs-user-outgoing; Sat, 4 Nov 1995 01:51:04 -0800 Received: (from markm@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA25716 ; Sat, 4 Nov 1995 01:50:53 -0800 Date: Sat, 4 Nov 1995 01:50:53 -0800 From: Mark Murray Message-Id: <199511040950.BAA25716@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/tools/test/devrandom hammer.random hammer.urandom stat.16bit stat.8bit Sender: owner-commit@FreeBSD.org Precedence: bulk markm 95/11/04 01:50:52 Added: tools/test/devrandom hammer.random hammer.urandom stat.16bit stat.8bit Log: Add the test programs that I tested the /dev/random driver with. From owner-freebsd-commit Sat Nov 4 01:59:10 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA27189 for freebsd-commit-outgoing; Sat, 4 Nov 1995 01:59:10 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA27176 for cvs-all-outgoing; Sat, 4 Nov 1995 01:59:04 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA27164 for cvs-user-outgoing; Sat, 4 Nov 1995 01:59:02 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA27129 ; Sat, 4 Nov 1995 01:58:47 -0800 Date: Sat, 4 Nov 1995 01:58:47 -0800 From: "Jordan K. Hubbard" Message-Id: <199511040958.BAA27129@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall/help options.hlp Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 01:58:45 Branch: release/sysinstall/help RELENG_2_1_0 Modified: release/sysinstall/help options.hlp Log: Clean up outdated options menu docs. From owner-freebsd-commit Sat Nov 4 02:00:04 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA27360 for freebsd-commit-outgoing; Sat, 4 Nov 1995 02:00:04 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA27303 for cvs-all-outgoing; Sat, 4 Nov 1995 01:59:57 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA27289 for cvs-CVSROOT-outgoing; Sat, 4 Nov 1995 01:59:55 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA27266 ; Sat, 4 Nov 1995 01:59:49 -0800 Date: Sat, 4 Nov 1995 01:59:49 -0800 From: "Jordan K. Hubbard" Message-Id: <199511040959.BAA27266@freefall.freebsd.org> To: CVS-commiters, cvs-CVSROOT Subject: cvs commit: CVSROOT modules Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 01:59:48 Modified: . modules Log: Add missing `tools' module. From owner-freebsd-commit Sat Nov 4 02:00:58 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA27497 for freebsd-commit-outgoing; Sat, 4 Nov 1995 02:00:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA27478 for cvs-all-outgoing; Sat, 4 Nov 1995 02:00:50 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA27462 for cvs-user-outgoing; Sat, 4 Nov 1995 02:00:46 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA27445 ; Sat, 4 Nov 1995 02:00:32 -0800 Date: Sat, 4 Nov 1995 02:00:32 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041000.CAA27445@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/tools/test/joystick - New directory Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 02:00:31 src/tools/test/joystick - New directory From owner-freebsd-commit Sat Nov 4 02:35:44 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA02471 for freebsd-commit-outgoing; Sat, 4 Nov 1995 02:35:44 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA02453 for cvs-all-outgoing; Sat, 4 Nov 1995 02:35:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA02439 for cvs-sys-outgoing; Sat, 4 Nov 1995 02:35:38 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA02405 ; Sat, 4 Nov 1995 02:35:29 -0800 Date: Sat, 4 Nov 1995 02:35:29 -0800 From: Bruce Evans Message-Id: <199511041035.CAA02405@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern vfs_syscalls.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/11/04 02:35:28 Modified: sys/sys filedesc.h sys/kern vfs_syscalls.c Log: Prototype getvnode() in the right place (where ibcs2_stat.c can see it). From owner-freebsd-commit Sat Nov 4 02:44:43 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA04294 for freebsd-commit-outgoing; Sat, 4 Nov 1995 02:44:43 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA04278 for cvs-all-outgoing; Sat, 4 Nov 1995 02:44:38 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA04267 for cvs-usrsbin-outgoing; Sat, 4 Nov 1995 02:44:36 -0800 Received: (from peter@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA04213 ; Sat, 4 Nov 1995 02:44:25 -0800 Date: Sat, 4 Nov 1995 02:44:25 -0800 From: Peter Wemm Message-Id: <199511041044.CAA04213@freefall.freebsd.org> To: CVS-commiters, cvs-usrsbin Subject: cvs commit: src/usr.sbin/pppd options.c Sender: owner-commit@FreeBSD.org Precedence: bulk peter 95/11/04 02:44:24 Modified: usr.sbin/pppd options.c Log: Recover lost support for netmask 255.255.255.255 that was lost in the merge. Submitted by: Michael Butler From owner-freebsd-commit Sat Nov 4 02:51:18 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA04761 for freebsd-commit-outgoing; Sat, 4 Nov 1995 02:51:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA04735 for cvs-all-outgoing; Sat, 4 Nov 1995 02:51:11 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA04721 for cvs-sys-outgoing; Sat, 4 Nov 1995 02:51:08 -0800 Received: (from davidg@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA04699 ; Sat, 4 Nov 1995 02:50:58 -0800 Date: Sat, 4 Nov 1995 02:50:58 -0800 From: David Greenman Message-Id: <199511041050.CAA04699@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern kern_prot.c Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/11/04 02:50:58 Modified: sys/kern kern_prot.c Log: Return EINVAL if the number of groups is less than 1 in setgroups(). Obtained from: 4.4BSD-Lite2 From owner-freebsd-commit Sat Nov 4 02:55:09 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA05054 for freebsd-commit-outgoing; Sat, 4 Nov 1995 02:55:09 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA05035 for cvs-all-outgoing; Sat, 4 Nov 1995 02:55:05 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA05021 for cvs-sys-outgoing; Sat, 4 Nov 1995 02:55:03 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id CAA04997 ; Sat, 4 Nov 1995 02:54:56 -0800 Date: Sat, 4 Nov 1995 02:54:56 -0800 From: Bruce Evans Message-Id: <199511041054.CAA04997@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa/sound sb16_midi.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/11/04 02:54:55 Modified: sys/i386/isa/sound sb16_midi.c Log: Moved a nested extern declaration to a less bogus place to hide a warning. From owner-freebsd-commit Sat Nov 4 03:09:33 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA06248 for freebsd-commit-outgoing; Sat, 4 Nov 1995 03:09:33 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA06230 for cvs-all-outgoing; Sat, 4 Nov 1995 03:09:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA06214 for cvs-user-outgoing; Sat, 4 Nov 1995 03:09:28 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA06182 ; Sat, 4 Nov 1995 03:09:19 -0800 Date: Sat, 4 Nov 1995 03:09:19 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041109.DAA06182@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall cdrom.c command.c config.c disks.c dos.c ftp_strat.c install.c installUpgrade.c label.c misc.c network.c nfs.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 03:09:18 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall cdrom.c command.c config.c disks.c dos.c ftp_strat.c install.c installUpgrade.c label.c misc.c network.c nfs.c Log: Move MBR selection to write/quite stage of disk editor for a more logical grouping. Don't print geometry warning in "all disk" case. Clean up some unnecessary newlines in confirmation messages. From owner-freebsd-commit Sat Nov 4 03:12:58 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA06744 for freebsd-commit-outgoing; Sat, 4 Nov 1995 03:12:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA06723 for cvs-all-outgoing; Sat, 4 Nov 1995 03:12:54 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA06707 for cvs-sys-outgoing; Sat, 4 Nov 1995 03:12:51 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA06687 ; Sat, 4 Nov 1995 03:12:44 -0800 Date: Sat, 4 Nov 1995 03:12:44 -0800 From: Bruce Evans Message-Id: <199511041112.DAA06687@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/scsi ssc.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/11/04 03:12:44 Modified: sys/scsi ssc.c Log: Fixed the type of sscstrategy() (return void). Removed sscdump() (it was never used). Removed sscpsize() (it was never used, and returned a bogus value (ENXIO = 6 means a size of 6)). From owner-freebsd-commit Sat Nov 4 03:21:43 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA07716 for freebsd-commit-outgoing; Sat, 4 Nov 1995 03:21:43 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA07699 for cvs-all-outgoing; Sat, 4 Nov 1995 03:21:39 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA07688 for cvs-user-outgoing; Sat, 4 Nov 1995 03:21:37 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA07665 ; Sat, 4 Nov 1995 03:21:28 -0800 Date: Sat, 4 Nov 1995 03:21:28 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041121.DAA07665@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall disks.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 03:21:27 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall disks.c Log: Cosmetic tweaks. From owner-freebsd-commit Sat Nov 4 03:43:05 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA09810 for freebsd-commit-outgoing; Sat, 4 Nov 1995 03:43:05 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA09779 for cvs-all-outgoing; Sat, 4 Nov 1995 03:43:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA09755 for cvs-user-outgoing; Sat, 4 Nov 1995 03:42:57 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA09733 ; Sat, 4 Nov 1995 03:42:42 -0800 Date: Sat, 4 Nov 1995 03:42:42 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041142.DAA09733@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall command.c install.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 03:42:38 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall command.c install.c Log: Check for possible NULL value in command stack. From owner-freebsd-commit Sat Nov 4 04:02:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA11271 for freebsd-commit-outgoing; Sat, 4 Nov 1995 04:02:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA11248 for cvs-all-outgoing; Sat, 4 Nov 1995 04:02:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA11230 for cvs-user-outgoing; Sat, 4 Nov 1995 04:02:28 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA11218 ; Sat, 4 Nov 1995 04:02:19 -0800 Date: Sat, 4 Nov 1995 04:02:19 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041202.EAA11218@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall install.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 04:02:19 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall install.c Log: Always add swap space as soon as we can in an effort to save the occasional 4MB machine. From owner-freebsd-commit Sat Nov 4 04:20:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA13862 for freebsd-commit-outgoing; Sat, 4 Nov 1995 04:20:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA13848 for cvs-all-outgoing; Sat, 4 Nov 1995 04:20:31 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA13838 for cvs-user-outgoing; Sat, 4 Nov 1995 04:20:29 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA13827 ; Sat, 4 Nov 1995 04:20:23 -0800 Date: Sat, 4 Nov 1995 04:20:23 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041220.EAA13827@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall install.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 04:20:22 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall install.c Log: Whoops! It might help if I made the device node before swapping on it.. From owner-freebsd-commit Sat Nov 4 05:25:54 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA18704 for freebsd-commit-outgoing; Sat, 4 Nov 1995 05:25:54 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA18689 for cvs-all-outgoing; Sat, 4 Nov 1995 05:25:48 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA18679 for cvs-sys-outgoing; Sat, 4 Nov 1995 05:25:45 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA18668 ; Sat, 4 Nov 1995 05:25:35 -0800 Date: Sat, 4 Nov 1995 05:25:35 -0800 From: Bruce Evans Message-Id: <199511041325.FAA18668@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/sys conf.h snoop.h Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/11/04 05:25:34 Modified: sys/dev/vn vn.c sys/gnu/i386/isa dgb.c sys/i386/i386 conf.c sys/i386/isa cy.c fd.c mcd.c pcaudio.c rc.c scd.c si.c sio.c wdreg.h sys/i386/isa/matcd matcd.c sys/i386/isa/sound soundcard.c sys/kern tty_pty.c sys/net bpf.h if_tun.c sys/pccard pccard.c sys/scsi scsi_driver.h st.c sys/sys conf.h snoop.h Added: sys/i386/include conf.h Log: Moved prototypes for devswitch functions from conf.c and driver sources to . conf.h was mechanically generated by `grep ^d_ conf.c >conf.h'. This accounts for part of its ugliness. The prototypes should be moved back to the driver sources when the functions are staticalized. From owner-freebsd-commit Sat Nov 4 05:52:49 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA19852 for freebsd-commit-outgoing; Sat, 4 Nov 1995 05:52:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA19832 for cvs-all-outgoing; Sat, 4 Nov 1995 05:52:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA19814 for cvs-sys-outgoing; Sat, 4 Nov 1995 05:52:42 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id FAA19789 ; Sat, 4 Nov 1995 05:52:34 -0800 Date: Sat, 4 Nov 1995 05:52:34 -0800 From: Bruce Evans Message-Id: <199511041352.FAA19789@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/i386 mem.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/11/04 05:52:32 Modified: sys/i386/i386 mem.c Log: Finished(?) moving prototypes for devswitch functions to . One was hidden in an ifdef. Continued cleaning up not so new init stuff. Removed some more /*ARGSUSED*/ for devswitch functions. From owner-freebsd-commit Sat Nov 4 06:00:30 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA20386 for freebsd-commit-outgoing; Sat, 4 Nov 1995 06:00:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA20356 for cvs-all-outgoing; Sat, 4 Nov 1995 06:00:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA20336 for cvs-sys-outgoing; Sat, 4 Nov 1995 06:00:18 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA20303 ; Sat, 4 Nov 1995 06:00:05 -0800 Date: Sat, 4 Nov 1995 06:00:05 -0800 From: Bruce Evans Message-Id: <199511041400.GAA20303@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa/pcvt pcvt_hdr.h Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/11/04 06:00:04 Modified: sys/i386/isa/pcvt pcvt_hdr.h Log: Always declare vga_move_charset(). It doesn't depend on option XSERVER. From owner-freebsd-commit Sat Nov 4 06:43:48 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA23323 for freebsd-commit-outgoing; Sat, 4 Nov 1995 06:43:48 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA23305 for cvs-all-outgoing; Sat, 4 Nov 1995 06:43:43 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA23295 for cvs-sys-outgoing; Sat, 4 Nov 1995 06:43:39 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA23280 ; Sat, 4 Nov 1995 06:43:32 -0800 Date: Sat, 4 Nov 1995 06:43:32 -0800 From: Bruce Evans Message-Id: <199511041443.GAA23280@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/scsi aic7xxx.c aic7xxx.h Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/11/04 06:43:31 Modified: sys/pci aic7870.c sys/i386/scsi aic7xxx.c aic7xxx.h Log: Fixed the type of ahcintr(). The type of an ISA interrupt handler is incompatible with the type of a PCI interrupt handler. A new entry point `ahc_pci_intr()' is used for PCI. ISA and PCI interrupts are penalized equally (:-) by calling a common handler `ahc_intr()'. This should be reorganized. Some strings now name the wrong function... From owner-freebsd-commit Sat Nov 4 07:06:27 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA24695 for freebsd-commit-outgoing; Sat, 4 Nov 1995 07:06:27 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA24683 for cvs-all-outgoing; Sat, 4 Nov 1995 07:06:19 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA24670 for cvs-sys-outgoing; Sat, 4 Nov 1995 07:06:15 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA24646 ; Sat, 4 Nov 1995 07:05:56 -0800 Date: Sat, 4 Nov 1995 07:05:56 -0800 From: Bruce Evans Message-Id: <199511041505.HAA24646@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/pci if_pdq.c Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/11/04 07:05:54 Modified: sys/pci if_pdq.c Log: Fixed the type of feaintr(). The type of an EISA interrupt handler is incompatible with the type of a PCI interrupt handler. Fixed the type of pdc_pci_ifintr(). The type of a PCI interrupt handler is too generic to pass arbitrary struct pointers. From owner-freebsd-commit Sat Nov 4 07:08:47 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA24929 for freebsd-commit-outgoing; Sat, 4 Nov 1995 07:08:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA24914 for cvs-all-outgoing; Sat, 4 Nov 1995 07:08:41 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA24902 for cvs-user-outgoing; Sat, 4 Nov 1995 07:08:37 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA24871 ; Sat, 4 Nov 1995 07:08:27 -0800 Date: Sat, 4 Nov 1995 07:08:27 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041508.HAA24871@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall install.c installFinal.c menus.c misc.c sysinstall.h Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 07:08:26 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall install.c installFinal.c menus.c misc.c sysinstall.h Log: Fix the anon ftp installation to use the correct init function (doh!). Some more error message reform, since I'm here. From owner-freebsd-commit Sat Nov 4 07:46:01 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA29030 for freebsd-commit-outgoing; Sat, 4 Nov 1995 07:46:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA29009 for cvs-all-outgoing; Sat, 4 Nov 1995 07:45:54 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA28983 for cvs-user-outgoing; Sat, 4 Nov 1995 07:45:51 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA28940 ; Sat, 4 Nov 1995 07:45:33 -0800 Date: Sat, 4 Nov 1995 07:45:33 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041545.HAA28940@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall command.c config.c disks.c label.c sysinstall.h Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 07:45:32 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall command.c config.c disks.c label.c sysinstall.h Log: Avoid doing disk selection twice in novice install. Finally sort the fstab file entries correctly! qsort() either doesn't work or isn't working as documented. From owner-freebsd-commit Sat Nov 4 08:01:29 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA00962 for freebsd-commit-outgoing; Sat, 4 Nov 1995 08:01:29 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA00943 for cvs-all-outgoing; Sat, 4 Nov 1995 08:01:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA00926 for cvs-sys-outgoing; Sat, 4 Nov 1995 08:01:19 -0800 Received: (from markm@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id IAA00883 ; Sat, 4 Nov 1995 08:00:59 -0800 Date: Sat, 4 Nov 1995 08:00:59 -0800 From: Mark Murray Message-Id: <199511041600.IAA00883@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa random.c syscons.c vector.s Sender: owner-commit@FreeBSD.org Precedence: bulk markm 95/11/04 08:00:58 Modified: sys/i386/i386 machdep.c mem.c sys/i386/isa random.c syscons.c vector.s Log: Remove the #ifdev DEVRANDOM's, as promised. /dev/random is now a part of the kernel! you will need to make the device in /dev: sh MAKEDEV random and take a look at some test code in src/tools/test/random. From owner-freebsd-commit Sat Nov 4 09:00:54 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA06762 for freebsd-commit-outgoing; Sat, 4 Nov 1995 09:00:54 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA06737 for cvs-all-outgoing; Sat, 4 Nov 1995 09:00:47 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA06715 for cvs-user-outgoing; Sat, 4 Nov 1995 09:00:40 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA06680 ; Sat, 4 Nov 1995 09:00:15 -0800 Date: Sat, 4 Nov 1995 09:00:15 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041700.JAA06680@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall ftp_strat.c installFinal.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 09:00:13 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall ftp_strat.c installFinal.c Log: Deal with the case where an FTP connection has been left so long, it times out. Make sure that anon ftp's home directory exists before calling adduser or it (adduser) will have kittens. From owner-freebsd-commit Sat Nov 4 09:08:49 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA07957 for freebsd-commit-outgoing; Sat, 4 Nov 1995 09:08:49 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA07940 for cvs-all-outgoing; Sat, 4 Nov 1995 09:08:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA07914 for cvs-sys-outgoing; Sat, 4 Nov 1995 09:08:40 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAB07878 ; Sat, 4 Nov 1995 09:08:20 -0800 Date: Sat, 4 Nov 1995 09:08:20 -0800 From: Bruce Evans Message-Id: <199511041708.JAB07878@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa/sound sound_calls.h Sender: owner-commit@FreeBSD.org Precedence: bulk bde 95/11/04 09:08:16 Modified: share/mk bsd.kmod.mk sys/i386/include conf.h npx.h sys/i386/isa aha1542.c aha1742.c aic6360.c bt742a.c cy.c fd.c if_ed.c if_eg.c if_el.c if_ep.c if_fe.c if_ix.c if_le.c lpt.c mse.c ncr5380.c rc.c seagate.c si.c sio.c syscons.h ultra14f.c wd7000.c wdreg.h sys/i386/isa/pcvt pcvt_hdr.h sys/i386/isa/sound sound_calls.h Log: Added `#include "ioconf.h"' to and cleaned up the misplaced extern declarations (mostly prototypes of interrupt handlers) that this exposed. The prototypes should be moved back to the driver sources when the functions are staticalized. Added idempotency guards to . "ioconf.h" can't be included when building LKMs so define a wart in bsd.kmod.mk to help guard against including it. From owner-freebsd-commit Sat Nov 4 09:17:24 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA08898 for freebsd-commit-outgoing; Sat, 4 Nov 1995 09:17:24 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA08875 for cvs-all-outgoing; Sat, 4 Nov 1995 09:17:17 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA08857 for cvs-user-outgoing; Sat, 4 Nov 1995 09:17:12 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id JAA08816 ; Sat, 4 Nov 1995 09:16:50 -0800 Date: Sat, 4 Nov 1995 09:16:50 -0800 From: "Jordan K. Hubbard" Message-Id: <199511041716.JAA08816@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall config.c ftp_strat.c installFinal.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 09:16:48 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall config.c ftp_strat.c installFinal.c Log: Be more brutal about writing out /etc/hosts (it's not like there's much to preserve there initially anyway). More tweaks to FTP. From owner-freebsd-commit Sat Nov 4 10:10:50 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA13421 for freebsd-commit-outgoing; Sat, 4 Nov 1995 10:10:50 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA13409 for cvs-all-outgoing; Sat, 4 Nov 1995 10:10:45 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA13393 for cvs-sys-outgoing; Sat, 4 Nov 1995 10:10:39 -0800 Received: from aslan.cdrom.com (aslan.cdrom.com [192.216.223.142]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id KAA13386 ; Sat, 4 Nov 1995 10:10:32 -0800 Received: from localhost.cdrom.com (localhost.cdrom.com [127.0.0.1]) by aslan.cdrom.com (8.6.12/8.6.9) with SMTP id MAA27910; Sat, 4 Nov 1995 12:35:53 -0800 Message-Id: <199511042035.MAA27910@aslan.cdrom.com> X-Authentication-Warning: aslan.cdrom.com: Host localhost.cdrom.com didn't use HELO protocol To: Bruce Evans cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/i386/scsi aic7xxx.c aic7xxx.h In-reply-to: Your message of "Sat, 04 Nov 1995 06:43:32 PST." <199511041443.GAA23280@freefall.freebsd.org> Date: Sat, 04 Nov 1995 12:35:53 -0800 From: "Justin T. Gibbs" Sender: owner-commit@FreeBSD.org Precedence: bulk >bde 95/11/04 06:43:31 > > Modified: sys/pci aic7870.c > sys/i386/scsi aic7xxx.c aic7xxx.h > Log: > Fixed the type of ahcintr(). The type of an ISA interrupt handler is > incompatible with the type of a PCI interrupt handler. A new entry > point `ahc_pci_intr()' is used for PCI. ISA and PCI interrupts are > penalized equally (:-) by calling a common handler `ahc_intr()'. This > should be reorganized. Some strings now name the wrong function... Can you back this out please? I have the new EISA code almost ready to go (later today hopefully) and it will remove this problem. Well, actually, the eisa code expects interrupt handlers to return NULL, but I expect the PCI code to lose its support for shared edge triggered interrupts very soon. -- Justin T. Gibbs =========================================== Software Developer - Walnut Creek CDROM FreeBSD: Turning PCs into workstations =========================================== From owner-freebsd-commit Sat Nov 4 10:17:44 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA14036 for freebsd-commit-outgoing; Sat, 4 Nov 1995 10:17:44 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA14007 for cvs-all-outgoing; Sat, 4 Nov 1995 10:17:33 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA13993 for cvs-sys-outgoing; Sat, 4 Nov 1995 10:17:31 -0800 Received: from aslan.cdrom.com (aslan.cdrom.com [192.216.223.142]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id KAA13977 ; Sat, 4 Nov 1995 10:17:27 -0800 Received: from localhost.cdrom.com (localhost.cdrom.com [127.0.0.1]) by aslan.cdrom.com (8.6.12/8.6.9) with SMTP id MAA27945; Sat, 4 Nov 1995 12:43:02 -0800 Message-Id: <199511042043.MAA27945@aslan.cdrom.com> X-Authentication-Warning: aslan.cdrom.com: Host localhost.cdrom.com didn't use HELO protocol To: Bruce Evans cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/pci if_pdq.c In-reply-to: Your message of "Sat, 04 Nov 1995 07:05:56 PST." <199511041505.HAA24646@freefall.freebsd.org> Date: Sat, 04 Nov 1995 12:43:02 -0800 From: "Justin T. Gibbs" Sender: owner-commit@FreeBSD.org Precedence: bulk >bde 95/11/04 07:05:54 > > Modified: sys/pci if_pdq.c > Log: > Fixed the type of feaintr(). The type of an EISA interrupt handler is > incompatible with the type of a PCI interrupt handler. > > Fixed the type of pdc_pci_ifintr(). The type of a PCI interrupt handler > is too generic to pass arbitrary struct pointers. I thought that the point of the PCI interrupt handler type was to allow you to pass arbitrary struct pointers. Hmm. Now I'm confused. I want to pass (struct ach_data *)'s to the aic7xxx interrupt routine. What should be the type of an EISA interrupt handler to deal with this. Right now I'm using "void (*func)(void *)". -- Justin T. Gibbs =========================================== Software Developer - Walnut Creek CDROM FreeBSD: Turning PCs into workstations =========================================== From owner-freebsd-commit Sat Nov 4 10:37:37 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA15738 for freebsd-commit-outgoing; Sat, 4 Nov 1995 10:37:37 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA15714 for cvs-all-outgoing; Sat, 4 Nov 1995 10:37:29 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA15700 for cvs-sys-outgoing; Sat, 4 Nov 1995 10:37:27 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id KAA15687 ; Sat, 4 Nov 1995 10:37:17 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id FAA02381; Sun, 5 Nov 1995 05:32:27 +1100 Date: Sun, 5 Nov 1995 05:32:27 +1100 From: Bruce Evans Message-Id: <199511041832.FAA02381@godzilla.zeta.org.au> To: bde@freefall.freebsd.org, gibbs@freefall.freebsd.org Subject: Re: cvs commit: src/sys/i386/scsi aic7xxx.c aic7xxx.h Cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Sender: owner-commit@FreeBSD.org Precedence: bulk >> Modified: sys/pci aic7870.c >> sys/i386/scsi aic7xxx.c aic7xxx.h >> Log: >> Fixed the type of ahcintr(). The type of an ISA interrupt handler is >> incompatible with the type of a PCI interrupt handler. A new entry >Can you back this out please? I have the new EISA code almost ready to >go (later today hopefully) and it will remove this problem. Well, No, the old version no longer compiles. >actually, the eisa code expects interrupt handlers to return NULL, but >I expect the PCI code to lose its support for shared edge triggered >interrupts very soon. You may have more problems with all the other [E]ISA interrupt handlers that return void and are now prototyped in a central machine-generated file so that it is harder to vary them. Bruce From owner-freebsd-commit Sat Nov 4 10:55:20 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAB17139 for freebsd-commit-outgoing; Sat, 4 Nov 1995 10:55:20 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA17114 for cvs-all-outgoing; Sat, 4 Nov 1995 10:55:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id KAA17104 for cvs-sys-outgoing; Sat, 4 Nov 1995 10:55:11 -0800 Received: from aslan.cdrom.com (aslan.cdrom.com [192.216.223.142]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id KAA17093 ; Sat, 4 Nov 1995 10:55:04 -0800 Received: from localhost.cdrom.com (localhost.cdrom.com [127.0.0.1]) by aslan.cdrom.com (8.6.12/8.6.9) with SMTP id NAA28013; Sat, 4 Nov 1995 13:21:53 -0800 Message-Id: <199511042121.NAA28013@aslan.cdrom.com> X-Authentication-Warning: aslan.cdrom.com: Host localhost.cdrom.com didn't use HELO protocol To: Bruce Evans cc: bde@freefall.freebsd.org, gibbs@freefall.freebsd.org, CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/i386/scsi aic7xxx.c aic7xxx.h In-reply-to: Your message of "Sun, 05 Nov 1995 05:32:27 +1100." <199511041832.FAA02381@godzilla.zeta.org.au> Date: Sat, 04 Nov 1995 13:21:53 -0800 From: "Justin T. Gibbs" Sender: owner-commit@FreeBSD.org Precedence: bulk >>> Modified: sys/pci aic7870.c >>> sys/i386/scsi aic7xxx.c aic7xxx.h >>> Log: >>> Fixed the type of ahcintr(). The type of an ISA interrupt handler is >>> incompatible with the type of a PCI interrupt handler. A new entry > >>Can you back this out please? I have the new EISA code almost ready to >>go (later today hopefully) and it will remove this problem. Well, > >No, the old version no longer compiles. My version of the driver is very different than the one you modified, so this just increases the number of conflicts. :( >>actually, the eisa code expects interrupt handlers to return NULL, but >>I expect the PCI code to lose its support for shared edge triggered >>interrupts very soon. > >You may have more problems with all the other [E]ISA interrupt handlers >that return void and are now prototyped in a central machine-generated >file so that it is harder to vary them. > >Bruce Opps, I meant they return void. The only driver that should be using the new EISA stuff is the aic7xxx driver, so I don't anticipate problems with other EISA drivers until my new eisaconf stuff is reviewed, and I plunge into converting all of the drivers doing their own EISA probes to using it. I guess I'll have to fire off a SUP and see how you are auto-generating the prototypes. Why the move to a central file? -- Justin T. Gibbs =========================================== Software Developer - Walnut Creek CDROM FreeBSD: Turning PCs into workstations =========================================== From owner-freebsd-commit Sat Nov 4 11:07:46 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18445 for freebsd-commit-outgoing; Sat, 4 Nov 1995 11:07:46 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18423 for cvs-all-outgoing; Sat, 4 Nov 1995 11:07:40 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18402 for cvs-lib-outgoing; Sat, 4 Nov 1995 11:07:37 -0800 Received: (from wpaul@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18375 ; Sat, 4 Nov 1995 11:07:29 -0800 Date: Sat, 4 Nov 1995 11:07:29 -0800 From: Bill Paul Message-Id: <199511041907.LAA18375@freefall.freebsd.org> To: CVS-commiters, cvs-lib Subject: cvs commit: src/lib/libc/net getservent.c Sender: owner-commit@FreeBSD.org Precedence: bulk wpaul 95/11/04 11:07:29 Modified: lib/libc/net getservent.c Log: Add NIS support to getservent(3) functions (getservbyport() and getservbyname() both call getservent() to do most of the work, so we only need to modify this file to take care of everybody). Note that there is only one NIS services map (services.byname) even though there are getservbyname() and getservbyport() library functions. From owner-freebsd-commit Sat Nov 4 11:12:29 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18909 for freebsd-commit-outgoing; Sat, 4 Nov 1995 11:12:29 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18891 for cvs-all-outgoing; Sat, 4 Nov 1995 11:12:25 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA18875 for cvs-sys-outgoing; Sat, 4 Nov 1995 11:12:23 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA18847 ; Sat, 4 Nov 1995 11:12:12 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id GAA03120; Sun, 5 Nov 1995 06:09:48 +1100 Date: Sun, 5 Nov 1995 06:09:48 +1100 From: Bruce Evans Message-Id: <199511041909.GAA03120@godzilla.zeta.org.au> To: bde@freefall.freebsd.org, gibbs@freefall.freebsd.org Subject: Re: cvs commit: src/sys/pci if_pdq.c Cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Sender: owner-commit@FreeBSD.org Precedence: bulk >> Fixed the type of pdc_pci_ifintr(). The type of a PCI interrupt handler >> is too generic to pass arbitrary struct pointers. >I thought that the point of the PCI interrupt handler type was to allow >you to pass arbitrary struct pointers. Hmm. Now I'm confused. I want >to pass (struct ach_data *)'s to the aic7xxx interrupt routine. What >should be the type of an EISA interrupt handler to deal with this. Right >now I'm using "void (*func)(void *)". `void *' is correct but pdc_pci_ifintr() used `struct foo *'. `void *' can only be used (standards conformantly) to pass arbitrary struct pointers if there are implicit or explicit casts to and from the struct pointers. Prototypes usually give implicit casts in one direction only. Interrupt handlers that take a `void *' arg have to convert it back to what the know it to have been converted from. (Registration of a handler does an implicit cast from a `cookie *' to a `void *' and stores the result in a higher level struct; calling the handler passes this result unchanged; the handler converts back to the original `cookie *'. Note that it would be too much trouble to make the higher level code convert back to a `cookie *'. You would have to tell the higher level all about the type of the cookie and you would be limited to types that are known when the higher level is compiled. For similar reasons, it us too much trouble to use variant function types.) In practice, all struct pointer types usually have the same representation and this representation is (slightly less) usually the same as for `void *', so it usually works at runtime to confuse struct pointers with `void *'s. However, it doesn't work at compile time unless you lie to the compiler. Not lieing is easiest in this case essentially because there are relatively few interrupt handler types. Bruce From owner-freebsd-commit Sat Nov 4 11:15:19 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19243 for freebsd-commit-outgoing; Sat, 4 Nov 1995 11:15:19 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19227 for cvs-all-outgoing; Sat, 4 Nov 1995 11:15:16 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19215 for cvs-share-outgoing; Sat, 4 Nov 1995 11:15:14 -0800 Received: (from wpaul@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19198 ; Sat, 4 Nov 1995 11:15:06 -0800 Date: Sat, 4 Nov 1995 11:15:06 -0800 From: Bill Paul Message-Id: <199511041915.LAA19198@freefall.freebsd.org> To: CVS-commiters, cvs-share Subject: cvs commit: src/share/man/man5 services.5 Sender: owner-commit@FreeBSD.org Precedence: bulk wpaul 95/11/04 11:15:06 Modified: share/man/man5 services.5 Log: Document newly-added NIS support. From owner-freebsd-commit Sat Nov 4 11:18:11 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19520 for freebsd-commit-outgoing; Sat, 4 Nov 1995 11:18:11 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19472 for cvs-all-outgoing; Sat, 4 Nov 1995 11:18:03 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA19459 for cvs-user-outgoing; Sat, 4 Nov 1995 11:18:01 -0800 Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA19449 ; Sat, 4 Nov 1995 11:17:53 -0800 Received: from sax.sax.de by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id UAA01997; Sat, 4 Nov 1995 20:17:37 +0100 Received: by sax.sax.de (8.6.11/8.6.12-s1) with UUCP id UAA05585; Sat, 4 Nov 1995 20:17:36 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.6.12/8.6.9) id TAA02420; Sat, 4 Nov 1995 19:03:51 +0100 From: J Wunsch Message-Id: <199511041803.TAA02420@uriah.heep.sax.de> Subject: Re: cvs commit: src/release/sysinstall command.c config.c disks.c label.c sysinstall.h To: jkh@freefall.freebsd.org (Jordan K. Hubbard) Date: Sat, 4 Nov 1995 19:03:50 +0100 (MET) Cc: CVS-commiters@freefall.freebsd.org, cvs-user@freefall.freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <199511041545.HAA28940@freefall.freebsd.org> from "Jordan K. Hubbard" at Nov 4, 95 07:45:33 am 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 Content-Length: 1210 Sender: owner-commit@FreeBSD.org Precedence: bulk As Jordan K. Hubbard wrote: > > Log: > Avoid doing disk selection twice in novice install. > Finally sort the fstab file entries correctly! qsort() either > doesn't work or isn't working as documented. qsort() usage is somewhat obfuscated: j@uriah 222% cat foo.c #include #include #include const char *text[] = { "foo", "bar", "mumble", "murx", "junk", "rubbish", "trash", "bin", "junkpointer" }; int compar(const void *a, const void *b) { return strcmp((const char *)*((const char **)a), (const char *)*((const char **)b)); } int main(void) { const char **cp; int i; qsort(text, sizeof text / sizeof(const char *), sizeof(const char *), compar); for(cp = text, i = 0; i < sizeof text / sizeof(const char *); cp++, i++) printf("%s\n", *cp); return 0; } j@uriah 223% cc -Wall foo.c j@uriah 224% ./a.out bar bin foo junk junkpointer mumble murx rubbish trash -- 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-freebsd-commit Sat Nov 4 11:32:34 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA20690 for freebsd-commit-outgoing; Sat, 4 Nov 1995 11:32:34 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA20672 for cvs-all-outgoing; Sat, 4 Nov 1995 11:32:30 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA20660 for cvs-sys-outgoing; Sat, 4 Nov 1995 11:32:26 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA20646 ; Sat, 4 Nov 1995 11:32:18 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id GAA03590; Sun, 5 Nov 1995 06:31:42 +1100 Date: Sun, 5 Nov 1995 06:31:42 +1100 From: Bruce Evans Message-Id: <199511041931.GAA03590@godzilla.zeta.org.au> To: bde@zeta.org.au, gibbs@freefall.freebsd.org Subject: Re: cvs commit: src/sys/i386/scsi aic7xxx.c aic7xxx.h Cc: CVS-commiters@freefall.freebsd.org, bde@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Sender: owner-commit@FreeBSD.org Precedence: bulk >I guess I'll have to fire off a SUP and see how you are auto-generating the >prototypes. Why the move to a central file? Prototypes for interrupt handlers have been generated in "ioconf.h" for more than a year. I decided to use the declarations there based on the principle that extern declarations should be in exactly one header file. Bruce From owner-freebsd-commit Sat Nov 4 11:49:23 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA22812 for freebsd-commit-outgoing; Sat, 4 Nov 1995 11:49:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA22796 for cvs-all-outgoing; Sat, 4 Nov 1995 11:49:20 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id LAA22786 for cvs-sys-outgoing; Sat, 4 Nov 1995 11:49:17 -0800 Received: from aslan.cdrom.com (aslan.cdrom.com [192.216.223.142]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id LAA22775 ; Sat, 4 Nov 1995 11:49:11 -0800 Received: from localhost.cdrom.com (localhost.cdrom.com [127.0.0.1]) by aslan.cdrom.com (8.6.12/8.6.9) with SMTP id OAA28163; Sat, 4 Nov 1995 14:17:51 -0800 Message-Id: <199511042217.OAA28163@aslan.cdrom.com> X-Authentication-Warning: aslan.cdrom.com: Host localhost.cdrom.com didn't use HELO protocol To: Bruce Evans cc: gibbs@freefall.freebsd.org, CVS-commiters@freefall.freebsd.org, bde@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/i386/scsi aic7xxx.c aic7xxx.h In-reply-to: Your message of "Sun, 05 Nov 1995 06:31:42 +1100." <199511041931.GAA03590@godzilla.zeta.org.au> Date: Sat, 04 Nov 1995 14:17:51 -0800 From: "Justin T. Gibbs" Sender: owner-commit@FreeBSD.org Precedence: bulk >>I guess I'll have to fire off a SUP and see how you are auto-generating the >>prototypes. Why the move to a central file? > >Prototypes for interrupt handlers have been generated in "ioconf.h" for >more than a year. I decided to use the declarations there based on the >principle that extern declarations should be in exactly one header file. > >Bruce Ahh. This I didn't know. -- Justin T. Gibbs =========================================== Software Developer - Walnut Creek CDROM FreeBSD: Turning PCs into workstations =========================================== From owner-freebsd-commit Sat Nov 4 12:57:13 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA00110 for freebsd-commit-outgoing; Sat, 4 Nov 1995 12:57:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA29956 for cvs-all-outgoing; Sat, 4 Nov 1995 12:56:58 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA29940 for cvs-ports-outgoing; Sat, 4 Nov 1995 12:56:55 -0800 Received: (from pst@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id MAA29888 ; Sat, 4 Nov 1995 12:56:44 -0800 Date: Sat, 4 Nov 1995 12:56:44 -0800 From: Paul Traina Message-Id: <199511042056.MAA29888@freefall.freebsd.org> To: CVS-commiters, cvs-ports Subject: cvs commit: ports/x11/XFree86/scripts configure Sender: owner-commit@FreeBSD.org Precedence: bulk pst 95/11/04 12:56:43 Modified: x11/XFree86 Makefile.ftp x11/XFree86/scripts configure Log: Update our port to XFree86-3.1.2-S, which has the security update from the XFree86 group (which is their flavor of XC fix 13). Reviewed by: jmz From owner-freebsd-commit Sat Nov 4 15:42:23 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA24266 for freebsd-commit-outgoing; Sat, 4 Nov 1995 15:42:23 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA24239 for cvs-all-outgoing; Sat, 4 Nov 1995 15:42:10 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id PAA24227 for cvs-user-outgoing; Sat, 4 Nov 1995 15:42:07 -0800 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id PAA24219 ; Sat, 4 Nov 1995 15:41:58 -0800 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id PAA15426; Sat, 4 Nov 1995 15:41:26 -0800 To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) cc: jkh@freefall.freebsd.org (Jordan K. Hubbard), CVS-commiters@freefall.freebsd.org, cvs-user@freefall.freebsd.org Subject: Re: cvs commit: src/release/sysinstall command.c config.c disks.c label.c sysinstall.h In-reply-to: Your message of "Sat, 04 Nov 1995 19:03:50 +0100." <199511041803.TAA02420@uriah.heep.sax.de> Date: Sat, 04 Nov 1995 15:41:25 -0800 Message-ID: <15423.815528485@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-commit@FreeBSD.org Precedence: bulk > qsort() usage is somewhat obfuscated: Hmmm. Thanks for the example! I see now what I did wrong - I didn't do the final pointer-to-pointer dereference in the sort function. Ah well, no matter, I'll just leave my bubble sort in place since I'm only sorting between 3 and 10 items, typically. :) Jordan From owner-freebsd-commit Sat Nov 4 16:16:56 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA27836 for freebsd-commit-outgoing; Sat, 4 Nov 1995 16:16:56 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA27811 for cvs-all-outgoing; Sat, 4 Nov 1995 16:16:48 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA27797 for cvs-user-outgoing; Sat, 4 Nov 1995 16:16:46 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id QAA27768 ; Sat, 4 Nov 1995 16:16:38 -0800 Date: Sat, 4 Nov 1995 16:16:38 -0800 From: "Jordan K. Hubbard" Message-Id: <199511050016.QAA27768@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall install.c menus.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 16:16:38 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall install.c menus.c Log: Remove the anonymous FTP configuration from menus and prompts. It appears that the adduser command is just too broken to allow it to be used in automated creation mode (it loops forever) and this option is therefore retired until we get it fixed. From owner-freebsd-commit Sat Nov 4 17:01:00 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA29006 for freebsd-commit-outgoing; Sat, 4 Nov 1995 17:01:00 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA28992 for cvs-all-outgoing; Sat, 4 Nov 1995 17:00:42 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA28976 for cvs-user-outgoing; Sat, 4 Nov 1995 17:00:40 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA28965 ; Sat, 4 Nov 1995 17:00:33 -0800 Date: Sat, 4 Nov 1995 17:00:33 -0800 From: "Jordan K. Hubbard" Message-Id: <199511050100.RAA28965@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall apache.c disks.c install.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 17:00:33 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall apache.c disks.c install.c Log: More bug fixes noticed from last install. From owner-freebsd-commit Sat Nov 4 17:45:28 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA00291 for freebsd-commit-outgoing; Sat, 4 Nov 1995 17:45:28 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA00279 for cvs-all-outgoing; Sat, 4 Nov 1995 17:45:18 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA00268 for cvs-user-outgoing; Sat, 4 Nov 1995 17:45:15 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA00255 ; Sat, 4 Nov 1995 17:45:05 -0800 Date: Sat, 4 Nov 1995 17:45:05 -0800 From: "Jordan K. Hubbard" Message-Id: <199511050145.RAA00255@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall config.c Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 17:45:05 Branch: release/sysinstall RELENG_2_1_0 Modified: release/sysinstall config.c Log: Reverse the sort order to put swap devices at the very top of fstab. From owner-freebsd-commit Sat Nov 4 18:23:10 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA00959 for freebsd-commit-outgoing; Sat, 4 Nov 1995 18:23:10 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA00947 for cvs-all-outgoing; Sat, 4 Nov 1995 18:23:05 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA00936 for cvs-user-outgoing; Sat, 4 Nov 1995 18:23:03 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id SAA00924 ; Sat, 4 Nov 1995 18:22:55 -0800 Date: Sat, 4 Nov 1995 18:22:55 -0800 From: "Jordan K. Hubbard" Message-Id: <199511050222.SAA00924@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall/help apache.hlp Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 18:22:54 Branch: release/sysinstall RELENG_2_1_0 release/sysinstall/help RELENG_2_1_0 Modified: release/sysinstall config.c install.c Added: release/sysinstall/help apache.hlp Log: Add the apache help file. From owner-freebsd-commit Sat Nov 4 20:54:35 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id UAA18043 for freebsd-commit-outgoing; Sat, 4 Nov 1995 20:54:35 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id UAA18027 for cvs-all-outgoing; Sat, 4 Nov 1995 20:54:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id UAA18017 for cvs-sys-outgoing; Sat, 4 Nov 1995 20:54:11 -0800 Received: (from gibbs@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id UAA18007 ; Sat, 4 Nov 1995 20:54:02 -0800 Date: Sat, 4 Nov 1995 20:54:02 -0800 From: "Justin T. Gibbs" Message-Id: <199511050454.UAA18007@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/scsi scsi_base.c Sender: owner-commit@FreeBSD.org Precedence: bulk gibbs 95/11/04 20:54:00 Added: sys/dev/aic7xxx aic7xxx_reg.h Log: Move aic7xxx register definitions from i386/scsi/aic7xxx.c to this file. The hope is to make the sequencer and kernel code share this file, but some work on our sequencer assembler will be needed first. Modified: sys/i386/conf files.i386 Log: Move aic7770.c to i386/eisa. It is the first driver to use the new eisaconf. Modified: sys/i386/eisa aic7770.c eisaconf.c eisaconf.h Removed: sys/i386/eisa eisadevs.c Log: This is a totally new implementation of eisaconf. It will hopefully be the beginning of our move to a more dynamic (configuration manager) based setup for all drivers. Everything seems to work except for some devconf problems. Only the aic7xxx driver will be using this interface until it is reviewed, revised and accepted as a good configuration interface. Adapt aic7770.c to use new eisaconf. eisadevs.c is replaced by a linker set. Modified: sys/i386/i386 autoconf.c sys/i386/include devconf.h Log: Modifications for the new eisaconf. Modified: sys/i386/isa isa.c isa_device.h Removed: sys/i386/isa aic7770.c Log: Remove old eisaconf cruft from the eisa files. The old eisaconf kludged in here to do some conflict detection. The new code doesn't do conflict detection yet, but it will be implemented in another way. aic7770.c moved to i386/eisa Modified: sys/i386/scsi aic7xxx.c aic7xxx.h Log: Move aic7xxx register definitions to sys/dev/aic7xxx/aic7xxx_reg.h. Start the revamp of the initialiation process. New routines include ahc_alloc, ahc_free, and ahc_reset. These help divide the work of staring up a board more logically between probe and attach. ahcintr now takes a (void *) and returns int. The pci code uses it directly. Until the PCI code for shared edged triggered interrupts is removed, the eisa code uses a stub (ahc_eisa_intr) that throws away the int returned by ahcintr. Use MHz instead of MB/s for printing out sync rates. Print out "aic7880" instead of "aic7870" for the new aic7880 chips. Modified: sys/pci aic7870.c Log: Conform to new probe/attach interface exported by aic7xxx.c. Use ahcintr directly as interrupt handler. Modified: sys/scsi scsi_base.c Log: Oops. Didn't mean for this to get in here. I'll revert it after this commit. From owner-freebsd-commit Sat Nov 4 21:39:16 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA19653 for freebsd-commit-outgoing; Sat, 4 Nov 1995 21:39:16 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA19640 for cvs-all-outgoing; Sat, 4 Nov 1995 21:39:14 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA19630 for cvs-lib-outgoing; Sat, 4 Nov 1995 21:39:11 -0800 Received: (from wpaul@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id VAA19619 ; Sat, 4 Nov 1995 21:39:06 -0800 Date: Sat, 4 Nov 1995 21:39:06 -0800 From: Bill Paul Message-Id: <199511050539.VAA19619@freefall.freebsd.org> To: CVS-commiters, cvs-lib Subject: cvs commit: src/lib/libc/yp yplib.c Sender: owner-commit@FreeBSD.org Precedence: bulk wpaul 95/11/04 21:39:05 Modified: lib/libc/yp yplib.c Log: - Make _do_ypbind() check for /var/run/ypbind.lock and attempt to flock() it before before trying to establish a binding. If /var/run/ypbind.lock doesn't exist, or if it exists and isn't locked, then ypbind isn't running, which means NIS is either turned off or hosed. - Have _yp_check() call yp_unbind() after it sucessfully calls yp_bind() to make sure it frees resources correctly. (I don't think there's really a memory leak here, but it seems somehow wrong to call yp_bind() without making a corresponding call to yp_unbind() afterwards.) This makes the NIS code behave a little better in cases where libc makes calls to NIS, but it isn't running correctly (i.e. there's no ypbind). This cleans up some strange libc behavior that manifests itself if you have the system domain name set, but aren't actually running NIS. In this event, the getrpcent(3) code could try to call into NIS and cause several inexplicable "clnttcp_create error: RPC program not registered" messages to appear. This happens because _yp_check() checks if the system domain name is set and, if it is, proceeds to call yp_bind() to attempt to establish a binding. Since there is no binding file (remember: ypbind isn't running, so /var/yp/binding will be empty), _yp_dobind() will attempt to contact ypbind to prod it into binding the domain. And because ypbind isn't running, the code generates the 'clnttcp_create' error. Ultimately the _yp_check() fails and the getrpcent(3) code rolls over to the /etc/rpc file, but the error messages are annoying, and the code should be smart enough to forgo the binding attempt when NIS is turned off. From owner-freebsd-commit Sat Nov 4 22:23:25 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA20570 for freebsd-commit-outgoing; Sat, 4 Nov 1995 22:23:25 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA20558 for cvs-all-outgoing; Sat, 4 Nov 1995 22:23:19 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA20548 for cvs-user-outgoing; Sat, 4 Nov 1995 22:23:18 -0800 Received: (from jkh@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id WAA20539 ; Sat, 4 Nov 1995 22:23:13 -0800 Date: Sat, 4 Nov 1995 22:23:13 -0800 From: "Jordan K. Hubbard" Message-Id: <199511050623.WAA20539@freefall.freebsd.org> To: CVS-commiters, cvs-user Subject: cvs commit: src/release/sysinstall/help apache.hlp Sender: owner-commit@FreeBSD.org Precedence: bulk jkh 95/11/04 22:23:12 Branch: release/sysinstall/help RELENG_2_1_0 Modified: release/sysinstall/help apache.hlp Log: typo police