From owner-cvs-sys Sun May 31 03:55:16 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07370 for cvs-sys-outgoing; Sun, 31 May 1998 03:55:16 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA07248; Sun, 31 May 1998 03:54:14 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA09946; Sun, 31 May 1998 03:53:58 -0700 (PDT) Date: Sun, 31 May 1998 03:53:58 -0700 (PDT) Message-Id: <199805311053.DAA09946@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa intr_machdep.c intr_machdep.h sio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/05/31 03:53:57 PDT Modified files: sys/i386/isa intr_machdep.c intr_machdep.h sio.c Log: Converted the ICU-level interrupt tests (3, 5 and 8) in sioprobe() into a test of the irq number, and made failure of this test non-fatal. Removed related unused complications for the APIC_IO case. Removed the no-test3 flag. Deverbosified the failure messages for the other tests. Removed the per-port verbose flag - just use the general verbose flag. Revision Changes Path 1.11 +10 -47 src/sys/i386/isa/intr_machdep.c 1.12 +2 -5 src/sys/i386/isa/intr_machdep.h 1.203 +27 -22 src/sys/i386/isa/sio.c From owner-cvs-sys Sun May 31 10:00:25 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA13925 for cvs-sys-outgoing; Sun, 31 May 1998 10:00:25 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA13850; Sun, 31 May 1998 10:00:01 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA07828; Sun, 31 May 1998 09:59:43 -0700 (PDT) Date: Sun, 31 May 1998 09:59:43 -0700 (PDT) Message-Id: <199805311659.JAA07828@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci if_tl.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1998/05/31 09:59:43 PDT Modified files: sys/pci if_tl.c Log: Add a short delay in the read loop in tl_eeprom_getbyte(). On some systems, you have to allow the delay or else you end up misreading some of the bits. Patch provided by: Yoshihiko Someya Revision Changes Path 1.8 +3 -2 src/sys/pci/if_tl.c From owner-cvs-sys Sun May 31 10:28:41 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA16524 for cvs-sys-outgoing; Sun, 31 May 1998 10:28:41 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA16441; Sun, 31 May 1998 10:28:20 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA07985; Sun, 31 May 1998 10:28:02 -0700 (PDT) Date: Sun, 31 May 1998 10:28:02 -0700 (PDT) Message-Id: <199805311728.KAA07985@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs.h nfs_nqlease.c nfs_serv.c nfs_socket.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c nfs_vnops.c nfsm_subs.h nfsproto.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 10:28:01 PDT Modified files: sys/nfs nfs.h nfs_nqlease.c nfs_serv.c nfs_socket.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c nfs_vnops.c nfsm_subs.h nfsproto.h Log: NFS Jumbo commit part 1. Cosmetic and structural changes only. The aim of this part of commits is to minimize unnecessary differences between the other NFS's of similar origin. Yes, there are gratuitous changes here that the style folks won't like, but it makes the catch-up less difficult. Revision Changes Path 1.37 +9 -9 src/sys/nfs/nfs.h 1.36 +4 -5 src/sys/nfs/nfs_nqlease.c 1.63 +51 -75 src/sys/nfs/nfs_serv.c 1.33 +377 -377 src/sys/nfs/nfs_socket.c 1.56 +43 -2 src/sys/nfs/nfs_subs.c 1.39 +162 -164 src/sys/nfs/nfs_syscalls.c 1.65 +2 -1 src/sys/nfs/nfs_vfsops.c 1.92 +40 -28 src/sys/nfs/nfs_vnops.c 1.17 +16 -15 src/sys/nfs/nfsm_subs.h 1.4 +2 -2 src/sys/nfs/nfsproto.h From owner-cvs-sys Sun May 31 10:29:22 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA16643 for cvs-sys-outgoing; Sun, 31 May 1998 10:29:22 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA16535; Sun, 31 May 1998 10:28:46 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA07998; Sun, 31 May 1998 10:28:26 -0700 (PDT) Date: Sun, 31 May 1998 10:28:26 -0700 (PDT) Message-Id: <199805311728.KAA07998@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/05/31 10:28:26 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/conf GENERIC98 Log: Sync with sys/i386/conf/GENERIC revision 1.77.2.3. Submitted by: Takahashi Yoshihiro Revision Changes Path 1.8.2.23 +12 -14 src/sys/pc98/conf/GENERIC98 From owner-cvs-sys Sun May 31 10:30:08 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA16876 for cvs-sys-outgoing; Sun, 31 May 1998 10:30:08 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA16665; Sun, 31 May 1998 10:29:34 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08024; Sun, 31 May 1998 10:29:16 -0700 (PDT) Date: Sun, 31 May 1998 10:29:16 -0700 (PDT) Message-Id: <199805311729.KAA08024@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf files.pc98 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/05/31 10:29:16 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/conf files.pc98 Log: Sync with sys/i386/conf/files.i386 revision 1.141.2.22. Submitted by: Takahashi Yoshihiro Revision Changes Path 1.9.2.24 +2 -1 src/sys/pc98/conf/files.pc98 From owner-cvs-sys Sun May 31 10:30:53 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17011 for cvs-sys-outgoing; Sun, 31 May 1998 10:30:53 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA16892; Sun, 31 May 1998 10:30:15 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08050; Sun, 31 May 1998 10:29:57 -0700 (PDT) Date: Sun, 31 May 1998 10:29:57 -0700 (PDT) Message-Id: <199805311729.KAA08050@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/i386 trap.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/05/31 10:29:57 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/i386 trap.c Log: Sync with sys/i386/i386/trap.c revision 1.83.2.8. Submitted by: Takahashi Yoshihiro Revision Changes Path 1.8.2.9 +5 -1 src/sys/pc98/i386/trap.c From owner-cvs-sys Sun May 31 10:32:03 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17226 for cvs-sys-outgoing; Sun, 31 May 1998 10:32:03 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17052; Sun, 31 May 1998 10:31:29 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08085; Sun, 31 May 1998 10:31:11 -0700 (PDT) Date: Sun, 31 May 1998 10:31:11 -0700 (PDT) Message-Id: <199805311731.KAA08085@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/i386 userconfig.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/05/31 10:31:11 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/i386 userconfig.c Log: Undeleted dpt driver's entry. Submitted by: Takahashi Yoshihiro Revision Changes Path 1.10.2.21 +3 -2 src/sys/pc98/i386/userconfig.c From owner-cvs-sys Sun May 31 10:32:33 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17307 for cvs-sys-outgoing; Sun, 31 May 1998 10:32:33 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17248; Sun, 31 May 1998 10:32:11 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08111; Sun, 31 May 1998 10:31:53 -0700 (PDT) Date: Sun, 31 May 1998 10:31:53 -0700 (PDT) Message-Id: <199805311731.KAA08111@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 if_ed.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/05/31 10:31:53 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 if_ed.c Log: Cosmetic changes. Submitted by: Takahashi Yoshihiro Revision Changes Path 1.11.2.15 +14 -9 src/sys/pc98/pc98/if_ed.c From owner-cvs-sys Sun May 31 10:33:46 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA17508 for cvs-sys-outgoing; Sun, 31 May 1998 10:33:46 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17370; Sun, 31 May 1998 10:32:57 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08137; Sun, 31 May 1998 10:32:38 -0700 (PDT) Date: Sun, 31 May 1998 10:32:38 -0700 (PDT) Message-Id: <199805311732.KAA08137@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 syscons.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/05/31 10:32:38 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 syscons.c Log: Sync with sys/i386/isa/syscons.c revision 1.182.2.33. Submitted by: Takahashi Yoshihiro Revision Changes Path 1.13.2.30 +185 -34 src/sys/pc98/pc98/syscons.c From owner-cvs-sys Sun May 31 10:36:45 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18008 for cvs-sys-outgoing; Sun, 31 May 1998 10:36:45 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA17546; Sun, 31 May 1998 10:33:58 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08165; Sun, 31 May 1998 10:33:37 -0700 (PDT) Date: Sun, 31 May 1998 10:33:37 -0700 (PDT) Message-Id: <199805311733.KAA08165@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 wd.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/05/31 10:33:37 PDT Modified files: (Branch: RELENG_2_2) sys/pc98/pc98 wd.c Log: - Sync with sys/i386/isa/wd.c. - Cosmetic changes. Submitted by: Takahashi Yoshihiro Revision Changes Path 1.9.2.17 +19 -15 src/sys/pc98/pc98/wd.c From owner-cvs-sys Sun May 31 10:48:56 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA19860 for cvs-sys-outgoing; Sun, 31 May 1998 10:48:56 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA19758; Sun, 31 May 1998 10:48:29 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08278; Sun, 31 May 1998 10:48:11 -0700 (PDT) Date: Sun, 31 May 1998 10:48:11 -0700 (PDT) Message-Id: <199805311748.KAA08278@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs.h nfs_subs.c nfs_vnops.c nfsm_subs.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 10:48:11 PDT Modified files: sys/nfs nfs.h nfs_subs.c nfs_vnops.c nfsm_subs.h Log: Some const's Obtained from: NetBSD Revision Changes Path 1.38 +2 -2 src/sys/nfs/nfs.h 1.57 +2 -2 src/sys/nfs/nfs_subs.c 1.93 +11 -9 src/sys/nfs/nfs_vnops.c 1.18 +2 -2 src/sys/nfs/nfsm_subs.h From owner-cvs-sys Sun May 31 10:55:01 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA20965 for cvs-sys-outgoing; Sun, 31 May 1998 10:55:01 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA20822; Sun, 31 May 1998 10:54:38 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08313; Sun, 31 May 1998 10:54:19 -0700 (PDT) Date: Sun, 31 May 1998 10:54:19 -0700 (PDT) Message-Id: <199805311754.KAA08313@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_serv.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 10:54:19 PDT Modified files: sys/nfs nfs_serv.c Log: Refuse READDIR / READDIRPLUS rpc's for non-directories Obtained from: NetBSD Revision Changes Path 1.64 +9 -1 src/sys/nfs/nfs_serv.c From owner-cvs-sys Sun May 31 10:58:38 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA21832 for cvs-sys-outgoing; Sun, 31 May 1998 10:58:38 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA21642; Sun, 31 May 1998 10:58:03 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA08343; Sun, 31 May 1998 10:57:44 -0700 (PDT) Date: Sun, 31 May 1998 10:57:44 -0700 (PDT) Message-Id: <199805311757.KAA08343@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_socket.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 10:57:44 PDT Modified files: sys/nfs nfs_socket.c Log: Consider for readdir chunk sizes when tuning socket buffer reservations. Obtained from: NetBSD Revision Changes Path 1.34 +5 -3 src/sys/nfs/nfs_socket.c From owner-cvs-sys Sun May 31 11:01:35 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA22548 for cvs-sys-outgoing; Sun, 31 May 1998 11:01:35 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA22381; Sun, 31 May 1998 11:01:06 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08391; Sun, 31 May 1998 11:00:47 -0700 (PDT) Date: Sun, 31 May 1998 11:00:47 -0700 (PDT) Message-Id: <199805311800.LAA08391@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_socket.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:00:47 PDT Modified files: sys/nfs nfs_socket.c Log: Don't log zero length reads, this can happen during normal operation. Obtained from: NetBSD Revision Changes Path 1.35 +9 -1 src/sys/nfs/nfs_socket.c From owner-cvs-sys Sun May 31 11:03:47 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA23032 for cvs-sys-outgoing; Sun, 31 May 1998 11:03:47 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA22873; Sun, 31 May 1998 11:03:16 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08418; Sun, 31 May 1998 11:02:57 -0700 (PDT) Date: Sun, 31 May 1998 11:02:57 -0700 (PDT) Message-Id: <199805311802.LAA08418@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_socket.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:02:57 PDT Modified files: sys/nfs nfs_socket.c Log: When we can't reconnect a socket, don't forget to unlock before retrying or we can deadlock. Obtained from: NetBSD Revision Changes Path 1.36 +4 -1 src/sys/nfs/nfs_socket.c From owner-cvs-sys Sun May 31 11:06:58 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA23452 for cvs-sys-outgoing; Sun, 31 May 1998 11:06:58 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA23343; Sun, 31 May 1998 11:06:27 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08450; Sun, 31 May 1998 11:06:09 -0700 (PDT) Date: Sun, 31 May 1998 11:06:09 -0700 (PDT) Message-Id: <199805311806.LAA08450@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_socket.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:06:09 PDT Modified files: sys/nfs nfs_socket.c Log: oops, nfs_msg() is called from client code too. Revision Changes Path 1.37 +4 -1 src/sys/nfs/nfs_socket.c From owner-cvs-sys Sun May 31 11:08:50 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA23694 for cvs-sys-outgoing; Sun, 31 May 1998 11:08:50 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA23623; Sun, 31 May 1998 11:08:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08476; Sun, 31 May 1998 11:08:10 -0700 (PDT) Date: Sun, 31 May 1998 11:08:10 -0700 (PDT) Message-Id: <199805311808.LAA08476@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_socket.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:08:10 PDT Modified files: sys/nfs nfs_socket.c Log: Missed a cosmetic change that the other BSD's have. Revision Changes Path 1.38 +2 -2 src/sys/nfs/nfs_socket.c From owner-cvs-sys Sun May 31 11:11:09 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA23982 for cvs-sys-outgoing; Sun, 31 May 1998 11:11:09 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA23727; Sun, 31 May 1998 11:09:37 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08503; Sun, 31 May 1998 11:09:19 -0700 (PDT) Date: Sun, 31 May 1998 11:09:19 -0700 (PDT) Message-Id: <199805311809.LAA08503@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_subs.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:09:19 PDT Modified files: sys/nfs nfs_subs.c Log: We have gained 2 more errno's, add them to the NFSv2 mapping table. Revision Changes Path 1.58 +2 -2 src/sys/nfs/nfs_subs.c From owner-cvs-sys Sun May 31 11:11:49 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA24091 for cvs-sys-outgoing; Sun, 31 May 1998 11:11:49 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA23999; Sun, 31 May 1998 11:11:22 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08537; Sun, 31 May 1998 11:11:04 -0700 (PDT) Date: Sun, 31 May 1998 11:11:04 -0700 (PDT) Message-Id: <199805311811.LAA08537@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_subs.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:11:04 PDT Modified files: sys/nfs nfs_subs.c Log: #ifdef a diagnostic panic, plus another missed costmetic change. Obtained from: NetBSD Revision Changes Path 1.59 +4 -2 src/sys/nfs/nfs_subs.c From owner-cvs-sys Sun May 31 11:20:43 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA24941 for cvs-sys-outgoing; Sun, 31 May 1998 11:20:43 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA24842; Sun, 31 May 1998 11:20:06 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08571; Sun, 31 May 1998 11:19:44 -0700 (PDT) Date: Sun, 31 May 1998 11:19:44 -0700 (PDT) Message-Id: <199805311819.LAA08571@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vfsops.c nfsm_subs.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:19:44 PDT Modified files: sys/nfs nfs_vfsops.c nfsm_subs.h Log: Don't try and free mrep twice on some error conditions. Obtained from: NetBSD Revision Changes Path 1.66 +6 -5 src/sys/nfs/nfs_vfsops.c 1.19 +5 -2 src/sys/nfs/nfsm_subs.h From owner-cvs-sys Sun May 31 11:24:02 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA25312 for cvs-sys-outgoing; Sun, 31 May 1998 11:24:02 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA25183; Sun, 31 May 1998 11:23:43 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08605; Sun, 31 May 1998 11:23:25 -0700 (PDT) Date: Sun, 31 May 1998 11:23:25 -0700 (PDT) Message-Id: <199805311823.LAA08605@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:23:25 PDT Modified files: sys/nfs nfs_vnops.c Log: #ifdef a diagnostic printf Obtained from: NetBSD Revision Changes Path 1.94 +3 -1 src/sys/nfs/nfs_vnops.c From owner-cvs-sys Sun May 31 11:26:26 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA25772 for cvs-sys-outgoing; Sun, 31 May 1998 11:26:26 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA25542; Sun, 31 May 1998 11:25:52 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08634; Sun, 31 May 1998 11:25:34 -0700 (PDT) Date: Sun, 31 May 1998 11:25:34 -0700 (PDT) Message-Id: <199805311825.LAA08634@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:25:33 PDT Modified files: sys/nfs nfs_vnops.c Log: Don't leak an mbuf when a write rpc returns zero bytes written. Obtained from: NetBSD Revision Changes Path 1.95 +2 -1 src/sys/nfs/nfs_vnops.c From owner-cvs-sys Sun May 31 11:29:07 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA26144 for cvs-sys-outgoing; Sun, 31 May 1998 11:29:07 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA25813; Sun, 31 May 1998 11:27:26 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08660; Sun, 31 May 1998 11:27:08 -0700 (PDT) Date: Sun, 31 May 1998 11:27:08 -0700 (PDT) Message-Id: <199805311827.LAA08660@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:27:07 PDT Modified files: sys/nfs nfs_vnops.c Log: When a write rpc returns an error, break the loop. Obtained from: NetBSD Revision Changes Path 1.96 +3 -1 src/sys/nfs/nfs_vnops.c From owner-cvs-sys Sun May 31 11:29:44 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA26228 for cvs-sys-outgoing; Sun, 31 May 1998 11:29:44 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA26117; Sun, 31 May 1998 11:29:04 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08686; Sun, 31 May 1998 11:28:46 -0700 (PDT) Date: Sun, 31 May 1998 11:28:46 -0700 (PDT) Message-Id: <199805311828.LAA08686@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:28:46 PDT Modified files: sys/nfs nfs_vnops.c Log: Don't let the user try and unlink() a directory on a NFS server. Obtained from: NetBSD Revision Changes Path 1.97 +4 -2 src/sys/nfs/nfs_vnops.c From owner-cvs-sys Sun May 31 11:32:01 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA26617 for cvs-sys-outgoing; Sun, 31 May 1998 11:32:01 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA26485; Sun, 31 May 1998 11:31:01 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08720; Sun, 31 May 1998 11:30:42 -0700 (PDT) Date: Sun, 31 May 1998 11:30:42 -0700 (PDT) Message-Id: <199805311830.LAA08720@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:30:42 PDT Modified files: sys/nfs nfs_vnops.c Log: Don't let the user try "rmdir ." Obtained from: NetBSD Revision Changes Path 1.98 +3 -1 src/sys/nfs/nfs_vnops.c From owner-cvs-sys Sun May 31 11:33:20 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA26873 for cvs-sys-outgoing; Sun, 31 May 1998 11:33:20 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA26689; Sun, 31 May 1998 11:32:42 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08748; Sun, 31 May 1998 11:32:23 -0700 (PDT) Date: Sun, 31 May 1998 11:32:23 -0700 (PDT) Message-Id: <199805311832.LAA08748@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfsnode.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:32:23 PDT Modified files: sys/nfs nfsnode.h Log: NFS_SMALLFH is defined in nfsproto.h, not sys/mount.h Obtained from: NetBSD Revision Changes Path 1.26 +2 -2 src/sys/nfs/nfsnode.h From owner-cvs-sys Sun May 31 11:38:25 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA27656 for cvs-sys-outgoing; Sun, 31 May 1998 11:38:25 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA27417; Sun, 31 May 1998 11:37:41 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08781; Sun, 31 May 1998 11:37:23 -0700 (PDT) Date: Sun, 31 May 1998 11:37:23 -0700 (PDT) Message-Id: <199805311837.LAA08781@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/sys socketvar.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:37:23 PDT Modified files: sys/sys socketvar.h Log: Have the sorwakeup and sowwakeup check the upcall flags. Obtained from: NetBSD Revision Changes Path 1.27 +16 -8 src/sys/sys/socketvar.h From owner-cvs-sys Sun May 31 11:39:39 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA27796 for cvs-sys-outgoing; Sun, 31 May 1998 11:39:39 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA27696; Sun, 31 May 1998 11:39:02 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08809; Sun, 31 May 1998 11:38:44 -0700 (PDT) Date: Sun, 31 May 1998 11:38:44 -0700 (PDT) Message-Id: <199805311838.LAA08809@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern uipc_socket2.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:38:44 PDT Modified files: sys/kern uipc_socket2.c Log: Have the wakeup routine do the upcall if needed. Obtained from: NetBSD Revision Changes Path 1.36 +3 -1 src/sys/kern/uipc_socket2.c From owner-cvs-sys Sun May 31 11:45:06 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA28794 for cvs-sys-outgoing; Sun, 31 May 1998 11:45:06 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA28399; Sun, 31 May 1998 11:43:10 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08845; Sun, 31 May 1998 11:42:51 -0700 (PDT) Date: Sun, 31 May 1998 11:42:51 -0700 (PDT) Message-Id: <199805311842.LAA08845@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet tcp_input.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:42:51 PDT Modified files: sys/netinet tcp_input.c Log: Let the sowwakeup macro decide when to call sowakeup rather than have tcp "know" about it. A pending upcall would be missed, eg: used by NFS. Obtained from: NetBSD Revision Changes Path 1.78 +3 -5 src/sys/netinet/tcp_input.c From owner-cvs-sys Sun May 31 11:48:04 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA29206 for cvs-sys-outgoing; Sun, 31 May 1998 11:48:04 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA29024; Sun, 31 May 1998 11:46:26 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA08877; Sun, 31 May 1998 11:46:08 -0700 (PDT) Date: Sun, 31 May 1998 11:46:08 -0700 (PDT) Message-Id: <199805311846.LAA08877@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_syscalls.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 11:46:07 PDT Modified files: sys/nfs nfs_syscalls.c Log: Use the new SB_UPCALL flag, Obtained from: NetBSD (but I changed the flag clear order in case). Revision Changes Path 1.40 +4 -1 src/sys/nfs/nfs_syscalls.c From owner-cvs-sys Sun May 31 12:01:03 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA00513 for cvs-sys-outgoing; Sun, 31 May 1998 12:01:03 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA00426; Sun, 31 May 1998 12:00:38 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA08942; Sun, 31 May 1998 12:00:20 -0700 (PDT) Date: Sun, 31 May 1998 12:00:20 -0700 (PDT) Message-Id: <199805311900.MAA08942@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c nfsm_subs.h nfsproto.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:00:20 PDT Modified files: sys/nfs nfs_vnops.c nfsm_subs.h nfsproto.h Log: Don't pass a second copy of the uid/gid in with the v2/v3 sattr structures, it just makes more work. We pass a copy of the uid/gid with the credentials. (although, this may need to be revisited if a non AUTHUNIX authentication method (such as NFSKERB) ever gets implemented). Obtained from: NetBSD Revision Changes Path 1.99 +19 -19 src/sys/nfs/nfs_vnops.c 1.20 +4 -6 src/sys/nfs/nfsm_subs.h 1.5 +3 -5 src/sys/nfs/nfsproto.h From owner-cvs-sys Sun May 31 12:08:30 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA01263 for cvs-sys-outgoing; Sun, 31 May 1998 12:08:30 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA01178; Sun, 31 May 1998 12:08:09 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA08974; Sun, 31 May 1998 12:07:50 -0700 (PDT) Date: Sun, 31 May 1998 12:07:50 -0700 (PDT) Message-Id: <199805311907.MAA08974@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_serv.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:07:49 PDT Modified files: sys/nfs nfs_serv.c Log: NetBSD has a comment that Solaris 2.5 doesn't do verifiers correctly, we have weakened this test already for Digital Unix, so it may be enough for Solaris. It needs to be checked again. Obtained from: NetBSD Revision Changes Path 1.65 +7 -1 src/sys/nfs/nfs_serv.c From owner-cvs-sys Sun May 31 12:12:15 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA01545 for cvs-sys-outgoing; Sun, 31 May 1998 12:12:15 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA01428; Sun, 31 May 1998 12:11:11 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09008; Sun, 31 May 1998 12:10:53 -0700 (PDT) Date: Sun, 31 May 1998 12:10:53 -0700 (PDT) Message-Id: <199805311910.MAA09008@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_serv.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:10:53 PDT Modified files: sys/nfs nfs_serv.c Log: Hide whiteouts from NFS, since the protocol doesn't support them. Obtained from: NetBSD Revision Changes Path 1.66 +7 -5 src/sys/nfs/nfs_serv.c From owner-cvs-sys Sun May 31 12:17:04 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA02182 for cvs-sys-outgoing; Sun, 31 May 1998 12:17:04 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA01932; Sun, 31 May 1998 12:16:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09041; Sun, 31 May 1998 12:16:10 -0700 (PDT) Date: Sun, 31 May 1998 12:16:10 -0700 (PDT) Message-Id: <199805311916.MAA09041@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_subs.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:16:09 PDT Modified files: sys/nfs nfs_subs.c Log: Prototype support for selectively allowing non-reserved ports on a per export basis. Needs userland support yet. Obtained from: NetBSD Revision Changes Path 1.60 +14 -1 src/sys/nfs/nfs_subs.c From owner-cvs-sys Sun May 31 12:22:42 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA03204 for cvs-sys-outgoing; Sun, 31 May 1998 12:22:42 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA02815; Sun, 31 May 1998 12:21:04 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09077; Sun, 31 May 1998 12:20:45 -0700 (PDT) Date: Sun, 31 May 1998 12:20:45 -0700 (PDT) Message-Id: <199805311920.MAA09077@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vfsops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:20:45 PDT Modified files: sys/nfs nfs_vfsops.c Log: Don't blindly accept the server's preferences if they are too small. Obtained from: NetBSD Revision Changes Path 1.67 +3 -3 src/sys/nfs/nfs_vfsops.c From owner-cvs-sys Sun May 31 12:26:08 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04220 for cvs-sys-outgoing; Sun, 31 May 1998 12:26:08 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA03789; Sun, 31 May 1998 12:24:42 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09103; Sun, 31 May 1998 12:24:21 -0700 (PDT) Date: Sun, 31 May 1998 12:24:21 -0700 (PDT) Message-Id: <199805311924.MAA09103@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:24:20 PDT Modified files: sys/nfs nfs_vnops.c Log: Don't silently fail to set file flags. Obtained from: NetBSD Revision Changes Path 1.100 +8 -1 src/sys/nfs/nfs_vnops.c From owner-cvs-sys Sun May 31 12:29:31 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA05161 for cvs-sys-outgoing; Sun, 31 May 1998 12:29:31 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA05005; Sun, 31 May 1998 12:28:36 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09132; Sun, 31 May 1998 12:28:17 -0700 (PDT) Date: Sun, 31 May 1998 12:28:17 -0700 (PDT) Message-Id: <199805311928.MAA09132@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:28:17 PDT Modified files: sys/nfs nfs_vnops.c Log: Fully fill in nfsv2 write rpc requests rather than leaving garbage. Obtained from: NetBSD Revision Changes Path 1.101 +11 -4 src/sys/nfs/nfs_vnops.c From owner-cvs-sys Sun May 31 12:30:25 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA05405 for cvs-sys-outgoing; Sun, 31 May 1998 12:30:25 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA05215; Sun, 31 May 1998 12:29:49 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09159; Sun, 31 May 1998 12:29:30 -0700 (PDT) Date: Sun, 31 May 1998 12:29:30 -0700 (PDT) Message-Id: <199805311929.MAA09159@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:29:30 PDT Modified files: sys/nfs nfs_vnops.c Log: xdr encode -1 properly. Obtained from: NetBSD Revision Changes Path 1.102 +2 -2 src/sys/nfs/nfs_vnops.c From owner-cvs-sys Sun May 31 12:44:38 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA07388 for cvs-sys-outgoing; Sun, 31 May 1998 12:44:38 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA07157; Sun, 31 May 1998 12:43:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09215; Sun, 31 May 1998 12:43:37 -0700 (PDT) Date: Sun, 31 May 1998 12:43:37 -0700 (PDT) Message-Id: <199805311943.MAA09215@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_serv.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:43:36 PDT Modified files: sys/nfs nfs_serv.c Log: Cut-n-paste glitch Revision Changes Path 1.67 +2 -2 src/sys/nfs/nfs_serv.c From owner-cvs-sys Sun May 31 12:50:26 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA08372 for cvs-sys-outgoing; Sun, 31 May 1998 12:50:26 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA08105; Sun, 31 May 1998 12:49:52 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA09251; Sun, 31 May 1998 12:49:33 -0700 (PDT) Date: Sun, 31 May 1998 12:49:33 -0700 (PDT) Message-Id: <199805311949.MAA09251@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs.h nfs_socket.c nfs_vfsops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 12:49:33 PDT Modified files: sys/nfs nfs.h nfs_socket.c nfs_vfsops.c Log: Support 'mount -u' remounts. This may require disconnecting and rebinding the socket. Certain mode changes are not allowed. Obtained from: NetBSD Revision Changes Path 1.39 +2 -1 src/sys/nfs/nfs.h 1.39 +14 -1 src/sys/nfs/nfs_socket.c 1.68 +158 -102 src/sys/nfs/nfs_vfsops.c From owner-cvs-sys Sun May 31 13:10:30 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA11274 for cvs-sys-outgoing; Sun, 31 May 1998 13:10:30 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA11038; Sun, 31 May 1998 13:09:22 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA09338; Sun, 31 May 1998 13:09:03 -0700 (PDT) Date: Sun, 31 May 1998 13:09:03 -0700 (PDT) Message-Id: <199805312009.NAA09338@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs.h nfs_nqlease.c nfs_serv.c nfs_socket.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c nfs_vnops.c nfsm_subs.h nfsproto.h nfsrtt.h nfsrvcache.h nqnfs.h rpcv2.h xdr_subs.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/05/31 13:09:03 PDT Modified files: sys/nfs nfs.h nfs_nqlease.c nfs_serv.c nfs_socket.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c nfs_vnops.c nfsm_subs.h nfsproto.h nfsrtt.h nfsrvcache.h nqnfs.h rpcv2.h xdr_subs.h Log: For the on-the-wire protocol, u_long -> u_int32_t; long -> int32_t; int -> int32_t; u_short -> u_int16_t. Also, use mode_t instead of u_short for storing modes (mode_t is a u_int16_t). Obtained from: NetBSD Revision Changes Path 1.40 +10 -10 src/sys/nfs/nfs.h 1.37 +28 -28 src/sys/nfs/nfs_nqlease.c 1.68 +100 -100 src/sys/nfs/nfs_serv.c 1.40 +58 -58 src/sys/nfs/nfs_socket.c 1.61 +35 -32 src/sys/nfs/nfs_subs.c 1.41 +15 -15 src/sys/nfs/nfs_syscalls.c 1.69 +21 -21 src/sys/nfs/nfs_vfsops.c 1.103 +102 -96 src/sys/nfs/nfs_vnops.c 1.21 +35 -35 src/sys/nfs/nfsm_subs.h 1.6 +57 -57 src/sys/nfs/nfsproto.h 1.9 +2 -2 src/sys/nfs/nfsrtt.h 1.11 +2 -2 src/sys/nfs/nfsrvcache.h 1.16 +8 -8 src/sys/nfs/nqnfs.h 1.9 +9 -9 src/sys/nfs/rpcv2.h 1.10 +7 -7 src/sys/nfs/xdr_subs.h From owner-cvs-sys Sun May 31 15:42:17 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA08020 for cvs-sys-outgoing; Sun, 31 May 1998 15:42:17 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA07747; Sun, 31 May 1998 15:41:11 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA09788; Sun, 31 May 1998 15:40:51 -0700 (PDT) Date: Sun, 31 May 1998 15:40:51 -0700 (PDT) Message-Id: <199805312240.PAA09788@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386 Makefile Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk steve 1998/05/31 15:40:51 PDT Modified files: sys/i386 Makefile Log: Make this ${.OBJDIR} and ${.CURDIR} aware. PR: 2565 Revision Changes Path 1.5 +13 -8 src/sys/i386/Makefile From owner-cvs-sys Sun May 31 15:42:45 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA08209 for cvs-sys-outgoing; Sun, 31 May 1998 15:42:45 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA07886; Sun, 31 May 1998 15:42:05 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA09818; Sun, 31 May 1998 15:41:44 -0700 (PDT) Date: Sun, 31 May 1998 15:41:44 -0700 (PDT) Message-Id: <199805312241.PAA09818@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386 Makefile Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk steve 1998/05/31 15:41:44 PDT Modified files: (Branch: RELENG_2_2) sys/i386 Makefile Log: MFC: ${.OBJDIR} and ${.CURDIR} aware Revision Changes Path 1.2.16.1 +13 -8 src/sys/i386/Makefile From owner-cvs-sys Sun May 31 16:24:06 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12137 for cvs-sys-outgoing; Sun, 31 May 1998 16:24:06 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freebie.lemis.com (freebie.lemis.com [139.130.136.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA11899; Sun, 31 May 1998 16:22:33 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.0/8.9.0) id IAA25315; Mon, 1 Jun 1998 08:52:31 +0930 (CST) Message-ID: <19980601085230.E22406@freebie.lemis.com> Date: Mon, 1 Jun 1998 08:52:30 +0930 From: Greg Lehey To: Bruce Evans , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/isa intr_machdep.c intr_machdep.h sio.c References: <199805311053.DAA09946@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805311053.DAA09946@freefall.freebsd.org>; from Bruce Evans on Sun, May 31, 1998 at 03:53:58AM -0700 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Sun, 31 May 1998 at 3:53:58 -0700, Bruce Evans wrote: > bde 1998/05/31 03:53:57 PDT > > Modified files: > sys/i386/isa intr_machdep.c intr_machdep.h sio.c > Log: > Converted the ICU-level interrupt tests (3, 5 and 8) in sioprobe() into > a test of the irq number, and made failure of this test non-fatal. > Removed related unused complications for the APIC_IO case. Removed the > no-test3 flag. Is this intended to be a partial or a complete solution to the ALi sio problems? Greg -- See complete headers for address and phone numbers finger grog@lemis.com for PGP public key From owner-cvs-sys Sun May 31 17:23:29 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22670 for cvs-sys-outgoing; Sun, 31 May 1998 17:23:29 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22550; Sun, 31 May 1998 17:23:00 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id KAA21718; Mon, 1 Jun 1998 10:22:59 +1000 Date: Mon, 1 Jun 1998 10:22:59 +1000 From: Bruce Evans Message-Id: <199806010022.KAA21718@godzilla.zeta.org.au> To: bde@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, grog@lemis.com Subject: Re: cvs commit: src/sys/i386/isa intr_machdep.c intr_machdep.h sio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >> Log: >> Converted the ICU-level interrupt tests (3, 5 and 8) in sioprobe() into >> a test of the irq number, and made failure of this test non-fatal. >> Removed related unused complications for the APIC_IO case. Removed the >> no-test3 flag. > >Is this intended to be a partial or a complete solution to the ALi sio >problems? No, I don't even know what an ALi is. Bruce From owner-cvs-sys Sun May 31 17:39:04 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24624 for cvs-sys-outgoing; Sun, 31 May 1998 17:39:04 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freebie.lemis.com (freebie.lemis.com [139.130.136.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24504; Sun, 31 May 1998 17:38:17 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.0/8.9.0) id KAA00268; Mon, 1 Jun 1998 10:08:14 +0930 (CST) Message-ID: <19980601100814.U22406@freebie.lemis.com> Date: Mon, 1 Jun 1998 10:08:14 +0930 From: Greg Lehey To: Bruce Evans , bde@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/isa intr_machdep.c intr_machdep.h sio.c References: <199806010022.KAA21718@godzilla.zeta.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199806010022.KAA21718@godzilla.zeta.org.au>; from Bruce Evans on Mon, Jun 01, 1998 at 10:22:59AM +1000 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Mon, 1 June 1998 at 10:22:59 +1000, Bruce Evans wrote: >>> Log: >>> Converted the ICU-level interrupt tests (3, 5 and 8) in sioprobe() into >>> a test of the irq number, and made failure of this test non-fatal. >>> Removed related unused complications for the APIC_IO case. Removed the >>> no-test3 flag. >> >> Is this intended to be a partial or a complete solution to the ALi sio >> problems? > > No, I don't even know what an ALi is. So how can you be sure it doesn't address the problem? This is the "Serial Ports not recognized on boot" syndrome we've been seeing. In all cases, an ALi UART was involved. Your changes look suspiciously like they're in that area, but I didn't know if they're complete yet, or even addressing exactly this problem. I still don't. Greg -- See complete headers for address and phone numbers finger grog@lemis.com for PGP public key From owner-cvs-sys Sun May 31 17:48:41 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA25799 for cvs-sys-outgoing; Sun, 31 May 1998 17:48:41 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.15.68.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA25762; Sun, 31 May 1998 17:48:22 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id KAA23374; Mon, 1 Jun 1998 10:48:20 +1000 Date: Mon, 1 Jun 1998 10:48:20 +1000 From: Bruce Evans Message-Id: <199806010048.KAA23374@godzilla.zeta.org.au> To: bde@FreeBSD.ORG, bde@zeta.org.au, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, grog@lemis.com Subject: Re: cvs commit: src/sys/i386/isa intr_machdep.c intr_machdep.h sio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >>>> Log: >>>> Converted the ICU-level interrupt tests (3, 5 and 8) in sioprobe() into >>>> a test of the irq number, and made failure of this test non-fatal. >>>> Removed related unused complications for the APIC_IO case. Removed the >>>> no-test3 flag. >>> >>> Is this intended to be a partial or a complete solution to the ALi sio >>> problems? >> >> No, I don't even know what an ALi is. > >So how can you be sure it doesn't address the problem? > >This is the "Serial Ports not recognized on boot" syndrome we've been >seeing. In all cases, an ALi UART was involved. Your changes look >suspiciously like they're in that area, but I didn't know if they're >complete yet, or even addressing exactly this problem. I still don't. I never claimed that they did. They should fix a problem on one IWill system that I tested, but this version has only been tested on systems with NEC-compatible UARTs. Bruce From owner-cvs-sys Sun May 31 17:54:16 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA26770 for cvs-sys-outgoing; Sun, 31 May 1998 17:54:16 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freebie.lemis.com (freebie.lemis.com [139.130.136.133]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA26553; Sun, 31 May 1998 17:53:31 -0700 (PDT) (envelope-from grog@freebie.lemis.com) Received: (from grog@localhost) by freebie.lemis.com (8.9.0/8.9.0) id KAA01248; Mon, 1 Jun 1998 10:23:27 +0930 (CST) Message-ID: <19980601102327.X22406@freebie.lemis.com> Date: Mon, 1 Jun 1998 10:23:27 +0930 From: Greg Lehey To: Bruce Evans , bde@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sys/i386/isa intr_machdep.c intr_machdep.h sio.c References: <199806010048.KAA23374@godzilla.zeta.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199806010048.KAA23374@godzilla.zeta.org.au>; from Bruce Evans on Mon, Jun 01, 1998 at 10:48:20AM +1000 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Mon, 1 June 1998 at 10:48:20 +1000, Bruce Evans wrote: >>>>> Log: >>>>> Converted the ICU-level interrupt tests (3, 5 and 8) in sioprobe() into >>>>> a test of the irq number, and made failure of this test non-fatal. >>>>> Removed related unused complications for the APIC_IO case. Removed the >>>>> no-test3 flag. >>>> >>>> Is this intended to be a partial or a complete solution to the ALi sio >>>> problems? >>> >>> No, I don't even know what an ALi is. >> >> So how can you be sure it doesn't address the problem? >> >> This is the "Serial Ports not recognized on boot" syndrome we've been >> seeing. In all cases, an ALi UART was involved. Your changes look >> suspiciously like they're in that area, but I didn't know if they're >> complete yet, or even addressing exactly this problem. I still don't. > > I never claimed that they did. They should fix a problem on one IWill > system that I tested, but this version has only been tested on systems > with NEC-compatible UARTs. OK, so it does address the problem? I could have tested it here if you had told me. I'll do it Real Soon Now. Greg -- See complete headers for address and phone numbers finger grog@lemis.com for PGP public key From owner-cvs-sys Sun May 31 20:44:42 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20526 for cvs-sys-outgoing; Sun, 31 May 1998 20:44:42 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20179; Sun, 31 May 1998 20:43:19 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA10928; Sun, 31 May 1998 20:42:57 -0700 (PDT) Date: Sun, 31 May 1998 20:42:57 -0700 (PDT) Message-Id: <199806010342.UAA10928@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi sctarg.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk gibbs 1998/05/31 20:42:57 PDT Modified files: (Branch: RELENG_2_2) sys/scsi sctarg.c Log: Convert to using the bufq macros. Added sctargattach to initialize the bufq. Revision Changes Path 1.17.2.1 +23 -12 src/sys/scsi/sctarg.c From owner-cvs-sys Sun May 31 20:45:27 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20621 for cvs-sys-outgoing; Sun, 31 May 1998 20:45:27 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20558; Sun, 31 May 1998 20:45:18 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) From: "Justin T. Gibbs" Received: (from gibbs@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA10978; Sun, 31 May 1998 20:44:57 -0700 (PDT) Date: Sun, 31 May 1998 20:44:57 -0700 (PDT) Message-Id: <199806010344.UAA10978@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi sctarg.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk gibbs 1998/05/31 20:44:57 PDT Modified files: sys/scsi sctarg.c Log: Add sctargattach that initializes the bufq data structure. Revision Changes Path 1.25 +21 -9 src/sys/scsi/sctarg.c From owner-cvs-sys Mon Jun 1 00:24:08 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16161 for cvs-sys-outgoing; Mon, 1 Jun 1998 00:24:08 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA16067; Mon, 1 Jun 1998 00:23:50 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA12037; Mon, 1 Jun 1998 00:23:27 -0700 (PDT) Date: Mon, 1 Jun 1998 00:23:27 -0700 (PDT) Message-Id: <199806010723.AAA12037@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nqnfs.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/06/01 00:23:27 PDT Modified files: sys/nfs nqnfs.h Log: Hide more kernel stuff from userland. This stops nethostaddr etc being wanted by mount_nfs.c. Revision Changes Path 1.17 +2 -2 src/sys/nfs/nqnfs.h From owner-cvs-sys Mon Jun 1 03:02:14 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07011 for cvs-sys-outgoing; Mon, 1 Jun 1998 03:02:14 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA06793; Mon, 1 Jun 1998 03:01:55 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA12566; Mon, 1 Jun 1998 03:01:32 -0700 (PDT) Date: Mon, 1 Jun 1998 03:01:32 -0700 (PDT) Message-Id: <199806011001.DAA12566@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vfsops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/06/01 03:01:32 PDT Modified files: sys/nfs nfs_vfsops.c Log: Preset the maximum file size before we get to nfs_fsinfo(), based on an (over?) conservative assumption about what the client can store in it's buffer cache using a signed 32-bit 512-byte block number index. Otherwise it's possible for some file access when maxfilesize = 0 (eg: /usr is nfs mounted and doing an execve()) Pointed out by: bde XXX It might make sense to do a preemptive nfs_fsinfo() call at mount time. Revision Changes Path 1.70 +14 -8 src/sys/nfs/nfs_vfsops.c From owner-cvs-sys Mon Jun 1 04:00:31 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA13975 for cvs-sys-outgoing; Mon, 1 Jun 1998 04:00:31 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA13717; Mon, 1 Jun 1998 03:59:49 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA12796; Mon, 1 Jun 1998 03:59:25 -0700 (PDT) Date: Mon, 1 Jun 1998 03:59:25 -0700 (PDT) Message-Id: <199806011059.DAA12796@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/06/01 03:59:25 PDT Modified files: sys/nfs nfs_vnops.c Log: readlink() returns EINVAL rather than EPERM if called on a non-symlink. Revision Changes Path 1.104 +2 -2 src/sys/nfs/nfs_vnops.c From owner-cvs-sys Mon Jun 1 04:08:07 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA15897 for cvs-sys-outgoing; Mon, 1 Jun 1998 04:08:07 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA15788; Mon, 1 Jun 1998 04:07:41 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA12973; Mon, 1 Jun 1998 04:07:17 -0700 (PDT) Date: Mon, 1 Jun 1998 04:07:17 -0700 (PDT) Message-Id: <199806011107.EAA12973@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_vfsops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/06/01 04:07:17 PDT Modified files: sys/nfs nfs_vfsops.c Log: Fix post-test pre-commit cleanup typo. Revision Changes Path 1.71 +2 -2 src/sys/nfs/nfs_vfsops.c From owner-cvs-sys Mon Jun 1 04:33:42 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA20289 for cvs-sys-outgoing; Mon, 1 Jun 1998 04:33:42 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA20154; Mon, 1 Jun 1998 04:33:18 -0700 (PDT) (envelope-from peter@FreeBSD.org) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA13056; Mon, 1 Jun 1998 04:32:54 -0700 (PDT) Date: Mon, 1 Jun 1998 04:32:54 -0700 (PDT) Message-Id: <199806011132.EAA13056@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/nfs nfs_bio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1998/06/01 04:32:54 PDT Modified files: sys/nfs nfs_bio.c Log: Make sure we go a nfs_fsinfo() in get/putpages before calling readrpc/writerpc, since they assume it's already been done. This could break if the first read/write access to a nfs filesystem was an exec() or mmap() instead of a read(), write() syscall. (or statfs()). nfs_getpages() could return an errno (EOPNOTSUPP) instead of a VM_PAGER_* return code. Some layout tweaks for the get/putpages code. Revision Changes Path 1.58 +71 -31 src/sys/nfs/nfs_bio.c From owner-cvs-sys Mon Jun 1 05:41:09 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA27792 for cvs-sys-outgoing; Mon, 1 Jun 1998 05:41:09 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA27695; Mon, 1 Jun 1998 05:40:49 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA13379; Mon, 1 Jun 1998 05:40:25 -0700 (PDT) Date: Mon, 1 Jun 1998 05:40:25 -0700 (PDT) Message-Id: <199806011240.FAA13379@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 sio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/06/01 05:40:25 PDT Modified files: sys/pc98/pc98 sio.c Log: Sync with sys/i386/isa/sio.c revision 1.203. Revision Changes Path 1.58 +28 -23 src/sys/pc98/pc98/sio.c From owner-cvs-sys Mon Jun 1 12:45:45 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA14453 for cvs-sys-outgoing; Mon, 1 Jun 1998 12:45:45 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA14343; Mon, 1 Jun 1998 12:45:21 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA12170; Mon, 1 Jun 1998 12:44:55 -0700 (PDT) Date: Mon, 1 Jun 1998 12:44:55 -0700 (PDT) Message-Id: <199806011944.MAA12170@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/scsi uk.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/01 12:44:55 PDT Modified files: sys/scsi uk.c Log: Allow devfs to support the 'uk' device Submitted by: Micha Class Revision Changes Path 1.19 +27 -3 src/sys/scsi/uk.c From owner-cvs-sys Mon Jun 1 14:56:10 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17996 for cvs-sys-outgoing; Mon, 1 Jun 1998 14:56:10 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA17699; Mon, 1 Jun 1998 14:55:14 -0700 (PDT) (envelope-from dufault@FreeBSD.org) From: Peter Dufault Received: (from dufault@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA12856; Mon, 1 Jun 1998 14:54:44 -0700 (PDT) Date: Mon, 1 Jun 1998 14:54:44 -0700 (PDT) Message-Id: <199806012154.OAA12856@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/posix4 p1003_1b.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dufault 1998/06/01 14:54:44 PDT Modified files: sys/posix4 p1003_1b.c Log: Set PAGE_SIZE for _SC_PAGESIZE sysconf(). Revision Changes Path 1.4 +1 -0 src/sys/posix4/p1003_1b.c From owner-cvs-sys Mon Jun 1 17:34:13 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22339 for cvs-sys-outgoing; Mon, 1 Jun 1998 17:34:13 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22165; Mon, 1 Jun 1998 17:33:07 -0700 (PDT) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA13767; Mon, 1 Jun 1998 17:32:39 -0700 (PDT) Date: Mon, 1 Jun 1998 17:32:39 -0700 (PDT) Message-Id: <199806020032.RAA13767@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/sys dpt.h src/sys/pci dpt_pci.c src/sys/dev/dpt dpt_control.c dpt_scsi.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk eivind 1998/06/01 17:32:39 PDT Modified files: sys/sys dpt.h sys/pci dpt_pci.c sys/dev/dpt dpt_control.c dpt_scsi.c Log: o Return error when the controller can't accept commands. o Make driver less chatty on boot (only announce version under bootverbose) Submitted by: Simon Shapiro Revision Changes Path 1.3 +5 -5 src/sys/sys/dpt.h 1.6 +2 -2 src/sys/pci/dpt_pci.c 1.5 +4 -3 src/sys/dev/dpt/dpt_control.c 1.6 +5 -7 src/sys/dev/dpt/dpt_scsi.c From owner-cvs-sys Mon Jun 1 18:31:54 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA01217 for cvs-sys-outgoing; Mon, 1 Jun 1998 18:31:54 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA01139; Mon, 1 Jun 1998 18:31:20 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA13972; Mon, 1 Jun 1998 18:30:51 -0700 (PDT) Date: Mon, 1 Jun 1998 18:30:51 -0700 (PDT) Message-Id: <199806020130.SAA13972@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ffs README.softupdates Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/01 18:30:51 PDT Modified files: sys/ufs/ffs README.softupdates Log: Add a reference to the original softupdates paper Revision Changes Path 1.2 +2 -0 src/sys/ufs/ffs/README.softupdates From owner-cvs-sys Mon Jun 1 22:39:56 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA18044 for cvs-sys-outgoing; Mon, 1 Jun 1998 22:39:56 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA17980; Mon, 1 Jun 1998 22:39:43 -0700 (PDT) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14533; Mon, 1 Jun 1998 22:39:14 -0700 (PDT) Date: Mon, 1 Jun 1998 22:39:14 -0700 (PDT) Message-Id: <199806020539.WAA14533@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/ibcs2 ibcs2_xenix.c src/sys/i386/isa/pcvt pcvt_vtf.c src/sys/kern kern_threads.c src/sys/vm vm_pageout.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dyson 1998/06/01 22:39:14 PDT Modified files: sys/i386/ibcs2 ibcs2_xenix.c sys/i386/isa/pcvt pcvt_vtf.c sys/kern kern_threads.c sys/vm vm_pageout.c Log: Correct sleep priority. Revision Changes Path 1.15 +2 -2 src/sys/i386/ibcs2/ibcs2_xenix.c 1.8 +2 -2 src/sys/i386/isa/pcvt/pcvt_vtf.c 1.8 +2 -2 src/sys/kern/kern_threads.c 1.122 +2 -2 src/sys/vm/vm_pageout.c From owner-cvs-sys Mon Jun 1 22:51:21 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA20353 for cvs-sys-outgoing; Mon, 1 Jun 1998 22:51:21 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA20231; Mon, 1 Jun 1998 22:50:41 -0700 (PDT) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA14596; Mon, 1 Jun 1998 22:50:11 -0700 (PDT) Date: Mon, 1 Jun 1998 22:50:11 -0700 (PDT) Message-Id: <199806020550.WAA14596@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/vm vm_page.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dyson 1998/06/01 22:50:11 PDT Modified files: sys/vm vm_page.c Log: Cleanup and remove some dead code from the initialization. Revision Changes Path 1.100 +5 -15 src/sys/vm/vm_page.c From owner-cvs-sys Tue Jun 2 05:39:12 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16949 for cvs-sys-outgoing; Tue, 2 Jun 1998 05:39:12 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16899; Tue, 2 Jun 1998 05:39:05 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA17315; Tue, 2 Jun 1998 05:38:33 -0700 (PDT) Date: Tue, 2 Jun 1998 05:38:33 -0700 (PDT) Message-Id: <199806021238.FAA17315@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/linux linux_ipc.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 1998/06/02 05:38:32 PDT Modified files: sys/i386/linux linux_ipc.c Log: ".. x11amp appears to be calling shmctl(id, IPC_RMID, 0) and the emulation layer does not like the null shmid_ds buffer pointer. The emulation layer returned an error without ever calling FreeBSD's shmctl, so the segments were not being deleted when the reference count went to zero." Submitted by: Kevin Street Revision Changes Path 1.14 +13 -9 src/sys/i386/linux/linux_ipc.c From owner-cvs-sys Tue Jun 2 13:59:18 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA08396 for cvs-sys-outgoing; Tue, 2 Jun 1998 13:59:18 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA08311; Tue, 2 Jun 1998 13:58:59 -0700 (PDT) (envelope-from jdp@FreeBSD.org) From: John Polstra Received: (from jdp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA16964; Tue, 2 Jun 1998 13:58:24 -0700 (PDT) Date: Tue, 2 Jun 1998 13:58:24 -0700 (PDT) Message-Id: <199806022058.NAA16964@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/sys param.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jdp 1998/06/02 13:58:24 PDT Modified files: sys/sys param.h Log: Increment __FreeBSD_version because the semctl() prototype changed in . Revision Changes Path 1.32 +2 -2 src/sys/sys/param.h From owner-cvs-sys Tue Jun 2 16:31:09 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA04256 for cvs-sys-outgoing; Tue, 2 Jun 1998 16:31:09 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA03666; Tue, 2 Jun 1998 16:29:00 -0700 (PDT) (envelope-from eivind@FreeBSD.org) From: Eivind Eklund Received: (from eivind@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA17601; Tue, 2 Jun 1998 16:28:25 -0700 (PDT) Date: Tue, 2 Jun 1998 16:28:25 -0700 (PDT) Message-Id: <199806022328.QAA17601@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/dev/dpt dpt_control.c dpt_scsi.c src/sys/pci dpt_pci.c src/sys/sys dpt.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk eivind 1998/06/02 16:28:25 PDT Modified files: (Branch: RELENG_2_2) sys/dev/dpt dpt_control.c dpt_scsi.c sys/pci dpt_pci.c sys/sys dpt.h Log: MFC: Return error when controller time out, and be less chatty during boot (unless bootverbose). Revision Changes Path 1.3.2.4 +4 -3 src/sys/dev/dpt/dpt_control.c 1.4.2.6 +5 -7 src/sys/dev/dpt/dpt_scsi.c 1.4.2.4 +2 -2 src/sys/pci/dpt_pci.c 1.2.2.1 +5 -5 src/sys/sys/dpt.h From owner-cvs-sys Tue Jun 2 19:00:52 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA29088 for cvs-sys-outgoing; Tue, 2 Jun 1998 19:00:52 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA29012; Tue, 2 Jun 1998 19:00:20 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA18407; Tue, 2 Jun 1998 18:59:44 -0700 (PDT) Date: Tue, 2 Jun 1998 18:59:44 -0700 (PDT) Message-Id: <199806030159.SAA18407@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/apm apm.c apm_setup.h apm_setup.s src/sys/i386/i386 locore.s Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk msmith 1998/06/02 18:59:43 PDT Modified files: sys/i386/apm apm.c apm_setup.h apm_setup.s sys/i386/i386 locore.s Log: If vm86 services are available, use these to perform the APM BIOS probe and intialisation. This will ultimately remove the grubby (but functional) hack that copies a real-mode function into low memory early in locore.s. Revision Changes Path 1.71 +76 -11 src/sys/i386/apm/apm.c 1.9 +3 -2 src/sys/i386/apm/apm_setup.h 1.13 +8 -4 src/sys/i386/apm/apm_setup.s 1.108 +3 -1 src/sys/i386/i386/locore.s From owner-cvs-sys Wed Jun 3 00:58:35 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA22288 for cvs-sys-outgoing; Wed, 3 Jun 1998 00:58:35 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA21982; Wed, 3 Jun 1998 00:57:41 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA20429; Wed, 3 Jun 1998 00:57:02 -0700 (PDT) Date: Wed, 3 Jun 1998 00:57:02 -0700 (PDT) Message-Id: <199806030757.AAA20429@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 machdep.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/06/03 00:57:02 PDT Modified files: sys/i386/i386 machdep.c Log: Ifdefed the netisr support. PR: 6760 Reviewed by: joerg Revision Changes Path 1.298 +21 -2 src/sys/i386/i386/machdep.c From owner-cvs-sys Wed Jun 3 01:48:50 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA00601 for cvs-sys-outgoing; Wed, 3 Jun 1998 01:48:50 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA00548; Wed, 3 Jun 1998 01:48:42 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA20721; Wed, 3 Jun 1998 01:48:03 -0700 (PDT) Date: Wed, 3 Jun 1998 01:48:03 -0700 (PDT) Message-Id: <199806030848.BAA20721@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/i386 machdep.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/06/03 01:48:03 PDT Modified files: sys/pc98/i386 machdep.c Log: Sync with sys/i386/i386/machdep.c revision 1.298. Revision Changes Path 1.85 +21 -2 src/sys/pc98/i386/machdep.c From owner-cvs-sys Wed Jun 3 02:44:33 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA09857 for cvs-sys-outgoing; Wed, 3 Jun 1998 02:44:33 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA09799; Wed, 3 Jun 1998 02:44:20 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA20982; Wed, 3 Jun 1998 02:43:41 -0700 (PDT) Date: Wed, 3 Jun 1998 02:43:41 -0700 (PDT) Message-Id: <199806030943.CAA20982@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa sio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/06/03 02:43:40 PDT Modified files: sys/i386/isa sio.c Log: Fixed a printf() arg botch in the previous commit. Only complain about an irq mismatch in the probe if the configured irq doesn't become active, and then print the bitmap of irqs that became active (including clock irqs) instead of just the first (not including clock irqs). Bugs reported by: msmith Revision Changes Path 1.204 +6 -7 src/sys/i386/isa/sio.c From owner-cvs-sys Wed Jun 3 05:31:00 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA03021 for cvs-sys-outgoing; Wed, 3 Jun 1998 05:31:00 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA02973; Wed, 3 Jun 1998 05:30:51 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA21708; Wed, 3 Jun 1998 05:30:11 -0700 (PDT) Date: Wed, 3 Jun 1998 05:30:11 -0700 (PDT) Message-Id: <199806031230.FAA21708@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa sio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/06/03 05:30:11 PDT Modified files: sys/i386/isa sio.c Log: Force success of the probe (after doing it as before except in one miscconfigured case) if the port is the console. This fixes several bugs: - if all sioprobe()s failed, then the console driver followed null pointers in cdevsw[]. - if the sioprobe() for the console failed but another sioprobe() succeeded, then init hung early when the console couldn't be opened. - it was silly for the console to not be there after printing boot messages on it. Bugs introduced by this are hopefully no worse than old ones caused by forcing the success of the `cn' level probe. Revision Changes Path 1.205 +5 -4 src/sys/i386/isa/sio.c From owner-cvs-sys Wed Jun 3 06:34:27 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12391 for cvs-sys-outgoing; Wed, 3 Jun 1998 06:34:27 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA12324; Wed, 3 Jun 1998 06:34:15 -0700 (PDT) (envelope-from jkh@FreeBSD.org) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA21880; Wed, 3 Jun 1998 06:33:35 -0700 (PDT) Date: Wed, 3 Jun 1998 06:33:35 -0700 (PDT) Message-Id: <199806031333.GAA21880@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf GENERIC Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 1998/06/03 06:33:35 PDT Modified files: sys/i386/conf GENERIC Log: Add the DPT driver here. It's kinda ironic that it got enabled in -stable first. :) PR: 6848 Revision Changes Path 1.110 +8 -1 src/sys/i386/conf/GENERIC From owner-cvs-sys Thu Jun 4 10:06:07 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15832 for cvs-sys-outgoing; Thu, 4 Jun 1998 10:06:07 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15368; Thu, 4 Jun 1998 10:04:06 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA25172; Thu, 4 Jun 1998 10:03:17 -0700 (PDT) Date: Thu, 4 Jun 1998 10:03:17 -0700 (PDT) Message-Id: <199806041703.KAA25172@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ufs ufs_quota.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dfr 1998/06/04 10:03:16 PDT Modified files: sys/ufs/ufs ufs_quota.c Log: Don't cast a pointer to an int in DQHASH. Revision Changes Path 1.22 +2 -2 src/sys/ufs/ufs/ufs_quota.c From owner-cvs-sys Thu Jun 4 10:06:09 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA15840 for cvs-sys-outgoing; Thu, 4 Jun 1998 10:06:09 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA15720; Thu, 4 Jun 1998 10:05:34 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA25237; Thu, 4 Jun 1998 10:04:45 -0700 (PDT) Date: Thu, 4 Jun 1998 10:04:45 -0700 (PDT) Message-Id: <199806041704.KAA25237@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ufs ufs_readwrite.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dfr 1998/06/04 10:04:45 PDT Modified files: sys/ufs/ufs ufs_readwrite.c Log: If the filesystem blocksize is less than the VM page size, use the generic getpages code. This happens for filesystems with 4k pages on the alpha since the normal alpha pagesize is 8k. Revision Changes Path 1.50 +7 -1 src/sys/ufs/ufs/ufs_readwrite.c From owner-cvs-sys Thu Jun 4 10:23:05 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18601 for cvs-sys-outgoing; Thu, 4 Jun 1998 10:23:05 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA18516; Thu, 4 Jun 1998 10:22:30 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA25389; Thu, 4 Jun 1998 10:21:40 -0700 (PDT) Date: Thu, 4 Jun 1998 10:21:40 -0700 (PDT) Message-Id: <199806041721.KAA25389@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/ufs/ffs ffs_vfsops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dfr 1998/06/04 10:21:40 PDT Modified files: sys/ufs/ffs ffs_vfsops.c Log: Use size_t instead of u_int for sizes. Revision Changes Path 1.83 +3 -3 src/sys/ufs/ffs/ffs_vfsops.c From owner-cvs-sys Thu Jun 4 13:45:27 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA02406 for cvs-sys-outgoing; Thu, 4 Jun 1998 13:45:27 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA01419; Thu, 4 Jun 1998 13:39:59 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA26740; Thu, 4 Jun 1998 13:39:07 -0700 (PDT) Date: Thu, 4 Jun 1998 13:39:07 -0700 (PDT) Message-Id: <199806042039.NAA26740@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf LINT Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk steve 1998/06/04 13:39:07 PDT Modified files: (Branch: RELENG_2_2) sys/i386/conf LINT Log: MFC: remove obsolete FDSEEKWAIT option. PR: 6841 Submitted by: Stefan Eggers Revision Changes Path 1.286.2.53 +1 -12 src/sys/i386/conf/LINT From owner-cvs-sys Thu Jun 4 23:57:04 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA21665 for cvs-sys-outgoing; Thu, 4 Jun 1998 23:57:04 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA21577; Thu, 4 Jun 1998 23:56:34 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01711; Thu, 4 Jun 1998 23:55:39 -0700 (PDT) Date: Thu, 4 Jun 1998 23:55:39 -0700 (PDT) Message-Id: <199806050655.XAA01711@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netatalk ddp_input.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/04 23:55:38 PDT Modified files: sys/netatalk ddp_input.c Log: spurious ntohs calls were stopping some packets from being recognised for what they are.. Taken from the netatalk mailing list. from a NetBSD user. Revision Changes Path 1.9 +6 -6 src/sys/netatalk/ddp_input.c From owner-cvs-sys Fri Jun 5 00:00:33 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA22499 for cvs-sys-outgoing; Fri, 5 Jun 1998 00:00:33 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA22180; Thu, 4 Jun 1998 23:59:55 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA01756; Thu, 4 Jun 1998 23:59:01 -0700 (PDT) Date: Thu, 4 Jun 1998 23:59:01 -0700 (PDT) Message-Id: <199806050659.XAA01756@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netatalk ddp_input.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/04 23:59:01 PDT Modified files: (Branch: RELENG_2_2) sys/netatalk ddp_input.c Log: Obtained from: NetBSD user David Brownlee via the Netatalk lists. Revision Changes Path 1.3.2.2 +6 -6 src/sys/netatalk/ddp_input.c From owner-cvs-sys Fri Jun 5 01:31:07 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA05505 for cvs-sys-outgoing; Fri, 5 Jun 1998 01:31:07 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA05442; Fri, 5 Jun 1998 01:30:50 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA02148; Fri, 5 Jun 1998 01:29:56 -0700 (PDT) Date: Fri, 5 Jun 1998 01:29:56 -0700 (PDT) Message-Id: <199806050829.BAA02148@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf GENERIC98 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/06/05 01:29:56 PDT Modified files: sys/pc98/conf GENERIC98 Log: Sync with sys/i386/conf/GENERIC revision 1.110. Revision Changes Path 1.40 +8 -1 src/sys/pc98/conf/GENERIC98 From owner-cvs-sys Fri Jun 5 01:32:23 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA05703 for cvs-sys-outgoing; Fri, 5 Jun 1998 01:32:23 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA05579; Fri, 5 Jun 1998 01:31:57 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA02206; Fri, 5 Jun 1998 01:31:03 -0700 (PDT) Date: Fri, 5 Jun 1998 01:31:03 -0700 (PDT) Message-Id: <199806050831.BAA02206@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/pc98 sio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/06/05 01:31:03 PDT Modified files: sys/pc98/pc98 sio.c Log: Sync with sys/i386/isa/sio.c revision up to 1.205. Revision Changes Path 1.59 +10 -10 src/sys/pc98/pc98/sio.c From owner-cvs-sys Fri Jun 5 02:00:43 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA10664 for cvs-sys-outgoing; Fri, 5 Jun 1998 02:00:43 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA10459; Fri, 5 Jun 1998 02:00:07 -0700 (PDT) (envelope-from ahasty@FreeBSD.org) From: Amancio Hasty Received: (from ahasty@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA02361; Fri, 5 Jun 1998 01:59:13 -0700 (PDT) Date: Fri, 5 Jun 1998 01:59:13 -0700 (PDT) Message-Id: <199806050859.BAA02361@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pci brooktree848.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ahasty 1998/06/05 01:59:13 PDT Modified files: sys/pci brooktree848.c Log: Reviewed by: hasty@star-gate.com Submitted by: Roger Hardiman I left out a line of code from Roger's last patch :( Revision Changes Path 1.40 +2 -0 src/sys/pci/brooktree848.c From owner-cvs-sys Fri Jun 5 14:39:44 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21910 for cvs-sys-outgoing; Fri, 5 Jun 1998 14:39:44 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA21840; Fri, 5 Jun 1998 14:39:14 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA04652; Fri, 5 Jun 1998 14:38:14 -0700 (PDT) Date: Fri, 5 Jun 1998 14:38:14 -0700 (PDT) Message-Id: <199806052138.OAA04652@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/conf options src/sys/netinet ip_divert.c ip_fw.c ip_input.c ip_output.c ip_var.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/05 14:38:14 PDT Modified files: (Branch: RELENG_2_2) sys/conf options sys/netinet ip_divert.c ip_fw.c ip_input.c ip_output.c ip_var.h Log: MFC: add option to fix divert infinite loop Revision Changes Path 1.18.2.11 +4 -2 src/sys/conf/options 1.1.2.8 +48 -2 src/sys/netinet/ip_divert.c 1.51.2.14 +37 -2 src/sys/netinet/ip_fw.c 1.50.2.15 +25 -2 src/sys/netinet/ip_input.c 1.44.2.8 +2 -2 src/sys/netinet/ip_output.c 1.24.2.4 +10 -1 src/sys/netinet/ip_var.h From owner-cvs-sys Fri Jun 5 14:43:16 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22277 for cvs-sys-outgoing; Fri, 5 Jun 1998 14:43:16 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA22226; Fri, 5 Jun 1998 14:42:50 -0700 (PDT) (envelope-from dg@FreeBSD.org) From: David Greenman Received: (from dg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA04692; Fri, 5 Jun 1998 14:41:52 -0700 (PDT) Date: Fri, 5 Jun 1998 14:41:52 -0700 (PDT) Message-Id: <199806052141.OAA04692@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern uipc_mbuf.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dg 1998/06/05 14:41:52 PDT Modified files: sys/kern uipc_mbuf.c Log: If we are out of mb_map space and we failed to m_reclaim() anything and the alloc is not M_DONTWAIT, then panic with "Out of mbuf clusters". Callers that specify M_WAIT can't deal with getting a NULL buffer, so this is a more graceful failure than randomly page faulting in the socket code or elsewhere. Revision Changes Path 1.35 +15 -7 src/sys/kern/uipc_mbuf.c From owner-cvs-sys Fri Jun 5 14:45:52 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22539 for cvs-sys-outgoing; Fri, 5 Jun 1998 14:45:52 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA22449; Fri, 5 Jun 1998 14:45:22 -0700 (PDT) (envelope-from dg@FreeBSD.org) From: David Greenman Received: (from dg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA04720; Fri, 5 Jun 1998 14:44:24 -0700 (PDT) Date: Fri, 5 Jun 1998 14:44:24 -0700 (PDT) Message-Id: <199806052144.OAA04720@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern kern_acct.c kern_exit.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dg 1998/06/05 14:44:23 PDT Modified files: sys/kern kern_acct.c kern_exit.c Log: Moved limit frobbing (and the resulting limcopy()) that occurs for accounting to the accounting function so that this isn't needlessly done for some process exits. Reviewed by: bde,phk Revision Changes Path 1.19 +12 -2 src/sys/kern/kern_acct.c 1.67 +1 -7 src/sys/kern/kern_exit.c From owner-cvs-sys Fri Jun 5 14:50:53 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23300 for cvs-sys-outgoing; Fri, 5 Jun 1998 14:50:53 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA23096; Fri, 5 Jun 1998 14:49:54 -0700 (PDT) (envelope-from dg@FreeBSD.org) From: David Greenman Received: (from dg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA04751; Fri, 5 Jun 1998 14:48:55 -0700 (PDT) Date: Fri, 5 Jun 1998 14:48:55 -0700 (PDT) Message-Id: <199806052148.OAA04751@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/vm vm_kern.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dg 1998/06/05 14:48:54 PDT Modified files: sys/vm vm_kern.c Log: Changed the log() of "Out of mbuf clusters - increase maxusers" to a printf() of "Out of mbuf clusters - adjust NMBCLUSTERS or increase maxusers" so that the message is more informative and so that it will appear in the kernel message buffer. Revision Changes Path 1.47 +2 -2 src/sys/vm/vm_kern.c From owner-cvs-sys Fri Jun 5 15:43:19 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA03102 for cvs-sys-outgoing; Fri, 5 Jun 1998 15:43:19 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA02704; Fri, 5 Jun 1998 15:41:03 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA05445; Fri, 5 Jun 1998 15:40:04 -0700 (PDT) Date: Fri, 5 Jun 1998 15:40:04 -0700 (PDT) Message-Id: <199806052240.PAA05445@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/conf LINT src/sys/conf options src/sys/netinet ip_divert.c ip_fw.c ip_input.c ip_output.c ip_var.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/05 15:40:03 PDT Modified files: sys/i386/conf LINT sys/conf options sys/netinet ip_divert.c ip_fw.c ip_input.c ip_output.c ip_var.h Log: Reverse the default sense of the IPFW/DIVERT reinjection code so that the new behaviour is now default. Solves the "infinite loop in diversion" problem when more than one diversion is active. Man page changes follow. The new code is in -stable as the NON default option. Revision Changes Path 1.436 +2 -1 src/sys/i386/conf/LINT 1.76 +2 -2 src/sys/conf/options 1.27 +12 -12 src/sys/netinet/ip_divert.c 1.85 +13 -13 src/sys/netinet/ip_fw.c 1.86 +9 -9 src/sys/netinet/ip_input.c 1.68 +3 -3 src/sys/netinet/ip_output.c 1.39 +5 -5 src/sys/netinet/ip_var.h From owner-cvs-sys Fri Jun 5 16:35:54 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA12349 for cvs-sys-outgoing; Fri, 5 Jun 1998 16:35:54 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA12090; Fri, 5 Jun 1998 16:34:27 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05673; Fri, 5 Jun 1998 16:33:28 -0700 (PDT) Date: Fri, 5 Jun 1998 16:33:28 -0700 (PDT) Message-Id: <199806052333.QAA05673@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sbin/fsck pass5.c src/sys/netinet ip_fw.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/05 16:33:28 PDT Modified files: sbin/fsck pass5.c sys/netinet ip_fw.c Log: Reviewed by: Kirk Mckusick (mckusick@mckusick.com) Submitted by: luoqi Chen fix a type in fsck. (also add a comment that got picked up by mistake but is worth adding) Revision Changes Path 1.10 +1 -1 src/sbin/fsck/pass5.c 1.86 +6 -1 src/sys/netinet/ip_fw.c From owner-cvs-sys Fri Jun 5 19:34:10 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA06723 for cvs-sys-outgoing; Fri, 5 Jun 1998 19:34:10 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA06603; Fri, 5 Jun 1998 19:33:52 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA06321; Fri, 5 Jun 1998 19:32:53 -0700 (PDT) Date: Fri, 5 Jun 1998 19:32:53 -0700 (PDT) Message-Id: <199806060232.TAA06321@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/sys diskslice.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/06/05 19:32:52 PDT Modified files: sys/sys diskslice.h Log: Removed dead code. Revision Changes Path 1.22 +1 -35 src/sys/sys/diskslice.h From owner-cvs-sys Fri Jun 5 20:08:26 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA11118 for cvs-sys-outgoing; Fri, 5 Jun 1998 20:08:26 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA11023; Fri, 5 Jun 1998 20:07:58 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA06484; Fri, 5 Jun 1998 20:06:58 -0700 (PDT) Date: Fri, 5 Jun 1998 20:06:58 -0700 (PDT) Message-Id: <199806060306.UAA06484@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern subr_diskslice.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/06/05 20:06:57 PDT Modified files: sys/kern subr_diskslice.c Log: Don't attempt to copy the whole slices "struct" for DIOCGSLICEINFO. The slices "struct" isn't really a struct; we allocate only part of it in the fully dangerously dedicated case. Since the "struct" is malloced, the page beyond it may not be mapped, so attempts to copy it would crash. This problem became larger when the full struct was bloated from < 1K to > 3K by the addition of (mostly unused) DEVFS tokens some time before 2.2.0 was released. Revision Changes Path 1.46 +3 -2 src/sys/kern/subr_diskslice.c From owner-cvs-sys Fri Jun 5 20:16:11 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA11793 for cvs-sys-outgoing; Fri, 5 Jun 1998 20:16:11 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA11646; Fri, 5 Jun 1998 20:14:56 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA06519; Fri, 5 Jun 1998 20:13:56 -0700 (PDT) Date: Fri, 5 Jun 1998 20:13:56 -0700 (PDT) Message-Id: <199806060313.UAA06519@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern subr_diskslice.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/06/05 20:13:56 PDT Modified files: (Branch: RELENG_2_2) sys/kern subr_diskslice.c Log: MFC (rev.1.46: don't attempt to copy the whole slices "struct" for DIOCGSLICEINFO). Revision Changes Path 1.30.2.4 +3 -2 src/sys/kern/subr_diskslice.c From owner-cvs-sys Fri Jun 5 22:23:20 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA23787 for cvs-sys-outgoing; Fri, 5 Jun 1998 22:23:20 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA23709; Fri, 5 Jun 1998 22:23:02 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA07542; Fri, 5 Jun 1998 22:22:02 -0700 (PDT) Date: Fri, 5 Jun 1998 22:22:02 -0700 (PDT) Message-Id: <199806060522.WAA07542@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf options.pc98 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/06/05 22:22:01 PDT Modified files: sys/pc98/conf options.pc98 Log: Make BS_TARG_SAFEMODE a new style option. Revision Changes Path 1.61 +2 -1 src/sys/pc98/conf/options.pc98 From owner-cvs-sys Fri Jun 5 22:26:52 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA24534 for cvs-sys-outgoing; Fri, 5 Jun 1998 22:26:52 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA24480; Fri, 5 Jun 1998 22:26:40 -0700 (PDT) (envelope-from kato@FreeBSD.org) From: KATO Takenori Received: (from kato@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA07584; Fri, 5 Jun 1998 22:25:39 -0700 (PDT) Date: Fri, 5 Jun 1998 22:25:39 -0700 (PDT) Message-Id: <199806060525.WAA07584@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/pc98/conf options.pc98 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 1998/06/05 22:25:39 PDT Modified files: sys/pc98/conf options.pc98 Log: Make LINE30 a new style option. Revision Changes Path 1.62 +2 -1 src/sys/pc98/conf/options.pc98 From owner-cvs-sys Sat Jun 6 08:27:43 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA13169 for cvs-sys-outgoing; Sat, 6 Jun 1998 08:27:43 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA13158; Sat, 6 Jun 1998 08:27:32 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id PAA03389; Sat, 6 Jun 1998 15:27:31 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id RAA08953; Sat, 6 Jun 1998 17:26:51 +0200 (MET DST) Message-ID: <19980606172650.00314@follo.net> Date: Sat, 6 Jun 1998 17:26:50 +0200 From: Eivind Eklund To: Julian Elischer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: Re: cvs commit: src/sbin/fsck pass5.c src/sys/netinet ip_fw.c References: <199806052333.QAA05673@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199806052333.QAA05673@freefall.freebsd.org>; from Julian Elischer on Fri, Jun 05, 1998 at 04:33:28PM -0700 Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Fri, Jun 05, 1998 at 04:33:28PM -0700, Julian Elischer wrote: > julian 1998/06/05 16:33:28 PDT > > Modified files: > sbin/fsck pass5.c > sys/netinet ip_fw.c > Log: > Reviewed by: Kirk Mckusick (mckusick@mckusick.com) > Submitted by: luoqi Chen > fix a type in fsck. > (also add a comment that got picked up by mistake but is worth adding) > > Revision Changes Path > 1.10 +1 -1 src/sbin/fsck/pass5.c > 1.86 +6 -1 src/sys/netinet/ip_fw.c For everybody's information: The comment referenced is in ip_fw.c, which at least confused _me_. Julian: Please Don't Do That. This makes commit logs & commit mail much harder to read, and means one has to go back and check the diffs instead of knowing what is in there at a later date.. Eivind. From owner-cvs-sys Sat Jun 6 10:46:52 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28118 for cvs-sys-outgoing; Sat, 6 Jun 1998 10:46:52 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA28039; Sat, 6 Jun 1998 10:46:17 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA10535; Sat, 6 Jun 1998 10:45:13 -0700 (PDT) Date: Sat, 6 Jun 1998 10:45:13 -0700 (PDT) Message-Id: <199806061745.KAA10535@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa kbdtables.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk steve 1998/06/06 10:45:13 PDT Modified files: sys/i386/isa kbdtables.h Log: keymap -> key_map so that the kernel will compile with -DESKEYMAP. PR: 6864 Submitted by: Javier Rueda Revision Changes Path 1.40 +2 -2 src/sys/i386/isa/kbdtables.h From owner-cvs-sys Sat Jun 6 10:48:09 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28312 for cvs-sys-outgoing; Sat, 6 Jun 1998 10:48:09 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA28132; Sat, 6 Jun 1998 10:47:35 -0700 (PDT) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA10567; Sat, 6 Jun 1998 10:46:30 -0700 (PDT) Date: Sat, 6 Jun 1998 10:46:30 -0700 (PDT) Message-Id: <199806061746.KAA10567@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/isa kbdtables.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk steve 1998/06/06 10:46:30 PDT Modified files: (Branch: RELENG_2_2) sys/i386/isa kbdtables.h Log: MFC: keymap -> key_map Revision Changes Path 1.32.2.5 +2 -2 src/sys/i386/isa/kbdtables.h From owner-cvs-sys Sat Jun 6 12:40:44 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA12305 for cvs-sys-outgoing; Sat, 6 Jun 1998 12:40:44 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA12238; Sat, 6 Jun 1998 12:40:16 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA11228; Sat, 6 Jun 1998 12:39:11 -0700 (PDT) Date: Sat, 6 Jun 1998 12:39:11 -0700 (PDT) Message-Id: <199806061939.MAA11228@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet in.h ip_divert.c ip_fw.c ip_input.c ip_output.c ip_var.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/06 12:39:11 PDT Modified files: sys/netinet in.h ip_divert.c ip_fw.c ip_input.c ip_output.c ip_var.h Log: clean up the changes made to ipfw over the last weeks (should make the ipfw lkm work again) Revision Changes Path 1.34 +2 -2 src/sys/netinet/in.h 1.28 +13 -31 src/sys/netinet/ip_divert.c 1.87 +22 -22 src/sys/netinet/ip_fw.c 1.87 +9 -25 src/sys/netinet/ip_input.c 1.69 +4 -11 src/sys/netinet/ip_output.c 1.40 +2 -10 src/sys/netinet/ip_var.h From owner-cvs-sys Sat Jun 6 13:46:56 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA19094 for cvs-sys-outgoing; Sat, 6 Jun 1998 13:46:56 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA19018; Sat, 6 Jun 1998 13:46:35 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA11660; Sat, 6 Jun 1998 13:45:30 -0700 (PDT) Date: Sat, 6 Jun 1998 13:45:30 -0700 (PDT) Message-Id: <199806062045.NAA11660@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet in.h ip_divert.c ip_fw.c ip_input.c ip_output.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/06 13:45:30 PDT Modified files: sys/netinet in.h ip_divert.c ip_fw.c ip_input.c ip_output.c Log: Fix wrong data type for a pointer. Revision Changes Path 1.35 +2 -2 src/sys/netinet/in.h 1.29 +6 -5 src/sys/netinet/ip_divert.c 1.88 +5 -5 src/sys/netinet/ip_fw.c 1.88 +2 -2 src/sys/netinet/ip_input.c 1.70 +2 -2 src/sys/netinet/ip_output.c From owner-cvs-sys Sat Jun 6 14:50:47 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA25690 for cvs-sys-outgoing; Sat, 6 Jun 1998 14:50:47 -0700 (PDT) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA25625; Sat, 6 Jun 1998 14:50:25 -0700 (PDT) (envelope-from julian@FreeBSD.org) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA12530; Sat, 6 Jun 1998 14:49:19 -0700 (PDT) Date: Sat, 6 Jun 1998 14:49:19 -0700 (PDT) Message-Id: <199806062149.OAA12530@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet ip_input.c ip_output.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1998/06/06 14:49:18 PDT Modified files: sys/netinet ip_input.c ip_output.c Log: Make sure the default value of a dummy variable is 0 so that it doesn't do anything. Revision Changes Path 1.89 +2 -2 src/sys/netinet/ip_input.c 1.71 +2 -2 src/sys/netinet/ip_output.c