Deleted Added
full compact
ext2_dinode.h (202283) ext2_dinode.h (217585)
1/*-
2 * Copyright (c) 2009 Aditya Sarawgi
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2009 Aditya Sarawgi
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/fs/ext2fs/ext2_dinode.h 202283 2010-01-14 14:30:54Z lulf $
26 * $FreeBSD: head/sys/fs/ext2fs/ext2_dinode.h 217585 2011-01-19 16:55:32Z jhb $
27 */
28
29#ifndef _FS_EXT2FS_EXT2_DINODE_H_
30#define _FS_EXT2FS_EXT2_DINODE_H_
31
32#define e2di_size_high e2di_dacl
33
34/*

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

69 u_int8_t e2di_nfrag; /* 116: fragment number */
70 u_int8_t e2di_fsize; /* 117: fragment size */
71 u_int16_t e2di_linux_reserved2; /* 118 */
72 u_int16_t e2di_uid_high; /* 120: Owner UID top 16 bits */
73 u_int16_t e2di_gid_high; /* 122: Owner GID top 16 bits */
74 u_int32_t e2di_linux_reserved3; /* 124 */
75};
76
27 */
28
29#ifndef _FS_EXT2FS_EXT2_DINODE_H_
30#define _FS_EXT2FS_EXT2_DINODE_H_
31
32#define e2di_size_high e2di_dacl
33
34/*

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

69 u_int8_t e2di_nfrag; /* 116: fragment number */
70 u_int8_t e2di_fsize; /* 117: fragment size */
71 u_int16_t e2di_linux_reserved2; /* 118 */
72 u_int16_t e2di_uid_high; /* 120: Owner UID top 16 bits */
73 u_int16_t e2di_gid_high; /* 122: Owner GID top 16 bits */
74 u_int32_t e2di_linux_reserved3; /* 124 */
75};
76
77#endif /* _FS_EXT2FS_EXT2_DINODE_H_ */
77#endif /* !_FS_EXT2FS_EXT2_DINODE_H_ */
78
78