Deleted Added
full compact
dump.h (99579) dump.h (102231)
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

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

27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)dump.h 8.2 (Berkeley) 4/28/95
34 *
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

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

27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)dump.h 8.2 (Berkeley) 4/28/95
34 *
35 * $FreeBSD: head/sbin/dump/dump.h 99579 2002-07-08 09:02:02Z robert $
35 * $FreeBSD: head/sbin/dump/dump.h 102231 2002-08-21 18:11:48Z trhodes $
36 */
37
38/*
39 * Dump maps used to describe what is to be dumped.
40 */
41int mapsize; /* size of the state maps */
42char *usedinomap; /* map of allocated inodes */
43char *dumpdirmap; /* map of directories to be dumped */

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

76int unlimited; /* if set, write to end of medium */
77
78int notify; /* notify operator flag */
79int blockswritten; /* number of blocks written on current tape */
80int tapeno; /* current tape number */
81time_t tstart_writing; /* when started writing the first tape block */
82time_t tend_writing; /* after writing the last tape block */
83int passno; /* current dump pass number */
36 */
37
38/*
39 * Dump maps used to describe what is to be dumped.
40 */
41int mapsize; /* size of the state maps */
42char *usedinomap; /* map of allocated inodes */
43char *dumpdirmap; /* map of directories to be dumped */

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

76int unlimited; /* if set, write to end of medium */
77
78int notify; /* notify operator flag */
79int blockswritten; /* number of blocks written on current tape */
80int tapeno; /* current tape number */
81time_t tstart_writing; /* when started writing the first tape block */
82time_t tend_writing; /* after writing the last tape block */
83int passno; /* current dump pass number */
84struct fs *sblock; /* the filesystem super block */
84struct fs *sblock; /* the file system super block */
85char sblock_buf[MAXBSIZE];
86long dev_bsize; /* block size of underlying disk device */
87int dev_bshift; /* log2(dev_bsize) */
88int tp_bshift; /* log2(TP_BSIZE) */
89
90/* operator interface functions */
91void broadcast(const char *message);
92void infosch(int);

--- 86 unchanged lines hidden ---
85char sblock_buf[MAXBSIZE];
86long dev_bsize; /* block size of underlying disk device */
87int dev_bshift; /* log2(dev_bsize) */
88int tp_bshift; /* log2(TP_BSIZE) */
89
90/* operator interface functions */
91void broadcast(const char *message);
92void infosch(int);

--- 86 unchanged lines hidden ---