From owner-cvs-sbin Sun Jul 13 00:56:53 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA10256 for cvs-sbin-outgoing; Sun, 13 Jul 1997 00:56:53 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA10232; Sun, 13 Jul 1997 00:56:30 -0700 (PDT) From: Sean Eric Fagan Received: (from sef@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id AAA07636; Sun, 13 Jul 1997 00:55:55 -0700 (PDT) Date: Sun, 13 Jul 1997 00:55:55 -0700 (PDT) Message-Id: <199707130755.AAA07636@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/ping ping.c Sender: owner-cvs-sbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk sef 1997/07/13 00:55:55 PDT Modified files: (Branch: RELENG_2_2) sbin/ping ping.c Log: Merge from current -- handle the case where we're trying to ping an unreachable host better. Revision Changes Path 1.8.2.11 +37 -4 src/sbin/ping/ping.c From owner-cvs-sbin Sun Jul 13 08:14:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA22270 for cvs-sbin-outgoing; Sun, 13 Jul 1997 08:14:46 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA22246; Sun, 13 Jul 1997 08:13:45 -0700 (PDT) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id IAA25684; Sun, 13 Jul 1997 08:13:08 -0700 (PDT) Date: Sun, 13 Jul 1997 08:13:08 -0700 (PDT) Message-Id: <199707131513.IAA25684@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/newfs mkfs.c Sender: owner-cvs-sbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1997/07/13 08:13:08 PDT Modified files: sbin/newfs mkfs.c Log: Removed "hack to prevent overflow of a 32bit block number". Lite2 has a better hack in ffs_vfsops.c. The hack here restricted the maximum file size to 2^39 bytes (512GB). fs_bsize * 2^31 - 1 (16TB for the default blocksize of 8K) would have been better. There is no good way to remove this limit on old BSD4.4 file systems. Revision Changes Path 1.19 +1 -3 src/sbin/newfs/mkfs.c From owner-cvs-sbin Fri Jul 18 02:09:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA11377 for cvs-sbin-outgoing; Fri, 18 Jul 1997 02:09:56 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA11273; Fri, 18 Jul 1997 02:06:28 -0700 (PDT) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id CAA27813; Fri, 18 Jul 1997 02:05:13 -0700 (PDT) Date: Fri, 18 Jul 1997 02:05:13 -0700 (PDT) Message-Id: <199707180905.CAA27813@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/route route.c Sender: owner-cvs-sbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1997/07/18 02:05:13 PDT Modified files: sbin/route route.c Log: fix what appears to me to be absolutle bogus code to do with netmasks.. we fed totally bogus data into the kernel to do with default routes and it just believed us. this led to: 1/ kernel panics 2/ the default route refusing to be deleted or added (depending on a number of factors, usually it worked ok.) Revision Changes Path 1.26 +7 -6 src/sbin/route/route.c From owner-cvs-sbin Fri Jul 18 02:18:55 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA11685 for cvs-sbin-outgoing; Fri, 18 Jul 1997 02:18:55 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA11581; Fri, 18 Jul 1997 02:15:27 -0700 (PDT) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id CAA27882; Fri, 18 Jul 1997 02:14:12 -0700 (PDT) Date: Fri, 18 Jul 1997 02:14:12 -0700 (PDT) Message-Id: <199707180914.CAA27882@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/route route.c Sender: owner-cvs-sbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1997/07/18 02:14:12 PDT Modified files: (Branch: RELENG_2_2) sbin/route route.c Log: MFC: fix what appears to me to be absolutle bogus code to do with netmasks.. we fed totally bogus data into the kernel to do with default routes and it just believed us. This led to: 1/ kernel panics 2/ the default route refusing to be deleted or added (depending on a number of factors, usually it worked ok.) I've test this all I can and it should stop panicing the kernel.. Never feed a sockaddr to the kernel without filling in the length (and preferably the family). The kernel is about to enforce this (again) so (this time) let's get the user programs working first. Revision Changes Path 1.16.2.5 +7 -6 src/sbin/route/route.c From owner-cvs-sbin Fri Jul 18 04:13:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA15736 for cvs-sbin-outgoing; Fri, 18 Jul 1997 04:13:30 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA15561; Fri, 18 Jul 1997 04:09:53 -0700 (PDT) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id EAA29088; Fri, 18 Jul 1997 04:08:37 -0700 (PDT) Date: Fri, 18 Jul 1997 04:08:37 -0700 (PDT) Message-Id: <199707181108.EAA29088@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/routed if.c table.c Sender: owner-cvs-sbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1997/07/18 04:08:36 PDT Modified files: sbin/routed if.c table.c Log: Check if routed had the same problems that route(1) had. The answer is not really, but almost. it sent data that was ok, though it was a hack, but it was bug-compatible with the kernel on receiving them. This also had been fixed with a hack.. I hacked it better I think. Revision Changes Path 1.2 +422 -214 src/sbin/routed/if.c 1.5 +4 -8 src/sbin/routed/table.c From owner-cvs-sbin Fri Jul 18 10:58:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA06448 for cvs-sbin-outgoing; Fri, 18 Jul 1997 10:58:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA06270; Fri, 18 Jul 1997 10:53:26 -0700 (PDT) From: Garrett Wollman Received: (from wollman@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id KAA15599; Fri, 18 Jul 1997 10:52:07 -0700 (PDT) Date: Fri, 18 Jul 1997 10:52:07 -0700 (PDT) Message-Id: <199707181752.KAA15599@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sbin@FreeBSD.ORG Subject: cvs commit: src/sbin/ping Makefile ping.8 ping.c Sender: owner-cvs-sbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wollman 1997/07/18 10:52:07 PDT Modified files: sbin/ping Makefile ping.8 ping.c Log: Calculate and print out the standard deviation of the round trip times. This isn't necessarily the best statistic, but it is by far the easiest to calculate. Update the man page to be more explicit about precisely which statistics are printed out. Revert some of jmg's bogus man page changes from rev 1.11. Revision Changes Path 1.4 +1 -0 src/sbin/ping/Makefile 1.12 +20 -15 src/sbin/ping/ping.8 1.25 +12 -4 src/sbin/ping/ping.c