| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 2 |  *   Copyright (C) International Business Machines Corp., 2000-2002 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 |  * | 
 | 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 Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 6 |  *   the Free Software Foundation; either version 2 of the License, or | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 |  *   (at your option) any later version. | 
| Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 8 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. | 
 | 13 |  * | 
 | 14 |  *   You should have received a copy of the GNU General Public License | 
| Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 15 |  *   along with this program;  if not, write to the Free Software | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 |  *   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 Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 22 |  *	jfs_xtree.h: extent allocation descriptor B+-tree manager | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 |  */ | 
 | 24 |  | 
 | 25 | #include "jfs_btree.h" | 
 | 26 |  | 
 | 27 |  | 
 | 28 | /* | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 29 |  *	extent allocation descriptor (xad) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 |  */ | 
 | 31 | typedef struct xad { | 
 | 32 | 	unsigned flag:8;	/* 1: flag */ | 
 | 33 | 	unsigned rsvrd:16;	/* 2: reserved */ | 
 | 34 | 	unsigned off1:8;	/* 1: offset in unit of fsblksize */ | 
 | 35 | 	__le32 off2;		/* 4: offset in unit of fsblksize */ | 
 | 36 | 	unsigned len:24;	/* 3: length in unit of fsblksize */ | 
 | 37 | 	unsigned addr1:8;	/* 1: address in unit of fsblksize */ | 
 | 38 | 	__le32 addr2;		/* 4: address in unit of fsblksize */ | 
 | 39 | } xad_t;			/* (16) */ | 
 | 40 |  | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 41 | #define MAXXLEN		((1 << 24) - 1) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 |  | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 43 | #define XTSLOTSIZE	16 | 
 | 44 | #define L2XTSLOTSIZE	4 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 |  | 
 | 46 | /* xad_t field construction */ | 
 | 47 | #define XADoffset(xad, offset64)\ | 
 | 48 | {\ | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 49 | 	(xad)->off1 = ((u64)offset64) >> 32;\ | 
 | 50 | 	(xad)->off2 = __cpu_to_le32((offset64) & 0xffffffff);\ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | } | 
 | 52 | #define XADaddress(xad, address64)\ | 
 | 53 | {\ | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 54 | 	(xad)->addr1 = ((u64)address64) >> 32;\ | 
 | 55 | 	(xad)->addr2 = __cpu_to_le32((address64) & 0xffffffff);\ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 57 | #define XADlength(xad, length32)	(xad)->len = __cpu_to_le24(length32) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 |  | 
 | 59 | /* xad_t field extraction */ | 
 | 60 | #define offsetXAD(xad)\ | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 61 | 	( ((s64)((xad)->off1)) << 32 | __le32_to_cpu((xad)->off2)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #define addressXAD(xad)\ | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 63 | 	( ((s64)((xad)->addr1)) << 32 | __le32_to_cpu((xad)->addr2)) | 
 | 64 | #define lengthXAD(xad)	__le24_to_cpu((xad)->len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 |  | 
 | 66 | /* xad list */ | 
 | 67 | struct xadlist { | 
 | 68 | 	s16 maxnxad; | 
 | 69 | 	s16 nxad; | 
 | 70 | 	xad_t *xad; | 
 | 71 | }; | 
 | 72 |  | 
 | 73 | /* xad_t flags */ | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 74 | #define XAD_NEW		0x01	/* new */ | 
 | 75 | #define XAD_EXTENDED	0x02	/* extended */ | 
 | 76 | #define XAD_COMPRESSED	0x04	/* compressed with recorded length */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #define XAD_NOTRECORDED 0x08	/* allocated but not recorded */ | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 78 | #define XAD_COW		0x10	/* copy-on-write */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 |  | 
 | 80 |  | 
 | 81 | /* possible values for maxentry */ | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 82 | #define XTROOTINITSLOT_DIR 6 | 
 | 83 | #define XTROOTINITSLOT	10 | 
 | 84 | #define XTROOTMAXSLOT	18 | 
 | 85 | #define XTPAGEMAXSLOT	256 | 
 | 86 | #define XTENTRYSTART	2 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 |  | 
 | 88 | /* | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 89 |  *	xtree page: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 |  */ | 
 | 91 | typedef union { | 
 | 92 | 	struct xtheader { | 
 | 93 | 		__le64 next;	/* 8: */ | 
 | 94 | 		__le64 prev;	/* 8: */ | 
 | 95 |  | 
 | 96 | 		u8 flag;	/* 1: */ | 
 | 97 | 		u8 rsrvd1;	/* 1: */ | 
 | 98 | 		__le16 nextindex;	/* 2: next index = number of entries */ | 
 | 99 | 		__le16 maxentry;	/* 2: max number of entries */ | 
 | 100 | 		__le16 rsrvd2;	/* 2: */ | 
 | 101 |  | 
 | 102 | 		pxd_t self;	/* 8: self */ | 
 | 103 | 	} header;		/* (32) */ | 
 | 104 |  | 
 | 105 | 	xad_t xad[XTROOTMAXSLOT];	/* 16 * maxentry: xad array */ | 
 | 106 | } xtpage_t; | 
 | 107 |  | 
 | 108 | /* | 
| Dave Kleikamp | f720e3b | 2007-06-06 15:28:35 -0500 | [diff] [blame] | 109 |  *	external declaration | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 |  */ | 
 | 111 | extern int xtLookup(struct inode *ip, s64 lstart, s64 llen, | 
 | 112 | 		    int *pflag, s64 * paddr, int *plen, int flag); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | extern void xtInitRoot(tid_t tid, struct inode *ip); | 
 | 114 | extern int xtInsert(tid_t tid, struct inode *ip, | 
 | 115 | 		    int xflag, s64 xoff, int xlen, s64 * xaddrp, int flag); | 
 | 116 | extern int xtExtend(tid_t tid, struct inode *ip, s64 xoff, int xlen, | 
 | 117 | 		    int flag); | 
 | 118 | #ifdef _NOTYET | 
 | 119 | extern int xtTailgate(tid_t tid, struct inode *ip, | 
 | 120 | 		      s64 xoff, int xlen, s64 xaddr, int flag); | 
 | 121 | #endif | 
 | 122 | extern int xtUpdate(tid_t tid, struct inode *ip, struct xad *nxad); | 
 | 123 | extern int xtDelete(tid_t tid, struct inode *ip, s64 xoff, int xlen, | 
 | 124 | 		    int flag); | 
 | 125 | extern s64 xtTruncate(tid_t tid, struct inode *ip, s64 newsize, int type); | 
 | 126 | extern s64 xtTruncate_pmap(tid_t tid, struct inode *ip, s64 committed_size); | 
 | 127 | extern int xtRelocate(tid_t tid, struct inode *ip, | 
 | 128 | 		      xad_t * oxad, s64 nxaddr, int xtype); | 
 | 129 | extern int xtAppend(tid_t tid, | 
 | 130 | 		    struct inode *ip, int xflag, s64 xoff, int maxblocks, | 
 | 131 | 		    int *xlenp, s64 * xaddrp, int flag); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | #endif				/* !_H_JFS_XTREE */ |