blob: 1e0987986d5f963c1d46684d9a77dabdc13cdbbc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Dave Kleikamp63f83c92006-10-02 09:55:27 -05002 * Copyright (C) International Business Machines Corp., 2000-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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
Dave Kleikamp63f83c92006-10-02 09:55:27 -05006 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * (at your option) any later version.
Dave Kleikamp63f83c92006-10-02 09:55:27 -05008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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.
13 *
14 * You should have received a copy of the GNU General Public License
Dave Kleikamp63f83c92006-10-02 09:55:27 -050015 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18#ifndef _H_JFS_XTREE
19#define _H_JFS_XTREE
20
21/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -050022 * jfs_xtree.h: extent allocation descriptor B+-tree manager
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
25#include "jfs_btree.h"
26
27
28/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -050029 * extent allocation descriptor (xad)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
31typedef struct xad {
Al Viroe1f1fe72014-12-19 06:51:26 +000032 __u8 flag; /* 1: flag */
33 __u8 rsvrd[2]; /* 2: reserved */
34 __u8 off1; /* 1: offset in unit of fsblksize */
35 __le32 off2; /* 4: offset in unit of fsblksize */
36 pxd_t loc; /* 8: length and address in unit of fsblksize */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037} xad_t; /* (16) */
38
Dave Kleikampf720e3b2007-06-06 15:28:35 -050039#define MAXXLEN ((1 << 24) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Dave Kleikampf720e3b2007-06-06 15:28:35 -050041#define XTSLOTSIZE 16
42#define L2XTSLOTSIZE 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44/* xad_t field construction */
45#define XADoffset(xad, offset64)\
46{\
Dave Kleikampf720e3b2007-06-06 15:28:35 -050047 (xad)->off1 = ((u64)offset64) >> 32;\
48 (xad)->off2 = __cpu_to_le32((offset64) & 0xffffffff);\
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
Al Viroe1f1fe72014-12-19 06:51:26 +000050#define XADaddress(xad, address64) PXDaddress(&(xad)->loc, address64)
51#define XADlength(xad, length32) PXDlength(&(xad)->loc, length32)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/* xad_t field extraction */
54#define offsetXAD(xad)\
Dave Kleikampf720e3b2007-06-06 15:28:35 -050055 ( ((s64)((xad)->off1)) << 32 | __le32_to_cpu((xad)->off2))
Al Viroe1f1fe72014-12-19 06:51:26 +000056#define addressXAD(xad) addressPXD(&(xad)->loc)
57#define lengthXAD(xad) lengthPXD(&(xad)->loc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/* xad list */
60struct xadlist {
61 s16 maxnxad;
62 s16 nxad;
63 xad_t *xad;
64};
65
66/* xad_t flags */
Dave Kleikampf720e3b2007-06-06 15:28:35 -050067#define XAD_NEW 0x01 /* new */
68#define XAD_EXTENDED 0x02 /* extended */
69#define XAD_COMPRESSED 0x04 /* compressed with recorded length */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define XAD_NOTRECORDED 0x08 /* allocated but not recorded */
Dave Kleikampf720e3b2007-06-06 15:28:35 -050071#define XAD_COW 0x10 /* copy-on-write */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73
74/* possible values for maxentry */
Dave Kleikampf720e3b2007-06-06 15:28:35 -050075#define XTROOTINITSLOT_DIR 6
76#define XTROOTINITSLOT 10
77#define XTROOTMAXSLOT 18
78#define XTPAGEMAXSLOT 256
79#define XTENTRYSTART 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -050082 * xtree page:
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
84typedef union {
85 struct xtheader {
86 __le64 next; /* 8: */
87 __le64 prev; /* 8: */
88
89 u8 flag; /* 1: */
90 u8 rsrvd1; /* 1: */
91 __le16 nextindex; /* 2: next index = number of entries */
92 __le16 maxentry; /* 2: max number of entries */
93 __le16 rsrvd2; /* 2: */
94
95 pxd_t self; /* 8: self */
96 } header; /* (32) */
97
98 xad_t xad[XTROOTMAXSLOT]; /* 16 * maxentry: xad array */
99} xtpage_t;
100
101/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500102 * external declaration
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
104extern int xtLookup(struct inode *ip, s64 lstart, s64 llen,
105 int *pflag, s64 * paddr, int *plen, int flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106extern void xtInitRoot(tid_t tid, struct inode *ip);
107extern int xtInsert(tid_t tid, struct inode *ip,
108 int xflag, s64 xoff, int xlen, s64 * xaddrp, int flag);
109extern int xtExtend(tid_t tid, struct inode *ip, s64 xoff, int xlen,
110 int flag);
111#ifdef _NOTYET
112extern int xtTailgate(tid_t tid, struct inode *ip,
113 s64 xoff, int xlen, s64 xaddr, int flag);
114#endif
115extern int xtUpdate(tid_t tid, struct inode *ip, struct xad *nxad);
116extern int xtDelete(tid_t tid, struct inode *ip, s64 xoff, int xlen,
117 int flag);
118extern s64 xtTruncate(tid_t tid, struct inode *ip, s64 newsize, int type);
119extern s64 xtTruncate_pmap(tid_t tid, struct inode *ip, s64 committed_size);
120extern int xtRelocate(tid_t tid, struct inode *ip,
121 xad_t * oxad, s64 nxaddr, int xtype);
122extern int xtAppend(tid_t tid,
123 struct inode *ip, int xflag, s64 xoff, int maxblocks,
124 int *xlenp, s64 * xaddrp, int flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif /* !_H_JFS_XTREE */