From owner-cvs-sys Sun Aug 27 07:13:14 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id HAA22731 for cvs-sys-outgoing; Sun, 27 Aug 1995 07:13:14 -0700 Received: (from joerg@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id HAA22720 ; Sun, 27 Aug 1995 07:13:07 -0700 Date: Sun, 27 Aug 1995 07:13:07 -0700 From: Joerg Wunsch Message-Id: <199508271413.HAA22720@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/conf LINT Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk joerg 95/08/27 07:13:06 Modified: sys/i386/conf LINT Log: Add a comment that a user with many open windows under X might need to bump CHILD_MAX. Closes PR # conf/708: CHILD_MAX set rather low... Submitted by: careilly@monoid.cs.tcd.ie From owner-cvs-sys Sun Aug 27 09:38:58 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id JAA26719 for cvs-sys-outgoing; Sun, 27 Aug 1995 09:38:58 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id JAA26711 ; Sun, 27 Aug 1995 09:38:42 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id CAA23170; Mon, 28 Aug 1995 02:35:18 +1000 Date: Mon, 28 Aug 1995 02:35:18 +1000 From: Bruce Evans Message-Id: <199508271635.CAA23170@godzilla.zeta.org.au> To: CVS-commiters@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org, joerg@freefall.FreeBSD.org Subject: Re: cvs commit: src/sys/i386/conf LINT Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk > Modified: sys/i386/conf LINT > Log: > Add a comment that a user with many open windows under X might need to > bump CHILD_MAX. > > Closes PR # conf/708: CHILD_MAX set rather low... > > Submitted by: careilly@monoid.cs.tcd.ie Aargh. The user should just increase the resource limit (`limit maxproc nnn' or `unlimit maxproc' in csh; `ulimit -u nnn' in bash; not supported in sh :-(). Changing CHILD_MAX in the kernel breaks any applications that depend on its fixed value (not many; perhaps only POSIX test suites that check that CHILD_MAX works :-). Changing the limit at runtime breaks these applications too, but at least it only applies to the current process tree. Changing CHILD_MAX everywhere would break binary compatibility. So does using limit at runtime, but the damage is limited. Similarly for OPEN_MAX. Bruce From owner-cvs-sys Sun Aug 27 10:27:09 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA27781 for cvs-sys-outgoing; Sun, 27 Aug 1995 10:27:09 -0700 Received: from halloran-eldar.lcs.mit.edu (halloran-eldar.lcs.mit.edu [18.26.0.159]) by freefall.FreeBSD.org (8.6.11/8.6.6) with SMTP id KAA27774 ; Sun, 27 Aug 1995 10:26:47 -0700 Received: by halloran-eldar.lcs.mit.edu; (5.65/1.1.8.2/19Aug95-0530PM) id AA27912; Sun, 27 Aug 1995 13:26:28 -0400 Date: Sun, 27 Aug 1995 13:26:28 -0400 From: "Garrett A. Wollman" Message-Id: <9508271726.AA27912@halloran-eldar.lcs.mit.edu> To: Bruce Evans Cc: CVS-commiters@freefall.FreeBSD.org, bde@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_map.h vm_map.c In-Reply-To: <199508270107.LAA23799@godzilla.zeta.org.au> References: <199508270107.LAA23799@godzilla.zeta.org.au> Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk < said: > 1) for syscalls. The conversion from the application's args is [...] > bar_args *'. Perhaps the right method is to pass a `void *' > or `int *' and convert it in each function, like you have to > do for qsort(). This is precisely the approach I took when doing this rationalization in 1.x. I would have preferred to continue it (and fix the current syscalls to match the old model), but other people wanted to do it the new (broken) 4.4-Lite way, and I let them have their way. > 2) for protoswitch functions. The number and type of args sometimes > depends on the protocol. For pr_input routines, it always depends on the protocol. The solution that I prefer for these is to declare pr_input as a `void (*)(void)' and then define some protocol-specific macros to cast it to the correct value. If there were a way I could think of to use unions the same way for increased type-safety, I'd prefer that. > If everything passed the correct number and type of args then we > could compile the kernel with -mrtd -mregparm to save a few cycles. > -mregparm is officially supported for the i386 in gcc-2.7.0. This would be a nice thing to have. There are almost certainly other architectures where it would benefit more. -GAWollman -- Garrett A. Wollman | Shashish is simple, it's discreet, it's brief. ... wollman@lcs.mit.edu | Shashish is the bonding of hearts in spite of distance. Opinions not those of| It is a bond more powerful than absence. We like people MIT, LCS, ANA, or NSA| who like Shashish. - Claude McKenzie + Florent Vollant From owner-cvs-sys Sun Aug 27 11:59:04 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id LAA00785 for cvs-sys-outgoing; Sun, 27 Aug 1995 11:59:04 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id LAA00778 ; Sun, 27 Aug 1995 11:58:50 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id EAA26062; Mon, 28 Aug 1995 04:56:01 +1000 Date: Mon, 28 Aug 1995 04:56:01 +1000 From: Bruce Evans Message-Id: <199508271856.EAA26062@godzilla.zeta.org.au> To: bde@zeta.org.au, wollman@lcs.mit.edu Subject: Re: cvs commit: src/sys/vm vm_map.h vm_map.c Cc: CVS-commiters@freefall.FreeBSD.org, bde@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk >> 1) for syscalls. The conversion from the application's args is >[...] >> bar_args *'. Perhaps the right method is to pass a `void *' >> or `int *' and convert it in each function, like you have to >> do for qsort(). >This is precisely the approach I took when doing this rationalization >in 1.x. I would have preferred to continue it (and fix the current >syscalls to match the old model), but other people wanted to do it the >new (broken) 4.4-Lite way, and I let them have their way. I'm now automatically generating prototypes from the data syscalls.master. I cast the initializers in init_sysent.c to hide the warnings. I had to add some new optional fields to handle non-orthogonal names arg struct tags such as `args' instead of getfoo_args for getfoo(), and non- int return types for exit() and umask(). I included the prototypes in . They'll have to be moved, because this increases the kernel build time by 10%! The arg struct declarations should be automatically generated too. syscalls.master will have to look more like vnode_if.src for that. I could generate a nicer visible interface, even one with args on the stack (it's not clear whether the overhead for copying the args again would be > 0). Bruce From owner-cvs-sys Sun Aug 27 17:51:31 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA13881 for cvs-sys-outgoing; Sun, 27 Aug 1995 17:51:31 -0700 Received: (from swallace@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA13828 ; Sun, 27 Aug 1995 17:50:09 -0700 Date: Sun, 27 Aug 1995 17:50:09 -0700 From: Steven Wallace Message-Id: <199508280050.RAA13828@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/linux linux_file.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk swallace 95/08/27 17:50:09 Modified: sys/i386/linux linux_file.c Log: Modified linux_readdir() function to properly handle Linux readdir() calls with a byte size of 1. This special case was not correctly emulated. Now programs such as a simple 'ls' to a commercial Macintosh emulator called 'executor' will work correctly. From owner-cvs-sys Mon Aug 28 02:20:53 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id CAA15180 for cvs-sys-outgoing; Mon, 28 Aug 1995 02:20:53 -0700 Received: (from julian@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id CAA15088 ; Mon, 28 Aug 1995 02:19:27 -0700 Date: Mon, 28 Aug 1995 02:19:27 -0700 From: Julian Elischer Message-Id: <199508280919.CAA15088@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/vm vm_extern.h vm_glue.c vm_init.c vm_pageout.c vm_pageout.h Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk julian 95/08/28 02:19:26 Modified: sys/i386/i386 autoconf.c machdep.c sys/i386/ibcs2 ibcs2_stats.c imgact_coff.c sys/i386/linux linux_stats.c sys/kern init_main.c kern_clock.c kern_malloc.c kern_synch.c subr_prof.c sysv_msg.c sysv_sem.c sysv_shm.c tty_subr.c uipc_domain.c uipc_mbuf.c vfs_bio.c vfs_conf.c vfs_init.c vfs_syscalls.c sys/net if.c sys/sys kernel.h mount.h namei.h systm.h vnioctl.h sys/ufs/ffs ffs_vfsops.c sys/ufs/lfs lfs_vfsops.c sys/ufs/mfs mfs_extern.h mfs_vfsops.c sys/ufs/ufs dir.h ufs_lookup.c ufs_vnops.c sys/vm vm_extern.h vm_glue.c vm_init.c vm_pageout.c vm_pageout.h Log: Reviewed by: julian with quick glances by bruce and others Submitted by: terry (terry lambert) This is a composite of 3 patch sets submitted by terry. they are: New low-level init code that supports loadbal modules better some cleanups in the namei code to help terry in 16-bit character support some changes to the mount-root code to make it a little more modular.. NOTE: mounting root off cdrom or NFS MIGHT be broken as I haven't been able to test those cases.. certainly mounting root of disk still works just fine.. mfs should work but is untested. (tomorrows task) The low level init stuff includes a total rewrite of init_main.c to make it possible for new modules to have an init phase by simply adding an entry to a TEXT_SET (or is it DATA_SET) list. thus a new module can be added to the kernel without editing any other files other than the 'files' file. From owner-cvs-sys Mon Aug 28 02:58:00 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id CAA17660 for cvs-sys-outgoing; Mon, 28 Aug 1995 02:58:00 -0700 Received: from gndrsh.aac.dev.com (gndrsh.aac.dev.com [198.145.92.241]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id CAA17611 ; Mon, 28 Aug 1995 02:56:28 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id CAA00624; Mon, 28 Aug 1995 02:56:18 -0700 From: "Rodney W. Grimes" Message-Id: <199508280956.CAA00624@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/sys/vm vm_extern.h vm_glue.c vm_init.c vm_pageout.c vm_pageout.h To: julian@freefall.FreeBSD.org (Julian Elischer) Date: Mon, 28 Aug 1995 02:56:18 -0700 (PDT) Cc: CVS-commiters@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org In-Reply-To: <199508280919.CAA15088@freefall.FreeBSD.org> from "Julian Elischer" at Aug 28, 95 02:19:27 am X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 2536 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk > > julian 95/08/28 02:19:26 > > Modified: sys/i386/i386 autoconf.c machdep.c > sys/i386/ibcs2 ibcs2_stats.c imgact_coff.c > sys/i386/linux linux_stats.c > sys/kern init_main.c kern_clock.c kern_malloc.c > kern_synch.c subr_prof.c sysv_msg.c sysv_sem.c > sysv_shm.c tty_subr.c uipc_domain.c uipc_mbuf.c > vfs_bio.c vfs_conf.c vfs_init.c vfs_syscalls.c > sys/net if.c > sys/sys kernel.h mount.h namei.h systm.h vnioctl.h > sys/ufs/ffs ffs_vfsops.c > sys/ufs/lfs lfs_vfsops.c > sys/ufs/mfs mfs_extern.h mfs_vfsops.c > sys/ufs/ufs dir.h ufs_lookup.c ufs_vnops.c > sys/vm vm_extern.h vm_glue.c vm_init.c vm_pageout.c > vm_pageout.h > Log: > Reviewed by: julian with quick glances by bruce and others > Submitted by: terry (terry lambert) > This is a composite of 3 patch sets submitted by terry. > they are: > New low-level init code that supports loadbal modules better > some cleanups in the namei code to help terry in 16-bit character support > some changes to the mount-root code to make it a little more > modular.. Please, for the future do that as 3 commits. It makes it easier to figure out which changes do what using cvs. Now these are all mixed into one commit and seperating deltas for examination is a pain. It also makes it next to imposible to pull just one of these 3 into another branch for evaluation. > NOTE: mounting root off cdrom or NFS MIGHT be broken as I haven't been able > to test those cases.. Loss of root mounting via NFS is a critical function for diskless operation, this should have been tested before commit :-(. > certainly mounting root of disk still works just fine.. > mfs should work but is untested. (tomorrows task) Again, mfs root is critical to installs, should have been tested before commit, not after. > The low level init stuff includes a total rewrite of init_main.c > to make it possible for new modules to have an init phase by simply > adding an entry to a TEXT_SET (or is it DATA_SET) list. thus a new module can > be added to the kernel without editing any other files other than the > 'files' file. YEA!!! -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Reliable computers for FreeBSD From owner-cvs-sys Mon Aug 28 05:02:51 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id FAA27650 for cvs-sys-outgoing; Mon, 28 Aug 1995 05:02:51 -0700 Received: (from guido@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id FAA27551 ; Mon, 28 Aug 1995 05:01:20 -0700 Date: Mon, 28 Aug 1995 05:01:20 -0700 From: Guido van Rooij Message-Id: <199508281201.FAA27551@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa if_ep.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk guido 95/08/28 05:01:19 Modified: sys/i386/isa if_ep.c Log: Add SIOCGIFADDR ioctl so rarpd actually works with the if_ep interface. From owner-cvs-sys Mon Aug 28 09:09:23 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id JAA11453 for cvs-sys-outgoing; Mon, 28 Aug 1995 09:09:23 -0700 Received: (from bde@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id JAA11443 ; Mon, 28 Aug 1995 09:09:16 -0700 Date: Mon, 28 Aug 1995 09:09:16 -0700 From: Bruce Evans Message-Id: <199508281609.JAA11443@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/ufs/ufs ufs_disksubr.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk bde 95/08/28 09:09:15 Modified: sys/ufs/ufs ufs_disksubr.c Log: Fix correct_writedisklabel() and writedisklabel(). Their setting of bp->b_flags has been broken for many years: a) they didn't set B_BUSY for doing i/o. This has been fatal since 1995/07/25 when biodone() started checking that B_BUSY is set. b) they didn't set B_INVAL for releasing the buffer. This at best just put a useless buffer in the LRU queue for a little while. Fix a couple of spelling errors and complete a couple of function pointer declarations. From owner-cvs-sys Mon Aug 28 09:45:54 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id JAA13365 for cvs-sys-outgoing; Mon, 28 Aug 1995 09:45:54 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id JAA12984 ; Mon, 28 Aug 1995 09:45:41 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id CAA06533; Tue, 29 Aug 1995 02:33:57 +1000 Date: Tue, 29 Aug 1995 02:33:57 +1000 From: Bruce Evans Message-Id: <199508281633.CAA06533@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/ufs/ufs ufs_disksubr.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk > Modified: sys/ufs/ufs ufs_disksubr.c > Log: > Fix correct_writedisklabel() and writedisklabel(). Their setting of > bp->b_flags has been broken for many years: > a) they didn't set B_BUSY for doing i/o. This has been fatal since > 1995/07/25 when biodone() started checking that B_BUSY is set. > b) they didn't set B_INVAL for releasing the buffer. This at best > just put a useless buffer in the LRU queue for a little while. This should be in 2.1 since the fussy (buggy?) checking in biodone() is is already in 2.1. To test for the bug, change a label using `disklabel -e'. This should cause a panic in biodone() for all recent versions of vfs_bio.c. Bruce From owner-cvs-sys Mon Aug 28 10:03:30 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA14146 for cvs-sys-outgoing; Mon, 28 Aug 1995 10:03:30 -0700 Received: (from jkh@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA14135 ; Mon, 28 Aug 1995 10:03:22 -0700 Date: Mon, 28 Aug 1995 10:03:22 -0700 From: "Jordan K. Hubbard" Message-Id: <199508281703.KAA14135@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/pci meteor.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk jkh 95/08/28 10:03:19 Modified: sys/i386/conf LINT Added: sys/i386/include ioctl_meteor.h sys/pci meteor.c Log: Kernel components of Matrox Meteor driver. Submitted by: Mark Tinguely and Jim Lowe From owner-cvs-sys Mon Aug 28 10:37:20 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA16017 for cvs-sys-outgoing; Mon, 28 Aug 1995 10:37:20 -0700 Received: (from wpaul@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA16001 ; Mon, 28 Aug 1995 10:37:12 -0700 From: Bill Paul Message-Id: <199508281737.KAA16001@freefall.FreeBSD.org> Subject: 'real memory =' line in machdep.c To: CVS-commiters, cvs-sys Date: Mon, 28 Aug 1995 10:37:11 -0700 (PDT) X-Mailer: ELM [version 2.4 PL24] Content-Type: text Content-Length: 231 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk I just noticed today that somebody took out the 'real memory = XXXXXXXXX' printf() in machdep.c that used to live right after the call to identifycpu(). Was this done on purpose, and if not, can somebody please put it back? -Bill From owner-cvs-sys Mon Aug 28 10:45:57 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA16301 for cvs-sys-outgoing; Mon, 28 Aug 1995 10:45:57 -0700 Received: (from jkh@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA16288 ; Mon, 28 Aug 1995 10:45:48 -0700 Date: Mon, 28 Aug 1995 10:45:48 -0700 From: "Jordan K. Hubbard" Message-Id: <199508281745.KAA16288@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/conf GENERIC Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk jkh 95/08/28 10:45:47 Branch: sys/i386/conf RELENG_2_1_0 Modified: sys/i386/conf GENERIC Log: Put sio3 back, add ATAPI to -current GENERIC kernel. From owner-cvs-sys Mon Aug 28 10:52:14 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA16618 for cvs-sys-outgoing; Mon, 28 Aug 1995 10:52:14 -0700 Received: from gndrsh.aac.dev.com (gndrsh.aac.dev.com [198.145.92.241]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id KAA16585 ; Mon, 28 Aug 1995 10:51:55 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id KAA01962; Mon, 28 Aug 1995 10:51:17 -0700 From: "Rodney W. Grimes" Message-Id: <199508281751.KAA01962@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/sys/i386/conf GENERIC To: jkh@freefall.FreeBSD.org (Jordan K. Hubbard) Date: Mon, 28 Aug 1995 10:51:17 -0700 (PDT) Cc: CVS-commiters@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org In-Reply-To: <199508281745.KAA16288@freefall.FreeBSD.org> from "Jordan K. Hubbard" at Aug 28, 95 10:45:48 am X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 520 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk > > jkh 95/08/28 10:45:47 > > Branch: sys/i386/conf RELENG_2_1_0 > Modified: sys/i386/conf GENERIC > Log: > Put sio3 back, add ATAPI to -current GENERIC kernel. Thanks for the sio3 back, missing it caused a few things to fall over last night after a reboot :-(. But, how can a commit to RELENG_2_1_0 effect any change in -current???? -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Reliable computers for FreeBSD From owner-cvs-sys Mon Aug 28 11:03:21 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id LAA17286 for cvs-sys-outgoing; Mon, 28 Aug 1995 11:03:21 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id LAA17274 ; Mon, 28 Aug 1995 11:03:13 -0700 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id LAA12888; Mon, 28 Aug 1995 11:03:01 -0700 To: "Rodney W. Grimes" cc: jkh@freefall.FreeBSD.org (Jordan K. Hubbard), CVS-commiters@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org Subject: Re: cvs commit: src/sys/i386/conf GENERIC In-reply-to: Your message of "Mon, 28 Aug 1995 10:51:17 PDT." <199508281751.KAA01962@gndrsh.aac.dev.com> Date: Mon, 28 Aug 1995 11:03:00 -0700 Message-ID: <12886.809632980@time.cdrom.com> From: "Jordan K. Hubbard" Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk > Thanks for the sio3 back, missing it caused a few things to fall > over last night after a reboot :-(. > > But, how can a commit to RELENG_2_1_0 effect any change in -current???? I brought it into both branches, actually. Jordan From owner-cvs-sys Mon Aug 28 11:30:52 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id LAA19002 for cvs-sys-outgoing; Mon, 28 Aug 1995 11:30:52 -0700 Received: from gndrsh.aac.dev.com (gndrsh.aac.dev.com [198.145.92.241]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id LAA18977 ; Mon, 28 Aug 1995 11:30:40 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id LAA02092; Mon, 28 Aug 1995 11:29:57 -0700 From: "Rodney W. Grimes" Message-Id: <199508281829.LAA02092@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/sys/i386/conf GENERIC To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Mon, 28 Aug 1995 11:29:56 -0700 (PDT) Cc: jkh@freefall.FreeBSD.org, CVS-commiters@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org In-Reply-To: <12886.809632980@time.cdrom.com> from "Jordan K. Hubbard" at Aug 28, 95 11:03:00 am X-Mailer: ELM [version 2.4 PL24] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 650 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk > > > Thanks for the sio3 back, missing it caused a few things to fall > > over last night after a reboot :-(. > > > > But, how can a commit to RELENG_2_1_0 effect any change in -current???? > > I brought it into both branches, actually. Then where was the other commit?? You can only commit to one branch at a time... and the commit message should reflect what is going on, so commiting to RELENG_2_1_0 and saying -current makes for some head scratching when looking at cvs rlog outputs! -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Reliable computers for FreeBSD From owner-cvs-sys Mon Aug 28 13:27:32 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id NAA23968 for cvs-sys-outgoing; Mon, 28 Aug 1995 13:27:32 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id NAA23953 ; Mon, 28 Aug 1995 13:27:16 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id GAA12688; Tue, 29 Aug 1995 06:21:09 +1000 Date: Tue, 29 Aug 1995 06:21:09 +1000 From: Bruce Evans Message-Id: <199508282021.GAA12688@godzilla.zeta.org.au> To: CVS-commiters@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org, wpaul@freefall.FreeBSD.org Subject: Re: 'real memory =' line in machdep.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk >I just noticed today that somebody took out the 'real memory = XXXXXXXXX' >printf() in machdep.c that used to live right after the call to >identifycpu(). Was this done on purpose, and if not, can somebody >please put it back? It went away when holes were supported. Now it would be interesting to see Maxmem, physmem + 1 (1 more for the BIOS page which probably wasn't counted as "real" before) and bad memory/holes. Bruce From owner-cvs-sys Mon Aug 28 20:09:28 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id UAA07956 for cvs-sys-outgoing; Mon, 28 Aug 1995 20:09:28 -0700 Received: (from bde@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id UAA07943 ; Mon, 28 Aug 1995 20:09:17 -0700 Date: Mon, 28 Aug 1995 20:09:17 -0700 From: Bruce Evans Message-Id: <199508290309.UAA07943@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/sys gmon.h Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk bde 95/08/28 20:09:16 Modified: sys/kern subr_prof.c sys/sys gmon.h Log: kmstartup had the wrong type and unnecessarily external linkage for a sysinit function. subr_prof.c: Remove useless comment. From owner-cvs-sys Tue Aug 29 06:55:30 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id GAA00613 for cvs-sys-outgoing; Tue, 29 Aug 1995 06:55:30 -0700 Received: (from jkh@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id GAA00601 ; Tue, 29 Aug 1995 06:55:26 -0700 Date: Tue, 29 Aug 1995 06:55:26 -0700 From: "Jordan K. Hubbard" Message-Id: <199508291355.GAA00601@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/pci meteor.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk jkh 95/08/29 06:55:25 Modified: sys/pci meteor.c Log: Fixes for issues raised by Bruce Evans. Submitted by: Jim Lowe From owner-cvs-sys Tue Aug 29 09:08:42 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id JAA12595 for cvs-sys-outgoing; Tue, 29 Aug 1995 09:08:42 -0700 Received: (from ache@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id JAA12526 ; Tue, 29 Aug 1995 09:08:28 -0700 Date: Tue, 29 Aug 1995 09:08:28 -0700 From: "Andrey A. Chernov" Message-Id: <199508291608.JAA12526@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/conf newvers.sh Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk ache 95/08/29 09:08:27 Modified: sys/conf newvers.sh Log: Reset LANG and LC_TIME env. variables to produce english `date` From owner-cvs-sys Tue Aug 29 09:44:56 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id JAA14464 for cvs-sys-outgoing; Tue, 29 Aug 1995 09:44:56 -0700 Received: (from jkh@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id JAA14452 ; Tue, 29 Aug 1995 09:44:47 -0700 Date: Tue, 29 Aug 1995 09:44:47 -0700 From: "Jordan K. Hubbard" Message-Id: <199508291644.JAA14452@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa spigot.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk jkh 95/08/29 09:44:47 Modified: sys/i386/isa spigot.c Log: Address Bruce's mmap concerns in this driver too. Submitted by: Jim Lowe From owner-cvs-sys Tue Aug 29 10:49:11 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA16820 for cvs-sys-outgoing; Tue, 29 Aug 1995 10:49:11 -0700 Received: (from wollman@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA16804 ; Tue, 29 Aug 1995 10:49:08 -0700 Date: Tue, 29 Aug 1995 10:49:08 -0700 From: "Garrett A. Wollman" Message-Id: <199508291749.KAA16804@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/netinet ip_icmp.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk wollman 95/08/29 10:49:04 Modified: sys/netinet ip_icmp.c Log: Fix long-standing bug in ICMPPRINTFS code where NTOHL was used instead of ntohl for printing IP addresses, by instead substituting inet_ntoa() to produce human-readable output. Obtained from: 4.4-Lite-2 From owner-cvs-sys Tue Aug 29 16:46:09 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id QAA29235 for cvs-sys-outgoing; Tue, 29 Aug 1995 16:46:09 -0700 Received: (from bde@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id QAA29214 ; Tue, 29 Aug 1995 16:45:27 -0700 Date: Tue, 29 Aug 1995 16:45:27 -0700 From: Bruce Evans Message-Id: <199508292345.QAA29214@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/i386 locore.s Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk bde 95/08/29 16:45:21 Modified: sys/i386/i386 locore.s Log: Remove relocation of Crtat. Drivers already relocate it (somewhat bogusly). We used to undo the driver relocation here before doing a somewhat less bogus relocation. The result was a null relocation here. From owner-cvs-sys Tue Aug 29 17:00:15 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA29490 for cvs-sys-outgoing; Tue, 29 Aug 1995 17:00:15 -0700 Received: (from bde@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id QAA29446 ; Tue, 29 Aug 1995 16:59:29 -0700 Date: Tue, 29 Aug 1995 16:59:29 -0700 From: Bruce Evans Message-Id: <199508292359.QAA29446@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern init_main.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk bde 95/08/29 16:59:23 Modified: sys/kern init_main.c Log: Fix benign type mismatches and nested extern declarations in new sysinit code. Fix old and new missing prototypes. From owner-cvs-sys Tue Aug 29 17:17:24 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA29858 for cvs-sys-outgoing; Tue, 29 Aug 1995 17:17:24 -0700 Received: (from bde@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA29846 ; Tue, 29 Aug 1995 17:17:19 -0700 Date: Tue, 29 Aug 1995 17:17:19 -0700 From: Bruce Evans Message-Id: <199508300017.RAA29846@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern vfs_conf.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk bde 95/08/29 17:17:19 Modified: sys/kern vfs_conf.c Log: Fix benign type mismatch in a sysinit function arg. From owner-cvs-sys Tue Aug 29 17:33:59 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA00503 for cvs-sys-outgoing; Tue, 29 Aug 1995 17:33:59 -0700 Received: (from bde@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA00487 ; Tue, 29 Aug 1995 17:33:37 -0700 Date: Tue, 29 Aug 1995 17:33:37 -0700 From: Bruce Evans Message-Id: <199508300033.RAA00487@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/sys msg.h sem.h shm.h Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk bde 95/08/29 17:33:36 Modified: sys/kern sysv_msg.c sysv_sem.c sysv_shm.c Log: Fix several sysinit functions that had the wrong type and unnecessarily external linkage. Remove useless comments saying that SYSINIT() does system initialization. shm.c: Remove nearly useless comment that gave wrong pseudo-prototypes. Modified: sys/net if.h if_disc.c if_loop.c if_ppp.c if_sl.c if_slvar.h if_tun.c Log: Fix several sysinit functions that had the wrong type and unnecessarily external linkage. Remove useless comments saying that SYSINIT() does system initialization. Modified: sys/sys msg.h sem.h shm.h Log: Fix several sysinit functions that had the wrong type and unnecessarily external linkage. From owner-cvs-sys Tue Aug 29 18:34:51 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id SAA02682 for cvs-sys-outgoing; Tue, 29 Aug 1995 18:34:51 -0700 Received: (from bde@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id SAA02649 ; Tue, 29 Aug 1995 18:34:29 -0700 Date: Tue, 29 Aug 1995 18:34:29 -0700 From: Bruce Evans Message-Id: <199508300134.SAA02649@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/ufs/mfs mfs_vfsops.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk bde 95/08/29 18:34:29 Modified: sys/sys mount.h sys/i386/i386 autoconf.c sys/ufs/mfs mfs_vfsops.c Log: Declare vfs_mountroot() in the right place. From owner-cvs-sys Wed Aug 30 10:24:28 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA14902 for cvs-sys-outgoing; Wed, 30 Aug 1995 10:24:28 -0700 Received: (from dfr@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id KAA14884 ; Wed, 30 Aug 1995 10:24:19 -0700 Date: Wed, 30 Aug 1995 10:24:19 -0700 From: Doug Rabson Message-Id: <199508301724.KAA14884@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/nfs nfs_vfsops.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk dfr 95/08/30 10:24:17 Modified: sys/nfs nfs_vfsops.c Log: Make nfs diskless work again. Reviewed by: John Hay From owner-cvs-sys Wed Aug 30 18:26:30 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id SAA12050 for cvs-sys-outgoing; Wed, 30 Aug 1995 18:26:30 -0700 Received: (from dyson@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id SAA12013 ; Wed, 30 Aug 1995 18:26:23 -0700 Date: Wed, 30 Aug 1995 18:26:23 -0700 From: John Dyson Message-Id: <199508310126.SAA12013@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern uipc_usrreq.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk dyson 95/08/30 18:26:23 Branch: sys/kern RELENG_2_1_0 Modified: sys/kern uipc_usrreq.c Log: Increase the buffer size for pipes from 4k to 8k. Allow "PIPSIZ" to be a tunable now. In the future, it might be good to increase the default to 16k. From owner-cvs-sys Wed Aug 30 18:30:04 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id SAA12214 for cvs-sys-outgoing; Wed, 30 Aug 1995 18:30:04 -0700 Received: (from dyson@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id SAA12190 ; Wed, 30 Aug 1995 18:30:00 -0700 Date: Wed, 30 Aug 1995 18:30:00 -0700 From: John Dyson Message-Id: <199508310130.SAA12190@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys, davidg Subject: Oh oh.. I am sorry -- I made a BIG mistake Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk Ok, I blew it... How do I back out my change from the "sacred" tree??? John dyson@root.com From owner-cvs-sys Wed Aug 30 18:39:38 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id SAA13669 for cvs-sys-outgoing; Wed, 30 Aug 1995 18:39:38 -0700 Received: (from dyson@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id SAA13658 ; Wed, 30 Aug 1995 18:39:33 -0700 Date: Wed, 30 Aug 1995 18:39:33 -0700 From: John Dyson Message-Id: <199508310139.SAA13658@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern uipc_usrreq.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk dyson 95/08/30 18:39:32 Modified: sys/kern uipc_usrreq.c Log: Increase the size of the pipe buffer as denoted by PIPSIZ from 4k to 8k. This has a significant effect on the pipe performance. In the future it might be good to increase this to 16k. PIPSIZ is now tunable for experimentation. From owner-cvs-sys Wed Aug 30 20:44:06 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id UAA20083 for cvs-sys-outgoing; Wed, 30 Aug 1995 20:44:06 -0700 Received: from Root.COM (implode.Root.COM [198.145.90.17]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id UAA20068 ; Wed, 30 Aug 1995 20:43:32 -0700 Received: from corbin.Root.COM (corbin [198.145.90.34]) by Root.COM (8.6.12/8.6.5) with ESMTP id UAA14496; Wed, 30 Aug 1995 20:42:29 -0700 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.11/8.6.5) with SMTP id UAA20517; Wed, 30 Aug 1995 20:44:24 -0700 Message-Id: <199508310344.UAA20517@corbin.Root.COM> To: John Dyson cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/kern uipc_usrreq.c In-reply-to: Your message of "Wed, 30 Aug 95 18:26:23 PDT." <199508310126.SAA12013@freefall.FreeBSD.org> From: David Greenman Reply-To: davidg@Root.COM Date: Wed, 30 Aug 1995 20:44:24 -0700 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk >dyson 95/08/30 18:26:23 > > Branch: sys/kern RELENG_2_1_0 > Modified: sys/kern uipc_usrreq.c > Log: > Increase the buffer size for pipes from 4k to 8k. Allow "PIPSIZ" to be > a tunable now. In the future, it might be good to increase the > default to 16k. Rod, if you haven't already, please cvs admin -o the above. John made a simple mistake, so let's just deal with it. Thanks. -DG From owner-cvs-sys Wed Aug 30 23:17:24 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25099 for cvs-sys-outgoing; Wed, 30 Aug 1995 23:17:24 -0700 Received: (from davidg@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25080 ; Wed, 30 Aug 1995 23:17:13 -0700 Date: Wed, 30 Aug 1995 23:17:13 -0700 From: David Greenman Message-Id: <199508310617.XAA25080@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa bt742a.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk davidg 95/08/30 23:17:13 Branch: sys/i386/isa RELENG_2_1_0 Modified: sys/i386/isa bt742a.c Log: Brought in changes from revs 1.37-1.39: fixes for fast sync, bogus variable, and probe message. From owner-cvs-sys Wed Aug 30 23:23:25 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25389 for cvs-sys-outgoing; Wed, 30 Aug 1995 23:23:25 -0700 Received: (from davidg@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25379 ; Wed, 30 Aug 1995 23:23:23 -0700 Date: Wed, 30 Aug 1995 23:23:23 -0700 From: David Greenman Message-Id: <199508310623.XAA25379@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/pci ncr.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk davidg 95/08/30 23:23:23 Branch: sys/pci RELENG_2_1_0 Modified: sys/pci ncr.c Log: Brought in changes from revs 1.40-1.41: fix return status so operations are retried, and fix diagnostic message. From owner-cvs-sys Wed Aug 30 23:26:12 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25453 for cvs-sys-outgoing; Wed, 30 Aug 1995 23:26:12 -0700 Received: (from davidg@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25443 ; Wed, 30 Aug 1995 23:26:10 -0700 Date: Wed, 30 Aug 1995 23:26:10 -0700 From: David Greenman Message-Id: <199508310626.XAA25443@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/scsi scsiconf.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk davidg 95/08/30 23:26:09 Branch: sys/scsi RELENG_2_1_0 Modified: sys/scsi scsiconf.c Log: Brought in change from rev 1.33: fix declaration. From owner-cvs-sys Wed Aug 30 23:28:33 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25540 for cvs-sys-outgoing; Wed, 30 Aug 1995 23:28:33 -0700 Received: (from bde@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25530 ; Wed, 30 Aug 1995 23:28:30 -0700 Date: Wed, 30 Aug 1995 23:28:30 -0700 From: Bruce Evans Message-Id: <199508310628.XAA25530@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/sys kernel.h Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk bde 95/08/30 23:28:30 Modified: sys/sys kernel.h Log: Fix fatal function type mismatches in lkms. lkm init functions recently gained a dummy argument for compatibility with sysinit functions, but this arg wasn't passed for lkms outside the kernel. From owner-cvs-sys Wed Aug 30 23:36:33 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25885 for cvs-sys-outgoing; Wed, 30 Aug 1995 23:36:33 -0700 Received: (from davidg@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id XAA25875 ; Wed, 30 Aug 1995 23:36:28 -0700 Date: Wed, 30 Aug 1995 23:36:28 -0700 From: David Greenman Message-Id: <199508310636.XAA25875@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/scsi scsiconf.c scsiconf.h Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk davidg 95/08/30 23:36:27 Branch: sys/i386/isa RELENG_2_1_0 sys/i386/scsi RELENG_2_1_0 sys/pci RELENG_2_1_0 sys/scsi RELENG_2_1_0 Modified: sys/i386/isa aha1542.c aha1742.c aic6360.c bt742a.c ncr5380.c seagate.c ultra14f.c wd7000.c sys/i386/scsi aic7xxx.c sys/pci ncr.c sys/scsi scsiconf.c scsiconf.h Log: Brought in changes from main branch: code to allow probing past SCSI ID 7. From owner-cvs-sys Thu Aug 31 03:01:12 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id DAA01122 for cvs-sys-outgoing; Thu, 31 Aug 1995 03:01:12 -0700 Received: (from davidg@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id DAA01081 ; Thu, 31 Aug 1995 03:00:47 -0700 Date: Thu, 31 Aug 1995 03:00:47 -0700 From: David Greenman Message-Id: <199508311000.DAA01081@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/kern imgact_aout.c kern_exec.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk davidg 95/08/31 03:00:46 Branch: sys/i386/ibcs2 RELENG_2_1_0 sys/i386/linux RELENG_2_1_0 sys/kern RELENG_2_1_0 Modified: sys/i386/ibcs2 imgact_coff.c sys/i386/linux imgact_linux.c sys/kern imgact_aout.c kern_exec.c Log: Brought in changes from main branch: fix for "text file busy" bug. From owner-cvs-sys Thu Aug 31 03:51:05 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id DAA02491 for cvs-sys-outgoing; Thu, 31 Aug 1995 03:51:05 -0700 Received: from gndrsh.aac.dev.com (gndrsh.aac.dev.com [198.145.92.241]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id DAA02474 ; Thu, 31 Aug 1995 03:50:47 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id DAA10884; Thu, 31 Aug 1995 03:50:27 -0700 From: "Rodney W. Grimes" Message-Id: <199508311050.DAA10884@gndrsh.aac.dev.com> Subject: Re: Oh oh.. I am sorry -- I made a BIG mistake To: dyson@freefall.FreeBSD.org (John Dyson) Date: Thu, 31 Aug 1995 03:50:26 -0700 (PDT) Cc: CVS-commiters@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org, davidg@freefall.FreeBSD.org In-Reply-To: <199508310130.SAA12190@freefall.FreeBSD.org> from "John Dyson" at Aug 30, 95 06:30:00 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: 342 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk > > > Ok, I blew it... How do I back out my change from the "sacred" tree??? Without any context as to what you ``blew'' I can't reply to your question :-(. > John > dyson@root.com -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Reliable computers for FreeBSD From owner-cvs-sys Thu Aug 31 04:40:57 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id EAA03531 for cvs-sys-outgoing; Thu, 31 Aug 1995 04:40:57 -0700 Received: from gndrsh.aac.dev.com (gndrsh.aac.dev.com [198.145.92.241]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id EAA03523 ; Thu, 31 Aug 1995 04:40:53 -0700 Received: (from rgrimes@localhost) by gndrsh.aac.dev.com (8.6.11/8.6.9) id EAA11004; Thu, 31 Aug 1995 04:40:29 -0700 From: "Rodney W. Grimes" Message-Id: <199508311140.EAA11004@gndrsh.aac.dev.com> Subject: Re: cvs commit: src/sys/kern uipc_usrreq.c To: davidg@Root.COM Date: Thu, 31 Aug 1995 04:40:29 -0700 (PDT) Cc: dyson@freefall.freebsd.org, CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org In-Reply-To: <199508310344.UAA20517@corbin.Root.COM> from "David Greenman" at Aug 30, 95 08:44:24 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: 688 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk > > >dyson 95/08/30 18:26:23 > > > > Branch: sys/kern RELENG_2_1_0 > > Modified: sys/kern uipc_usrreq.c > > Log: > > Increase the buffer size for pipes from 4k to 8k. Allow "PIPSIZ" to be > > a tunable now. In the future, it might be good to increase the > > default to 16k. > > Rod, if you haven't already, please cvs admin -o the above. John made a > simple mistake, so let's just deal with it. Thanks. The following direct repository operation has been performed: cvs admin -o1.9.4.2 uipc_usrreq.c -- Rod Grimes rgrimes@gndrsh.aac.dev.com Accurate Automation Company Reliable computers for FreeBSD From owner-cvs-sys Thu Aug 31 08:21:39 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id IAA09740 for cvs-sys-outgoing; Thu, 31 Aug 1995 08:21:39 -0700 Received: (from wollman@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id IAA09729 ; Thu, 31 Aug 1995 08:21:35 -0700 Date: Thu, 31 Aug 1995 08:21:35 -0700 From: "Garrett A. Wollman" Message-Id: <199508311521.IAA09729@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/net if.h Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk wollman 95/08/31 08:21:34 Modified: sys/net if.h Log: Add a few hooks (in the form of an array of four void *'s) to allow various bits of software to save some data in the ifnet structure without having to constantly change the declaration thereof. From owner-cvs-sys Thu Aug 31 08:38:32 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id IAA10560 for cvs-sys-outgoing; Thu, 31 Aug 1995 08:38:32 -0700 Received: from Root.COM (implode.Root.COM [198.145.90.17]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id IAA10547 ; Thu, 31 Aug 1995 08:38:26 -0700 Received: from corbin.Root.COM (corbin [198.145.90.34]) by Root.COM (8.6.12/8.6.5) with ESMTP id IAA22673; Thu, 31 Aug 1995 08:37:21 -0700 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.11/8.6.5) with SMTP id IAA21427; Thu, 31 Aug 1995 08:39:18 -0700 Message-Id: <199508311539.IAA21427@corbin.Root.COM> To: "Rodney W. Grimes" cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Subject: Re: cvs commit: src/sys/kern uipc_usrreq.c In-reply-to: Your message of "Thu, 31 Aug 95 04:40:29 PDT." <199508311140.EAA11004@gndrsh.aac.dev.com> From: David Greenman Reply-To: davidg@Root.COM Date: Thu, 31 Aug 1995 08:39:18 -0700 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk >> >> >dyson 95/08/30 18:26:23 >> > >> > Branch: sys/kern RELENG_2_1_0 >> > Modified: sys/kern uipc_usrreq.c >> > Log: >> > Increase the buffer size for pipes from 4k to 8k. Allow "PIPSIZ" to be >> > a tunable now. In the future, it might be good to increase the >> > default to 16k. >> >> Rod, if you haven't already, please cvs admin -o the above. John made a >> simple mistake, so let's just deal with it. Thanks. > >The following direct repository operation has been performed: > >cvs admin -o1.9.4.2 uipc_usrreq.c Thanks Rod! -DG From owner-cvs-sys Thu Aug 31 17:25:04 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA02711 for cvs-sys-outgoing; Thu, 31 Aug 1995 17:25:04 -0700 Received: (from jkh@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA02696 ; Thu, 31 Aug 1995 17:24:59 -0700 Date: Thu, 31 Aug 1995 17:24:59 -0700 From: "Jordan K. Hubbard" Message-Id: <199509010024.RAA02696@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa spigot.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk jkh 95/08/31 17:24:58 Modified: sys/i386/isa spigot.c Log: Jim's latest fixes. Submitted by: james From owner-cvs-sys Thu Aug 31 17:25:22 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA02784 for cvs-sys-outgoing; Thu, 31 Aug 1995 17:25:22 -0700 Received: (from jkh@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id RAA02774 ; Thu, 31 Aug 1995 17:25:20 -0700 Date: Thu, 31 Aug 1995 17:25:20 -0700 From: "Jordan K. Hubbard" Message-Id: <199509010025.RAA02774@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/include spigot.h Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk jkh 95/08/31 17:25:19 Modified: sys/i386/include spigot.h Log: Jim's latest fixes. Submitted by: james From owner-cvs-sys Fri Sep 1 12:09:17 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id MAA14358 for cvs-sys-outgoing; Fri, 1 Sep 1995 12:09:17 -0700 Received: (from jkh@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id MAA14348 ; Fri, 1 Sep 1995 12:09:13 -0700 Date: Fri, 1 Sep 1995 12:09:13 -0700 From: "Jordan K. Hubbard" Message-Id: <199509011909.MAA14348@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/isa/sound ad1848.c dmabuf.c local.h pas2_pcm.c sb16_dsp.c sound.doc soundcard.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk jkh 95/09/01 12:09:12 Modified: sys/i386/isa/sound ad1848.c dmabuf.c local.h pas2_pcm.c sb16_dsp.c sound.doc soundcard.c Log: Jim's attempt to fix the new sound code somewhat. Tested with the pas-16, GUS, and GUS-MAX cards. Sound blaster owners, please test also! Submitted by: Jim Lowe From owner-cvs-sys Fri Sep 1 12:09:52 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id MAA14448 for cvs-sys-outgoing; Fri, 1 Sep 1995 12:09:52 -0700 Received: (from jkh@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id MAA14438 ; Fri, 1 Sep 1995 12:09:51 -0700 Date: Fri, 1 Sep 1995 12:09:51 -0700 From: "Jordan K. Hubbard" Message-Id: <199509011909.MAA14438@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/conf LINT files.i386 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk jkh 95/09/01 12:09:50 Branch: sys/i386/conf RELENG_2_1_0 Modified: sys/i386/conf LINT files.i386 Log: Jim's attempt to fix the new sound code somewhat. Tested with the pas-16, GUS, and GUS-MAX cards. Sound blaster owners, please test also! Submitted by: Jim Lowe From owner-cvs-sys Fri Sep 1 12:55:42 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id MAA16537 for cvs-sys-outgoing; Fri, 1 Sep 1995 12:55:42 -0700 Received: from sequent.kiae.su (sequent.kiae.su [144.206.136.6]) by freefall.FreeBSD.org (8.6.11/8.6.6) with SMTP id MAA16524 ; Fri, 1 Sep 1995 12:55:19 -0700 Received: by sequent.kiae.su id AA06423 (5.65.kiae-2 ); Fri, 1 Sep 1995 23:46:39 +0400 Received: by sequent.KIAE.su (UUMAIL/2.0); Fri, 1 Sep 95 23:46:37 +0400 Received: (from ache@localhost) by astral.msk.su (8.6.8/8.6.6) id XAA00969; Fri, 1 Sep 1995 23:40:13 +0400 To: CVS-commiters@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org, "Jordan K. Hubbard" References: <199509011909.MAA14348@freefall.FreeBSD.org> In-Reply-To: <199509011909.MAA14348@freefall.FreeBSD.org>; from "Jordan K. Hubbard" at Fri, 1 Sep 1995 12:09:13 -0700 Message-Id: Organization: Olahm Ha-Yetzirah Date: Fri, 1 Sep 1995 23:40:13 +0400 (MSD) 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/i386/isa/sound ad1848.c dmabuf.c local.h pas2_pcm.c sb16_dsp.c sound.doc soundcard.c Lines: 23 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Length: 914 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk In message <199509011909.MAA14348@freefall.FreeBSD.org> Jordan K. Hubbard writes: >jkh 95/09/01 12:09:12 > Modified: sys/i386/isa/sound ad1848.c dmabuf.c local.h pas2_pcm.c > sb16_dsp.c sound.doc soundcard.c > Log: > Jim's attempt to fix the new sound code somewhat. Tested with > the pas-16, GUS, and GUS-MAX cards. Sound blaster owners, please > test also! > Submitted by: Jim Lowe Does this stuff goes to original author too? It will be lesser pain, if he put changes into mainstream... BTW, just a reminder: Jordan, you promise me GUS-MAX long time ago... -- Andrey A. Chernov : And I rest so composedly, /Now, in my bed, ache@astral.msk.su : That any beholder /Might fancy me dead - FidoNet: 2:5020/230.3 : Might start at beholding me, /Thinking me dead. RELCOM Team,FreeBSD Team : E.A.Poe From "For Annie" 1849 From owner-cvs-sys Fri Sep 1 12:59:04 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id MAA16711 for cvs-sys-outgoing; Fri, 1 Sep 1995 12:59:04 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id MAA16705 ; Fri, 1 Sep 1995 12:58:55 -0700 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.12/8.6.9) with SMTP id MAA02702; Fri, 1 Sep 1995 12:54:07 -0700 To: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) cc: CVS-commiters@freefall.FreeBSD.org, cvs-sys@freefall.FreeBSD.org, "Jordan K. Hubbard" Subject: Re: cvs commit: src/sys/i386/isa/sound ad1848.c dmabuf.c local.h pas2_pcm.c sb16_dsp.c sound.doc soundcard.c In-reply-to: Your message of "Fri, 01 Sep 1995 23:40:13 +0400." Date: Fri, 01 Sep 1995 12:54:07 -0700 Message-ID: <2700.809985247@time.cdrom.com> From: "Jordan K. Hubbard" Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk > Does this stuff goes to original author too? > It will be lesser pain, if he put changes into mainstream... Jim and Amancio are working on this.. > BTW, just a reminder: Jordan, you promise me GUS-MAX long time ago... I know - that was back when WC was still being generous with hardware and funding, but such times seem to be behind us. If the project ever gets some money of its own, I'll be happy to see what I can do for you. Jordan From owner-cvs-sys Fri Sep 1 13:54:12 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id NAA18364 for cvs-sys-outgoing; Fri, 1 Sep 1995 13:54:12 -0700 Received: (from jkh@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id NAA18343 ; Fri, 1 Sep 1995 13:53:46 -0700 Date: Fri, 1 Sep 1995 13:53:46 -0700 From: "Jordan K. Hubbard" Message-Id: <199509012053.NAA18343@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/conf LINT files.i386 Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk jkh 95/09/01 13:53:45 Modified: sys/i386/conf LINT files.i386 Log: Something got spammed in my 2.2 work tree (don't know how :( ) and had a 2.1 tag, thus sending these two changes into the 2.1 branch instead of -current. Argh. I may bring these changes into the 2.1 anyway (they're benign there) so I'm not going to admin them out of 2.1 for the time being. From owner-cvs-sys Sat Sep 2 00:09:18 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id AAA28861 for cvs-sys-outgoing; Sat, 2 Sep 1995 00:09:18 -0700 Received: (from julian@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id AAA28847 ; Sat, 2 Sep 1995 00:09:03 -0700 Date: Sat, 2 Sep 1995 00:09:03 -0700 From: Julian Elischer Message-Id: <199509020709.AAA28847@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/miscfs/devfs devfs_vnops.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk julian 95/09/02 00:09:03 Modified: sys/miscfs/devfs devfs_vnops.c Log: Submitted by: Julian changes to make it compile again From owner-cvs-sys Sat Sep 2 11:29:01 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id LAA01730 for cvs-sys-outgoing; Sat, 2 Sep 1995 11:29:01 -0700 Received: (from mpp@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id LAA01717 ; Sat, 2 Sep 1995 11:28:49 -0700 Date: Sat, 2 Sep 1995 11:28:49 -0700 From: Mike Pritchard Message-Id: <199509021828.LAA01717@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/miscfs/procfs procfs_vnops.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk mpp 95/09/02 11:28:49 Modified: sys/miscfs/procfs procfs_vnops.c Log: Change procfs_lookup to not allow delete/rename operations to prevent panics when a user tries to remove/rename the contents of /proc/###/*. Obtained from: 4.4BSD-lite2 From owner-cvs-sys Sat Sep 2 13:18:11 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id NAA03413 for cvs-sys-outgoing; Sat, 2 Sep 1995 13:18:11 -0700 Received: (from mpp@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id NAA03397 ; Sat, 2 Sep 1995 13:18:00 -0700 Date: Sat, 2 Sep 1995 13:18:00 -0700 From: Mike Pritchard Message-Id: <199509022018.NAA03397@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/miscfs/fdesc fdesc_vfsops.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk mpp 95/09/02 13:18:00 Modified: sys/miscfs/fdesc fdesc_vfsops.c Log: Correctly initialize the mount stat structure so that fdesc file systems show up in "mount" correctly and so that they can then be unmounted. From owner-cvs-sys Sat Sep 2 13:19:19 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id NAA03533 for cvs-sys-outgoing; Sat, 2 Sep 1995 13:19:19 -0700 Received: (from mpp@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id NAA03521 ; Sat, 2 Sep 1995 13:19:14 -0700 Date: Sat, 2 Sep 1995 13:19:14 -0700 From: Mike Pritchard Message-Id: <199509022019.NAA03521@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/miscfs/fdesc fdesc_vnops.c Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk mpp 95/09/02 13:19:14 Modified: sys/miscfs/fdesc fdesc_vnops.c Log: Do not allow delete/rename lookup request to prevent panics if a user attempts to remove/rename files in a fdesc file system. From owner-cvs-sys Sat Sep 2 22:36:30 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id WAA08339 for cvs-sys-outgoing; Sat, 2 Sep 1995 22:36:30 -0700 Received: (from julian@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id WAA08304 ; Sat, 2 Sep 1995 22:36:15 -0700 Date: Sat, 2 Sep 1995 22:36:15 -0700 From: Julian Elischer Message-Id: <199509030536.WAA08304@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/boot/biosboot bios.S Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk julian 95/09/02 22:36:14 Modified: sys/i386/boot/biosboot bios.S Log: Cosmetic changes to make a comment more nearly reflect reality From owner-cvs-sys Sat Sep 2 22:43:56 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id WAA09215 for cvs-sys-outgoing; Sat, 2 Sep 1995 22:43:56 -0700 Received: (from julian@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id WAA09199 ; Sat, 2 Sep 1995 22:43:52 -0700 Date: Sat, 2 Sep 1995 22:43:52 -0700 From: Julian Elischer Message-Id: <199509030543.WAA09199@freefall.FreeBSD.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/sys devfsext.h kernel.h Sender: cvs-sys-owner@FreeBSD.org Precedence: bulk julian 95/09/02 22:43:51 Modified: sys/i386/i386 autoconf.c cons.c machdep.c mem.c sys/i386/include md_var.h sys/i386/isa fd.c pcaudio.c spkr.c sys/kern init_main.c sys/miscfs/devfs devfs_back.c devfs_proto.h devfs_vfsops.c reproto.sh sys/sys kernel.h Added: sys/sys devfsext.h Log: devfs changes.. changes to allow devices that don't probe (e.g. /dev/mem) to create devfs entries this required giving 'configure' its own SYSINIT entry so we could duck in just before it with a DEVFS init and some device inits.. my devfs now looks like: ./misc ./misc/speaker ./misc/mem ./misc/kmem ./misc/null ./misc/zero ./misc/io ./misc/console ./misc/pcaudio ./misc/pcaudioctl ./disks ./disks/rfloppy ./disks/rfloppy/fd0.1440 ./disks/rfloppy/fd1.1200 ./disks/floppy ./disks/floppy/fd0.1440 ./disks/floppy/fd1.1200 also some sligt cleanups.. DEVFS needs a lot of work but I'm getting back to it..