From owner-cvs-src@FreeBSD.ORG Fri May 23 23:13:15 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F588106567A; Fri, 23 May 2008 23:13:15 +0000 (UTC) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0A4108FC18; Fri, 23 May 2008 23:13:15 +0000 (UTC) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m4NNDEqU055169; Fri, 23 May 2008 23:13:14 GMT (envelope-from mckusick@repoman.freebsd.org) Received: (from mckusick@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m4NNDE6h055168; Fri, 23 May 2008 23:13:14 GMT (envelope-from mckusick) Message-Id: <200805232313.m4NNDE6h055168@repoman.freebsd.org> From: Kirk McKusick Date: Fri, 23 May 2008 23:13:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/dump dump.8 dump.h main.c traverse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 May 2008 23:13:15 -0000 mckusick 2008-05-23 23:13:14 UTC FreeBSD src repository Modified files: sbin/dump dump.8 dump.h main.c traverse.c Log: When using dump to generate level 0 dumps which are then rsync'ed to a remote machine, the fact that the dump date is stored with each header (inode) record makes rsync significantly less efficient than necessary. This also applies to inode access times when they are not important data to retain. When implementing an offsite backup solution of this type, these dates in particular are not important, especially if it prevents effective offsite backups. PR: bin/91049 Submitted by: Forrest W Christian Revision Changes Path 1.76 +22 -1 src/sbin/dump/dump.8 1.29 +1 -0 src/sbin/dump/dump.h 1.66 +23 -3 src/sbin/dump/main.c 1.41 +5 -0 src/sbin/dump/traverse.c