From owner-freebsd-commit Wed Nov 29 04:39:13 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA09355 for freebsd-commit-outgoing; Wed, 29 Nov 1995 04:39:13 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA09340 for cvs-all-outgoing; Wed, 29 Nov 1995 04:39:03 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA09330 for cvs-sys-outgoing; Wed, 29 Nov 1995 04:39:01 -0800 Received: (from julian@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id EAA09321 ; Wed, 29 Nov 1995 04:38:51 -0800 Date: Wed, 29 Nov 1995 04:38:51 -0800 From: Julian Elischer Message-Id: <199511291238.EAA09321@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/miscfs/specfs spec_vnops.c Sender: owner-commit@FreeBSD.ORG Precedence: bulk julian 95/11/29 04:38:51 Modified: sys/i386/i386 conf.c sys/kern kern_conf.c sys/miscfs/specfs spec_vnops.c Log: #ifdef out nearly the entire file of conf.c when JREMOD is defined add a few safety checks in specfs because now it's possible to get entries in [cd]devsw[] which are ALL NULL so it's better to discover this BEFORE jumping into the d_open() entry.. more check to come later.. this getsthe code to the stage where I can start testing it, even if I haven't caught every little error case... I guess I'll find them quick enough.. Revision Changes Path 1.107 +21 -1 src/sys/i386/i386/conf.c 1.4 +3 -4 src/sys/kern/kern_conf.c 1.19 +9 -1 src/sys/miscfs/specfs/spec_vnops.c