Deleted Added
full compact
ffs_tables.c (93736) ffs_tables.c (98542)
1/*
2 * Copyright (c) 1982, 1986, 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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 * @(#)ffs_tables.c 8.1 (Berkeley) 6/11/93
1/*
2 * Copyright (c) 1982, 1986, 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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 * @(#)ffs_tables.c 8.1 (Berkeley) 6/11/93
34 * $FreeBSD: head/sys/ufs/ffs/ffs_tables.c 93736 2002-04-03 20:39:27Z phk $
34 * $FreeBSD: head/sys/ufs/ffs/ffs_tables.c 98542 2002-06-21 06:18:05Z mckusick $
35 */
36
37#include <sys/param.h>
35 */
36
37#include <sys/param.h>
38#include <ufs/ufs/dinode.h>
38#include <ufs/ffs/fs.h>
39
40/*
41 * Bit patterns for identifying fragments in the block map
42 * used as ((map & around) == inside)
43 */
44int around[9] = {
45 0x3, 0x7, 0xf, 0x1f, 0x3f, 0x7f, 0xff, 0x1ff, 0x3ff

--- 93 unchanged lines hidden ---
39#include <ufs/ffs/fs.h>
40
41/*
42 * Bit patterns for identifying fragments in the block map
43 * used as ((map & around) == inside)
44 */
45int around[9] = {
46 0x3, 0x7, 0xf, 0x1f, 0x3f, 0x7f, 0xff, 0x1ff, 0x3ff

--- 93 unchanged lines hidden ---