Deleted Added
full compact
dump.h (167011) dump.h (179267)
1/*-
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 14 unchanged lines hidden (view full) ---

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)dump.h 8.2 (Berkeley) 4/28/95
30 *
1/*-
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 14 unchanged lines hidden (view full) ---

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)dump.h 8.2 (Berkeley) 4/28/95
30 *
31 * $FreeBSD: head/sbin/dump/dump.h 167011 2007-02-26 08:15:56Z mckusick $
31 * $FreeBSD: head/sbin/dump/dump.h 179267 2008-05-23 23:13:14Z mckusick $
32 */
33
34/*
35 * Dump maps used to describe what is to be dumped.
36 */
37int mapsize; /* size of the state maps */
38char *usedinomap; /* map of allocated inodes */
39char *dumpdirmap; /* map of directories to be dumped */

--- 30 unchanged lines hidden (view full) ---

70int density; /* density in 0.1" units */
71long tapesize; /* estimated tape size, blocks */
72long tsize; /* tape size in 0.1" units */
73long asize; /* number of 0.1" units written on current tape */
74int etapes; /* estimated number of tapes */
75int nonodump; /* if set, do not honor UF_NODUMP user flags */
76int unlimited; /* if set, write to end of medium */
77int cachesize; /* size of block cache in bytes */
32 */
33
34/*
35 * Dump maps used to describe what is to be dumped.
36 */
37int mapsize; /* size of the state maps */
38char *usedinomap; /* map of allocated inodes */
39char *dumpdirmap; /* map of directories to be dumped */

--- 30 unchanged lines hidden (view full) ---

70int density; /* density in 0.1" units */
71long tapesize; /* estimated tape size, blocks */
72long tsize; /* tape size in 0.1" units */
73long asize; /* number of 0.1" units written on current tape */
74int etapes; /* estimated number of tapes */
75int nonodump; /* if set, do not honor UF_NODUMP user flags */
76int unlimited; /* if set, write to end of medium */
77int cachesize; /* size of block cache in bytes */
78int rsync_friendly; /* be friendly with rsync */
78
79int notify; /* notify operator flag */
80int blockswritten; /* number of blocks written on current tape */
81int tapeno; /* current tape number */
82time_t tstart_writing; /* when started writing the first tape block */
83time_t tend_writing; /* after writing the last tape block */
84int passno; /* current dump pass number */
85struct fs *sblock; /* the file system super block */

--- 92 unchanged lines hidden ---
79
80int notify; /* notify operator flag */
81int blockswritten; /* number of blocks written on current tape */
82int tapeno; /* current tape number */
83time_t tstart_writing; /* when started writing the first tape block */
84time_t tend_writing; /* after writing the last tape block */
85int passno; /* current dump pass number */
86struct fs *sblock; /* the file system super block */

--- 92 unchanged lines hidden ---