2 * Copyright (C) International Business Machines Corp., 2000-2004
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
12 * the GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * basic type/utility definitions
26 * note: this header file must be the 1st include file
27 * of JFS include list in all JFS .c file.
30 #include <linux/types.h>
31 #include <linux/nls.h>
34 * transaction and lock id's
36 * Don't change these without carefully considering the impact on the
37 * size and alignment of all of the linelock variants
43 * Almost identical to Linux's timespec, but not quite
54 #define LEFTMOSTONE 0x80000000
55 #define HIGHORDER 0x80000000u /* high order bit on */
56 #define ONES 0xffffffffu /* all bit on */
61 * The leftmost 24 bits of len_addr are the extent length.
62 * The rightmost 8 bits of len_addr are the most signficant bits of
70 /* xd_t field construction */
72 static inline void PXDlength(pxd_t
*pxd
, __u32 len
)
74 pxd
->len_addr
= (pxd
->len_addr
& cpu_to_le32(~0xffffff)) |
75 cpu_to_le32(len
& 0xffffff);
78 static inline void PXDaddress(pxd_t
*pxd
, __u64 addr
)
80 pxd
->len_addr
= (pxd
->len_addr
& cpu_to_le32(0xffffff)) |
81 cpu_to_le32((addr
>> 32)<<24);
82 pxd
->addr2
= cpu_to_le32(addr
& 0xffffffff);
85 /* xd_t field extraction */
86 static inline __u32
lengthPXD(pxd_t
*pxd
)
88 return le32_to_cpu((pxd
)->len_addr
) & 0xffffff;
91 static inline __u64
addressPXD(pxd_t
*pxd
)
93 __u64 n
= le32_to_cpu(pxd
->len_addr
) & ~0xffffff;
94 return (n
<< 8) + le32_to_cpu(pxd
->addr2
);
97 #define MAXTREEHEIGHT 8
102 pxd_t pxd
[MAXTREEHEIGHT
];
107 * data extent descriptor (dxd)
110 __u8 flag
; /* 1: flags */
112 __le32 size
; /* 4: size in byte */
113 pxd_t loc
; /* 8: address and length in unit of fsblksize */
114 } dxd_t
; /* - 16 - */
117 #define DXD_INDEX 0x80 /* B+-tree index */
118 #define DXD_INLINE 0x40 /* in-line data extent */
119 #define DXD_EXTENT 0x20 /* out-of-line single extent */
120 #define DXD_FILE 0x10 /* out-of-line file (inode) */
121 #define DXD_CORRUPT 0x08 /* Inconsistency detected */
123 /* dxd_t field construction
125 #define DXDlength(dxd, len) PXDlength(&(dxd)->loc, len)
126 #define DXDaddress(dxd, addr) PXDaddress(&(dxd)->loc, addr)
127 #define lengthDXD(dxd) lengthPXD(&(dxd)->loc)
128 #define addressDXD(dxd) addressPXD(&(dxd)->loc)
129 #define DXDsize(dxd, size32) ((dxd)->size = cpu_to_le32(size32))
130 #define sizeDXD(dxd) le32_to_cpu((dxd)->size)
133 * directory entry argument
135 struct component_name
{
142 * DASD limit information - stored in directory inode
145 u8 thresh
; /* Alert Threshold (in percent) */
146 u8 delta
; /* Alert Threshold delta (in percent) */
148 u8 limit_hi
; /* DASD limit (in logical blocks) */
149 __le32 limit_lo
; /* DASD limit (in logical blocks) */
151 u8 used_hi
; /* DASD usage (in logical blocks) */
152 __le32 used_lo
; /* DASD usage (in logical blocks) */
155 #define DASDLIMIT(dasdp) \
156 (((u64)((dasdp)->limit_hi) << 32) + __le32_to_cpu((dasdp)->limit_lo))
157 #define setDASDLIMIT(dasdp, limit)\
159 (dasdp)->limit_hi = ((u64)limit) >> 32;\
160 (dasdp)->limit_lo = __cpu_to_le32(limit);\
162 #define DASDUSED(dasdp) \
163 (((u64)((dasdp)->used_hi) << 32) + __le32_to_cpu((dasdp)->used_lo))
164 #define setDASDUSED(dasdp, used)\
166 (dasdp)->used_hi = ((u64)used) >> 32;\
167 (dasdp)->used_lo = __cpu_to_le32(used);\
170 #endif /* !_H_JFS_TYPES */