| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved. | 
| Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 3 |  * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved. | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 4 |  * | 
 | 5 |  * This copyrighted material is made available to anyone wishing to use, | 
 | 6 |  * modify, copy, or redistribute it subject to the terms and conditions | 
| Steven Whitehouse | e9fc2aa | 2006-09-01 11:05:15 -0400 | [diff] [blame] | 7 |  * of the GNU General Public License version 2. | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 8 |  */ | 
 | 9 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 10 | #include <linux/slab.h> | 
 | 11 | #include <linux/spinlock.h> | 
 | 12 | #include <linux/completion.h> | 
 | 13 | #include <linux/buffer_head.h> | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 14 | #include <linux/gfs2_ondisk.h> | 
| Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 15 | #include <linux/crc32.h> | 
| Fabio Massimo Di Nitto | 7d30859 | 2006-09-19 07:56:29 +0200 | [diff] [blame] | 16 | #include <linux/lm_interface.h> | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 17 |  | 
 | 18 | #include "gfs2.h" | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 19 | #include "incore.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 20 | #include "bmap.h" | 
 | 21 | #include "glock.h" | 
 | 22 | #include "inode.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 23 | #include "meta_io.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 24 | #include "quota.h" | 
 | 25 | #include "rgrp.h" | 
 | 26 | #include "trans.h" | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 27 | #include "dir.h" | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 28 | #include "util.h" | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 29 | #include "ops_address.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 30 |  | 
 | 31 | /* This doesn't need to be that large as max 64 bit pointers in a 4k | 
 | 32 |  * block is 512, so __u16 is fine for that. It saves stack space to | 
 | 33 |  * keep it small. | 
 | 34 |  */ | 
 | 35 | struct metapath { | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 36 | 	struct buffer_head *mp_bh[GFS2_MAX_META_HEIGHT]; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 37 | 	__u16 mp_list[GFS2_MAX_META_HEIGHT]; | 
 | 38 | }; | 
 | 39 |  | 
 | 40 | typedef int (*block_call_t) (struct gfs2_inode *ip, struct buffer_head *dibh, | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 41 | 			     struct buffer_head *bh, __be64 *top, | 
 | 42 | 			     __be64 *bottom, unsigned int height, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 43 | 			     void *data); | 
 | 44 |  | 
 | 45 | struct strip_mine { | 
 | 46 | 	int sm_first; | 
 | 47 | 	unsigned int sm_height; | 
 | 48 | }; | 
 | 49 |  | 
 | 50 | /** | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 51 |  * gfs2_unstuffer_page - unstuff a stuffed inode into a block cached by a page | 
 | 52 |  * @ip: the inode | 
 | 53 |  * @dibh: the dinode buffer | 
 | 54 |  * @block: the block number that was allocated | 
 | 55 |  * @private: any locked page held by the caller process | 
 | 56 |  * | 
 | 57 |  * Returns: errno | 
 | 58 |  */ | 
 | 59 |  | 
 | 60 | static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct buffer_head *dibh, | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 61 | 			       u64 block, struct page *page) | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 62 | { | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 63 | 	struct inode *inode = &ip->i_inode; | 
 | 64 | 	struct buffer_head *bh; | 
 | 65 | 	int release = 0; | 
 | 66 |  | 
 | 67 | 	if (!page || page->index) { | 
 | 68 | 		page = grab_cache_page(inode->i_mapping, 0); | 
 | 69 | 		if (!page) | 
 | 70 | 			return -ENOMEM; | 
 | 71 | 		release = 1; | 
 | 72 | 	} | 
 | 73 |  | 
 | 74 | 	if (!PageUptodate(page)) { | 
 | 75 | 		void *kaddr = kmap(page); | 
 | 76 |  | 
 | 77 | 		memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode), | 
 | 78 | 		       ip->i_di.di_size); | 
 | 79 | 		memset(kaddr + ip->i_di.di_size, 0, | 
 | 80 | 		       PAGE_CACHE_SIZE - ip->i_di.di_size); | 
 | 81 | 		kunmap(page); | 
 | 82 |  | 
 | 83 | 		SetPageUptodate(page); | 
 | 84 | 	} | 
 | 85 |  | 
 | 86 | 	if (!page_has_buffers(page)) | 
 | 87 | 		create_empty_buffers(page, 1 << inode->i_blkbits, | 
 | 88 | 				     (1 << BH_Uptodate)); | 
 | 89 |  | 
 | 90 | 	bh = page_buffers(page); | 
 | 91 |  | 
 | 92 | 	if (!buffer_mapped(bh)) | 
 | 93 | 		map_bh(bh, inode->i_sb, block); | 
 | 94 |  | 
 | 95 | 	set_buffer_uptodate(bh); | 
| Steven Whitehouse | eaf9652 | 2007-08-27 09:49:37 +0100 | [diff] [blame] | 96 | 	if (!gfs2_is_jdata(ip)) | 
 | 97 | 		mark_buffer_dirty(bh); | 
| Steven Whitehouse | bf36a71 | 2007-10-17 08:35:19 +0100 | [diff] [blame] | 98 | 	if (!gfs2_is_writeback(ip)) | 
| Bob Peterson | 8475487 | 2007-09-02 10:55:29 +0100 | [diff] [blame] | 99 | 		gfs2_trans_add_bh(ip->i_gl, bh, 0); | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 100 |  | 
 | 101 | 	if (release) { | 
 | 102 | 		unlock_page(page); | 
 | 103 | 		page_cache_release(page); | 
 | 104 | 	} | 
 | 105 |  | 
 | 106 | 	return 0; | 
 | 107 | } | 
 | 108 |  | 
 | 109 | /** | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 110 |  * gfs2_unstuff_dinode - Unstuff a dinode when the data has grown too big | 
 | 111 |  * @ip: The GFS2 inode to unstuff | 
 | 112 |  * @unstuffer: the routine that handles unstuffing a non-zero length file | 
 | 113 |  * @private: private data for the unstuffer | 
 | 114 |  * | 
 | 115 |  * This routine unstuffs a dinode and returns it to a "normal" state such | 
 | 116 |  * that the height can be grown in the traditional way. | 
 | 117 |  * | 
 | 118 |  * Returns: errno | 
 | 119 |  */ | 
 | 120 |  | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 121 | int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 122 | { | 
 | 123 | 	struct buffer_head *bh, *dibh; | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 124 | 	struct gfs2_dinode *di; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 125 | 	u64 block = 0; | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 126 | 	int isdir = gfs2_is_dir(ip); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 127 | 	int error; | 
 | 128 |  | 
 | 129 | 	down_write(&ip->i_rw_mutex); | 
 | 130 |  | 
 | 131 | 	error = gfs2_meta_inode_buffer(ip, &dibh); | 
 | 132 | 	if (error) | 
 | 133 | 		goto out; | 
| Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 134 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 135 | 	if (ip->i_di.di_size) { | 
 | 136 | 		/* Get a free block, fill it with the stuffed data, | 
 | 137 | 		   and write it out to disk */ | 
 | 138 |  | 
| Steven Whitehouse | b45e41d | 2008-02-06 10:11:15 +0000 | [diff] [blame] | 139 | 		unsigned int n = 1; | 
 | 140 | 		block = gfs2_alloc_block(ip, &n); | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 141 | 		if (isdir) { | 
| Steven Whitehouse | 5731be5 | 2008-02-01 13:16:55 +0000 | [diff] [blame] | 142 | 			gfs2_trans_add_unrevoke(GFS2_SB(&ip->i_inode), block, 1); | 
| Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 143 | 			error = gfs2_dir_get_new_buffer(ip, block, &bh); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 144 | 			if (error) | 
 | 145 | 				goto out_brelse; | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 146 | 			gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_meta_header), | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 147 | 					      dibh, sizeof(struct gfs2_dinode)); | 
 | 148 | 			brelse(bh); | 
 | 149 | 		} else { | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 150 | 			error = gfs2_unstuffer_page(ip, dibh, block, page); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 151 | 			if (error) | 
 | 152 | 				goto out_brelse; | 
 | 153 | 		} | 
 | 154 | 	} | 
 | 155 |  | 
 | 156 | 	/*  Set up the pointer to the new block  */ | 
 | 157 |  | 
| Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 158 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 159 | 	di = (struct gfs2_dinode *)dibh->b_data; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 160 | 	gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode)); | 
 | 161 |  | 
 | 162 | 	if (ip->i_di.di_size) { | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 163 | 		*(__be64 *)(di + 1) = cpu_to_be64(block); | 
| Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 164 | 		gfs2_add_inode_blocks(&ip->i_inode, 1); | 
 | 165 | 		di->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode)); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 166 | 	} | 
 | 167 |  | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 168 | 	ip->i_height = 1; | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 169 | 	di->di_height = cpu_to_be16(1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 170 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 171 | out_brelse: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 172 | 	brelse(dibh); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 173 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 174 | 	up_write(&ip->i_rw_mutex); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 175 | 	return error; | 
 | 176 | } | 
 | 177 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 178 |  | 
 | 179 | /** | 
 | 180 |  * find_metapath - Find path through the metadata tree | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 181 |  * @sdp: The superblock | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 182 |  * @mp: The metapath to return the result in | 
 | 183 |  * @block: The disk block to look up | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 184 |  * @height: The pre-calculated height of the metadata tree | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 185 |  * | 
 | 186 |  *   This routine returns a struct metapath structure that defines a path | 
 | 187 |  *   through the metadata of inode "ip" to get to block "block". | 
 | 188 |  * | 
 | 189 |  *   Example: | 
 | 190 |  *   Given:  "ip" is a height 3 file, "offset" is 101342453, and this is a | 
 | 191 |  *   filesystem with a blocksize of 4096. | 
 | 192 |  * | 
 | 193 |  *   find_metapath() would return a struct metapath structure set to: | 
 | 194 |  *   mp_offset = 101342453, mp_height = 3, mp_list[0] = 0, mp_list[1] = 48, | 
 | 195 |  *   and mp_list[2] = 165. | 
 | 196 |  * | 
 | 197 |  *   That means that in order to get to the block containing the byte at | 
 | 198 |  *   offset 101342453, we would load the indirect block pointed to by pointer | 
 | 199 |  *   0 in the dinode.  We would then load the indirect block pointed to by | 
 | 200 |  *   pointer 48 in that indirect block.  We would then load the data block | 
 | 201 |  *   pointed to by pointer 165 in that indirect block. | 
 | 202 |  * | 
 | 203 |  *             ---------------------------------------- | 
 | 204 |  *             | Dinode |                             | | 
 | 205 |  *             |        |                            4| | 
 | 206 |  *             |        |0 1 2 3 4 5                 9| | 
 | 207 |  *             |        |                            6| | 
 | 208 |  *             ---------------------------------------- | 
 | 209 |  *                       | | 
 | 210 |  *                       | | 
 | 211 |  *                       V | 
 | 212 |  *             ---------------------------------------- | 
 | 213 |  *             | Indirect Block                       | | 
 | 214 |  *             |                                     5| | 
 | 215 |  *             |            4 4 4 4 4 5 5            1| | 
 | 216 |  *             |0           5 6 7 8 9 0 1            2| | 
 | 217 |  *             ---------------------------------------- | 
 | 218 |  *                                | | 
 | 219 |  *                                | | 
 | 220 |  *                                V | 
 | 221 |  *             ---------------------------------------- | 
 | 222 |  *             | Indirect Block                       | | 
 | 223 |  *             |                         1 1 1 1 1   5| | 
 | 224 |  *             |                         6 6 6 6 6   1| | 
 | 225 |  *             |0                        3 4 5 6 7   2| | 
 | 226 |  *             ---------------------------------------- | 
 | 227 |  *                                           | | 
 | 228 |  *                                           | | 
 | 229 |  *                                           V | 
 | 230 |  *             ---------------------------------------- | 
 | 231 |  *             | Data block containing offset         | | 
 | 232 |  *             |            101342453                 | | 
 | 233 |  *             |                                      | | 
 | 234 |  *             |                                      | | 
 | 235 |  *             ---------------------------------------- | 
 | 236 |  * | 
 | 237 |  */ | 
 | 238 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 239 | static void find_metapath(const struct gfs2_sbd *sdp, u64 block, | 
 | 240 | 			  struct metapath *mp, unsigned int height) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 241 | { | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 242 | 	unsigned int i; | 
 | 243 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 244 | 	for (i = height; i--;) | 
| Bob Peterson | 7eabb77 | 2008-01-28 11:24:35 -0600 | [diff] [blame] | 245 | 		mp->mp_list[i] = do_div(block, sdp->sd_inptrs); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 246 |  | 
 | 247 | } | 
 | 248 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 249 | static inline unsigned int zero_metapath_length(const struct metapath *mp, | 
 | 250 | 						unsigned height) | 
 | 251 | { | 
 | 252 | 	unsigned int i; | 
 | 253 | 	for (i = 0; i < height - 1; i++) { | 
 | 254 | 		if (mp->mp_list[i] != 0) | 
 | 255 | 			return i; | 
 | 256 | 	} | 
 | 257 | 	return height; | 
 | 258 | } | 
 | 259 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 260 | /** | 
 | 261 |  * metapointer - Return pointer to start of metadata in a buffer | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 262 |  * @height: The metadata height (0 = dinode) | 
 | 263 |  * @mp: The metapath | 
 | 264 |  * | 
 | 265 |  * Return a pointer to the block number of the next height of the metadata | 
 | 266 |  * tree given a buffer containing the pointer to the current height of the | 
 | 267 |  * metadata tree. | 
 | 268 |  */ | 
 | 269 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 270 | static inline __be64 *metapointer(unsigned int height, const struct metapath *mp) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 271 | { | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 272 | 	struct buffer_head *bh = mp->mp_bh[height]; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 273 | 	unsigned int head_size = (height > 0) ? | 
 | 274 | 		sizeof(struct gfs2_meta_header) : sizeof(struct gfs2_dinode); | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 275 | 	return ((__be64 *)(bh->b_data + head_size)) + mp->mp_list[height]; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 276 | } | 
 | 277 |  | 
 | 278 | /** | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 279 |  * lookup_metapath - Walk the metadata tree to a specific point | 
 | 280 |  * @ip: The inode | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 281 |  * @mp: The metapath | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 282 |  * | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 283 |  * Assumes that the inode's buffer has already been looked up and | 
 | 284 |  * hooked onto mp->mp_bh[0] and that the metapath has been initialised | 
 | 285 |  * by find_metapath(). | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 286 |  * | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 287 |  * If this function encounters part of the tree which has not been | 
 | 288 |  * allocated, it returns the current height of the tree at the point | 
 | 289 |  * at which it found the unallocated block. Blocks which are found are | 
 | 290 |  * added to the mp->mp_bh[] list. | 
 | 291 |  * | 
 | 292 |  * Returns: error or height of metadata tree | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 293 |  */ | 
 | 294 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 295 | static int lookup_metapath(struct gfs2_inode *ip, struct metapath *mp) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 296 | { | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 297 | 	unsigned int end_of_metadata = ip->i_height - 1; | 
 | 298 | 	unsigned int x; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 299 | 	__be64 *ptr; | 
 | 300 | 	u64 dblock; | 
| Steven Whitehouse | e23159d | 2008-02-12 14:48:39 +0000 | [diff] [blame] | 301 | 	int ret; | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 302 |  | 
 | 303 | 	for (x = 0; x < end_of_metadata; x++) { | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 304 | 		ptr = metapointer(x, mp); | 
 | 305 | 		dblock = be64_to_cpu(*ptr); | 
 | 306 | 		if (!dblock) | 
 | 307 | 			return x + 1; | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 308 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 309 | 		ret = gfs2_meta_indirect_buffer(ip, x+1, dblock, 0, &mp->mp_bh[x+1]); | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 310 | 		if (ret) | 
 | 311 | 			return ret; | 
 | 312 | 	} | 
 | 313 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 314 | 	return ip->i_height; | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 315 | } | 
 | 316 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 317 | static inline void release_metapath(struct metapath *mp) | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 318 | { | 
 | 319 | 	int i; | 
 | 320 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 321 | 	for (i = 0; i < GFS2_MAX_META_HEIGHT; i++) { | 
 | 322 | 		if (mp->mp_bh[i] == NULL) | 
 | 323 | 			break; | 
 | 324 | 		brelse(mp->mp_bh[i]); | 
 | 325 | 	} | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 326 | } | 
 | 327 |  | 
| Steven Whitehouse | 30cbf18 | 2008-02-08 13:18:11 +0000 | [diff] [blame] | 328 | /** | 
 | 329 |  * gfs2_extent_length - Returns length of an extent of blocks | 
 | 330 |  * @start: Start of the buffer | 
 | 331 |  * @len: Length of the buffer in bytes | 
 | 332 |  * @ptr: Current position in the buffer | 
 | 333 |  * @limit: Max extent length to return (0 = unlimited) | 
 | 334 |  * @eob: Set to 1 if we hit "end of block" | 
 | 335 |  * | 
 | 336 |  * If the first block is zero (unallocated) it will return the number of | 
 | 337 |  * unallocated blocks in the extent, otherwise it will return the number | 
 | 338 |  * of contiguous blocks in the extent. | 
 | 339 |  * | 
 | 340 |  * Returns: The length of the extent (minimum of one block) | 
 | 341 |  */ | 
 | 342 |  | 
 | 343 | static inline unsigned int gfs2_extent_length(void *start, unsigned int len, __be64 *ptr, unsigned limit, int *eob) | 
 | 344 | { | 
 | 345 | 	const __be64 *end = (start + len); | 
 | 346 | 	const __be64 *first = ptr; | 
 | 347 | 	u64 d = be64_to_cpu(*ptr); | 
 | 348 |  | 
 | 349 | 	*eob = 0; | 
 | 350 | 	do { | 
 | 351 | 		ptr++; | 
 | 352 | 		if (ptr >= end) | 
 | 353 | 			break; | 
 | 354 | 		if (limit && --limit == 0) | 
 | 355 | 			break; | 
 | 356 | 		if (d) | 
 | 357 | 			d++; | 
 | 358 | 	} while(be64_to_cpu(*ptr) == d); | 
 | 359 | 	if (ptr >= end) | 
 | 360 | 		*eob = 1; | 
 | 361 | 	return (ptr - first); | 
 | 362 | } | 
 | 363 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 364 | static inline void bmap_lock(struct gfs2_inode *ip, int create) | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 365 | { | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 366 | 	if (create) | 
 | 367 | 		down_write(&ip->i_rw_mutex); | 
 | 368 | 	else | 
 | 369 | 		down_read(&ip->i_rw_mutex); | 
 | 370 | } | 
 | 371 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 372 | static inline void bmap_unlock(struct gfs2_inode *ip, int create) | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 373 | { | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 374 | 	if (create) | 
 | 375 | 		up_write(&ip->i_rw_mutex); | 
 | 376 | 	else | 
 | 377 | 		up_read(&ip->i_rw_mutex); | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 378 | } | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 379 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 380 | static inline __be64 *gfs2_indirect_init(struct metapath *mp, | 
 | 381 | 					 struct gfs2_glock *gl, unsigned int i, | 
 | 382 | 					 unsigned offset, u64 bn) | 
 | 383 | { | 
 | 384 | 	__be64 *ptr = (__be64 *)(mp->mp_bh[i - 1]->b_data + | 
 | 385 | 		       ((i > 1) ? sizeof(struct gfs2_meta_header) : | 
 | 386 | 				 sizeof(struct gfs2_dinode))); | 
 | 387 | 	BUG_ON(i < 1); | 
 | 388 | 	BUG_ON(mp->mp_bh[i] != NULL); | 
 | 389 | 	mp->mp_bh[i] = gfs2_meta_new(gl, bn); | 
 | 390 | 	gfs2_trans_add_bh(gl, mp->mp_bh[i], 1); | 
 | 391 | 	gfs2_metatype_set(mp->mp_bh[i], GFS2_METATYPE_IN, GFS2_FORMAT_IN); | 
 | 392 | 	gfs2_buffer_clear_tail(mp->mp_bh[i], sizeof(struct gfs2_meta_header)); | 
 | 393 | 	ptr += offset; | 
 | 394 | 	*ptr = cpu_to_be64(bn); | 
 | 395 | 	return ptr; | 
 | 396 | } | 
 | 397 |  | 
 | 398 | enum alloc_state { | 
 | 399 | 	ALLOC_DATA = 0, | 
 | 400 | 	ALLOC_GROW_DEPTH = 1, | 
 | 401 | 	ALLOC_GROW_HEIGHT = 2, | 
 | 402 | 	/* ALLOC_UNSTUFF = 3,   TBD and rather complicated */ | 
 | 403 | }; | 
 | 404 |  | 
 | 405 | /** | 
 | 406 |  * gfs2_bmap_alloc - Build a metadata tree of the requested height | 
 | 407 |  * @inode: The GFS2 inode | 
 | 408 |  * @lblock: The logical starting block of the extent | 
 | 409 |  * @bh_map: This is used to return the mapping details | 
 | 410 |  * @mp: The metapath | 
 | 411 |  * @sheight: The starting height (i.e. whats already mapped) | 
 | 412 |  * @height: The height to build to | 
 | 413 |  * @maxlen: The max number of data blocks to alloc | 
 | 414 |  * | 
 | 415 |  * In this routine we may have to alloc: | 
 | 416 |  *   i) Indirect blocks to grow the metadata tree height | 
 | 417 |  *  ii) Indirect blocks to fill in lower part of the metadata tree | 
 | 418 |  * iii) Data blocks | 
 | 419 |  * | 
 | 420 |  * The function is in two parts. The first part works out the total | 
 | 421 |  * number of blocks which we need. The second part does the actual | 
 | 422 |  * allocation asking for an extent at a time (if enough contiguous free | 
 | 423 |  * blocks are available, there will only be one request per bmap call) | 
 | 424 |  * and uses the state machine to initialise the blocks in order. | 
 | 425 |  * | 
 | 426 |  * Returns: errno on error | 
 | 427 |  */ | 
 | 428 |  | 
 | 429 | static int gfs2_bmap_alloc(struct inode *inode, const sector_t lblock, | 
 | 430 | 			   struct buffer_head *bh_map, struct metapath *mp, | 
 | 431 | 			   const unsigned int sheight, | 
 | 432 | 			   const unsigned int height, | 
 | 433 | 			   const unsigned int maxlen) | 
 | 434 | { | 
 | 435 | 	struct gfs2_inode *ip = GFS2_I(inode); | 
 | 436 | 	struct gfs2_sbd *sdp = GFS2_SB(inode); | 
 | 437 | 	struct buffer_head *dibh = mp->mp_bh[0]; | 
 | 438 | 	u64 bn, dblock = 0; | 
 | 439 | 	unsigned n, i, blks, alloced = 0, iblks = 0, zmpl = 0; | 
 | 440 | 	unsigned dblks = 0; | 
 | 441 | 	unsigned ptrs_per_blk; | 
 | 442 | 	const unsigned end_of_metadata = height - 1; | 
 | 443 | 	int eob = 0; | 
 | 444 | 	enum alloc_state state; | 
 | 445 | 	__be64 *ptr; | 
 | 446 | 	__be64 zero_bn = 0; | 
 | 447 |  | 
 | 448 | 	BUG_ON(sheight < 1); | 
 | 449 | 	BUG_ON(dibh == NULL); | 
 | 450 |  | 
 | 451 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
 | 452 |  | 
 | 453 | 	if (height == sheight) { | 
 | 454 | 		struct buffer_head *bh; | 
 | 455 | 		/* Bottom indirect block exists, find unalloced extent size */ | 
 | 456 | 		ptr = metapointer(end_of_metadata, mp); | 
 | 457 | 		bh = mp->mp_bh[end_of_metadata]; | 
 | 458 | 		dblks = gfs2_extent_length(bh->b_data, bh->b_size, ptr, maxlen, | 
 | 459 | 					   &eob); | 
 | 460 | 		BUG_ON(dblks < 1); | 
 | 461 | 		state = ALLOC_DATA; | 
 | 462 | 	} else { | 
 | 463 | 		/* Need to allocate indirect blocks */ | 
 | 464 | 		ptrs_per_blk = height > 1 ? sdp->sd_inptrs : sdp->sd_diptrs; | 
 | 465 | 		dblks = min(maxlen, ptrs_per_blk - mp->mp_list[end_of_metadata]); | 
 | 466 | 		if (height == ip->i_height) { | 
 | 467 | 			/* Writing into existing tree, extend tree down */ | 
 | 468 | 			iblks = height - sheight; | 
 | 469 | 			state = ALLOC_GROW_DEPTH; | 
 | 470 | 		} else { | 
 | 471 | 			/* Building up tree height */ | 
 | 472 | 			state = ALLOC_GROW_HEIGHT; | 
 | 473 | 			iblks = height - ip->i_height; | 
 | 474 | 			zmpl = zero_metapath_length(mp, height); | 
 | 475 | 			iblks -= zmpl; | 
 | 476 | 			iblks += height; | 
 | 477 | 		} | 
 | 478 | 	} | 
 | 479 |  | 
 | 480 | 	/* start of the second part of the function (state machine) */ | 
 | 481 |  | 
 | 482 | 	blks = dblks + iblks; | 
 | 483 | 	i = sheight; | 
 | 484 | 	do { | 
 | 485 | 		n = blks - alloced; | 
 | 486 | 		bn = gfs2_alloc_block(ip, &n); | 
 | 487 | 		alloced += n; | 
 | 488 | 		if (state != ALLOC_DATA || gfs2_is_jdata(ip)) | 
 | 489 | 			gfs2_trans_add_unrevoke(sdp, bn, n); | 
 | 490 | 		switch (state) { | 
 | 491 | 		/* Growing height of tree */ | 
 | 492 | 		case ALLOC_GROW_HEIGHT: | 
 | 493 | 			if (i == 1) { | 
 | 494 | 				ptr = (__be64 *)(dibh->b_data + | 
 | 495 | 						 sizeof(struct gfs2_dinode)); | 
 | 496 | 				zero_bn = *ptr; | 
 | 497 | 			} | 
 | 498 | 			for (; i - 1 < height - ip->i_height && n > 0; i++, n--) | 
 | 499 | 				gfs2_indirect_init(mp, ip->i_gl, i, 0, bn++); | 
 | 500 | 			if (i - 1 == height - ip->i_height) { | 
 | 501 | 				i--; | 
 | 502 | 				gfs2_buffer_copy_tail(mp->mp_bh[i], | 
 | 503 | 						sizeof(struct gfs2_meta_header), | 
 | 504 | 						dibh, sizeof(struct gfs2_dinode)); | 
 | 505 | 				gfs2_buffer_clear_tail(dibh, | 
 | 506 | 						sizeof(struct gfs2_dinode) + | 
 | 507 | 						sizeof(__be64)); | 
 | 508 | 				ptr = (__be64 *)(mp->mp_bh[i]->b_data + | 
 | 509 | 					sizeof(struct gfs2_meta_header)); | 
 | 510 | 				*ptr = zero_bn; | 
 | 511 | 				state = ALLOC_GROW_DEPTH; | 
 | 512 | 				for(i = zmpl; i < height; i++) { | 
 | 513 | 					if (mp->mp_bh[i] == NULL) | 
 | 514 | 						break; | 
 | 515 | 					brelse(mp->mp_bh[i]); | 
 | 516 | 					mp->mp_bh[i] = NULL; | 
 | 517 | 				} | 
 | 518 | 				i = zmpl; | 
 | 519 | 			} | 
 | 520 | 			if (n == 0) | 
 | 521 | 				break; | 
 | 522 | 		/* Branching from existing tree */ | 
 | 523 | 		case ALLOC_GROW_DEPTH: | 
 | 524 | 			if (i > 1 && i < height) | 
 | 525 | 				gfs2_trans_add_bh(ip->i_gl, mp->mp_bh[i-1], 1); | 
 | 526 | 			for (; i < height && n > 0; i++, n--) | 
 | 527 | 				gfs2_indirect_init(mp, ip->i_gl, i, | 
 | 528 | 						   mp->mp_list[i-1], bn++); | 
 | 529 | 			if (i == height) | 
 | 530 | 				state = ALLOC_DATA; | 
 | 531 | 			if (n == 0) | 
 | 532 | 				break; | 
 | 533 | 		/* Tree complete, adding data blocks */ | 
 | 534 | 		case ALLOC_DATA: | 
 | 535 | 			BUG_ON(n > dblks); | 
 | 536 | 			BUG_ON(mp->mp_bh[end_of_metadata] == NULL); | 
 | 537 | 			gfs2_trans_add_bh(ip->i_gl, mp->mp_bh[end_of_metadata], 1); | 
 | 538 | 			dblks = n; | 
 | 539 | 			ptr = metapointer(end_of_metadata, mp); | 
 | 540 | 			dblock = bn; | 
 | 541 | 			while (n-- > 0) | 
 | 542 | 				*ptr++ = cpu_to_be64(bn++); | 
 | 543 | 			break; | 
 | 544 | 		} | 
 | 545 | 	} while (state != ALLOC_DATA); | 
 | 546 |  | 
 | 547 | 	ip->i_height = height; | 
 | 548 | 	gfs2_add_inode_blocks(&ip->i_inode, alloced); | 
 | 549 | 	gfs2_dinode_out(ip, mp->mp_bh[0]->b_data); | 
 | 550 | 	map_bh(bh_map, inode->i_sb, dblock); | 
 | 551 | 	bh_map->b_size = dblks << inode->i_blkbits; | 
 | 552 | 	set_buffer_new(bh_map); | 
 | 553 | 	return 0; | 
 | 554 | } | 
 | 555 |  | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 556 | /** | 
 | 557 |  * gfs2_block_map - Map a block from an inode to a disk block | 
 | 558 |  * @inode: The inode | 
 | 559 |  * @lblock: The logical block number | 
 | 560 |  * @bh_map: The bh to be mapped | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 561 |  * @create: True if its ok to alloc blocks to satify the request | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 562 |  * | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 563 |  * Sets buffer_mapped() if successful, sets buffer_boundary() if a | 
 | 564 |  * read of metadata will be required before the next block can be | 
 | 565 |  * mapped. Sets buffer_new() if new blocks were allocated. | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 566 |  * | 
 | 567 |  * Returns: errno | 
 | 568 |  */ | 
 | 569 |  | 
| Bob Peterson | e9e1ef2 | 2007-12-10 14:13:27 -0600 | [diff] [blame] | 570 | int gfs2_block_map(struct inode *inode, sector_t lblock, | 
 | 571 | 		   struct buffer_head *bh_map, int create) | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 572 | { | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 573 | 	struct gfs2_inode *ip = GFS2_I(inode); | 
 | 574 | 	struct gfs2_sbd *sdp = GFS2_SB(inode); | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 575 | 	unsigned int bsize = sdp->sd_sb.sb_bsize; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 576 | 	const unsigned int maxlen = bh_map->b_size >> inode->i_blkbits; | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 577 | 	const u64 *arr = sdp->sd_heightsize; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 578 | 	__be64 *ptr; | 
 | 579 | 	u64 size; | 
 | 580 | 	struct metapath mp; | 
 | 581 | 	int ret; | 
 | 582 | 	int eob; | 
 | 583 | 	unsigned int len; | 
 | 584 | 	struct buffer_head *bh; | 
 | 585 | 	u8 height; | 
 | 586 |  | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 587 | 	BUG_ON(maxlen == 0); | 
 | 588 |  | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 589 | 	memset(mp.mp_bh, 0, sizeof(mp.mp_bh)); | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 590 | 	bmap_lock(ip, create); | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 591 | 	clear_buffer_mapped(bh_map); | 
 | 592 | 	clear_buffer_new(bh_map); | 
 | 593 | 	clear_buffer_boundary(bh_map); | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 594 | 	if (gfs2_is_dir(ip)) { | 
 | 595 | 		bsize = sdp->sd_jbsize; | 
 | 596 | 		arr = sdp->sd_jheightsize; | 
 | 597 | 	} | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 598 |  | 
 | 599 | 	ret = gfs2_meta_inode_buffer(ip, &mp.mp_bh[0]); | 
 | 600 | 	if (ret) | 
 | 601 | 		goto out; | 
 | 602 |  | 
 | 603 | 	height = ip->i_height; | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 604 | 	size = (lblock + 1) * bsize; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 605 | 	while (size > arr[height]) | 
 | 606 | 		height++; | 
 | 607 | 	find_metapath(sdp, lblock, &mp, height); | 
 | 608 | 	ret = 1; | 
 | 609 | 	if (height > ip->i_height || gfs2_is_stuffed(ip)) | 
 | 610 | 		goto do_alloc; | 
 | 611 | 	ret = lookup_metapath(ip, &mp); | 
 | 612 | 	if (ret < 0) | 
 | 613 | 		goto out; | 
 | 614 | 	if (ret != ip->i_height) | 
 | 615 | 		goto do_alloc; | 
 | 616 | 	ptr = metapointer(ip->i_height - 1, &mp); | 
 | 617 | 	if (*ptr == 0) | 
 | 618 | 		goto do_alloc; | 
 | 619 | 	map_bh(bh_map, inode->i_sb, be64_to_cpu(*ptr)); | 
 | 620 | 	bh = mp.mp_bh[ip->i_height - 1]; | 
 | 621 | 	len = gfs2_extent_length(bh->b_data, bh->b_size, ptr, maxlen, &eob); | 
 | 622 | 	bh_map->b_size = (len << inode->i_blkbits); | 
 | 623 | 	if (eob) | 
 | 624 | 		set_buffer_boundary(bh_map); | 
 | 625 | 	ret = 0; | 
 | 626 | out: | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 627 | 	release_metapath(&mp); | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 628 | 	bmap_unlock(ip, create); | 
 | 629 | 	return ret; | 
 | 630 |  | 
 | 631 | do_alloc: | 
 | 632 | 	/* All allocations are done here, firstly check create flag */ | 
 | 633 | 	if (!create) { | 
 | 634 | 		BUG_ON(gfs2_is_stuffed(ip)); | 
 | 635 | 		ret = 0; | 
 | 636 | 		goto out; | 
 | 637 | 	} | 
 | 638 |  | 
 | 639 | 	/* At this point ret is the tree depth of already allocated blocks */ | 
 | 640 | 	ret = gfs2_bmap_alloc(inode, lblock, bh_map, &mp, ret, height, maxlen); | 
 | 641 | 	goto out; | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 642 | } | 
 | 643 |  | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 644 | /* | 
 | 645 |  * Deprecated: do not use in new code | 
 | 646 |  */ | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 647 | int gfs2_extent_map(struct inode *inode, u64 lblock, int *new, u64 *dblock, unsigned *extlen) | 
 | 648 | { | 
| Steven Whitehouse | 2359125 | 2006-10-13 17:25:45 -0400 | [diff] [blame] | 649 | 	struct buffer_head bh = { .b_state = 0, .b_blocknr = 0 }; | 
| Steven Whitehouse | 7a6bbac | 2006-09-18 17:18:23 -0400 | [diff] [blame] | 650 | 	int ret; | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 651 | 	int create = *new; | 
 | 652 |  | 
 | 653 | 	BUG_ON(!extlen); | 
 | 654 | 	BUG_ON(!dblock); | 
 | 655 | 	BUG_ON(!new); | 
 | 656 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 657 | 	bh.b_size = 1 << (inode->i_blkbits + (create ? 0 : 5)); | 
| Bob Peterson | e9e1ef2 | 2007-12-10 14:13:27 -0600 | [diff] [blame] | 658 | 	ret = gfs2_block_map(inode, lblock, &bh, create); | 
| Steven Whitehouse | 7a6bbac | 2006-09-18 17:18:23 -0400 | [diff] [blame] | 659 | 	*extlen = bh.b_size >> inode->i_blkbits; | 
 | 660 | 	*dblock = bh.b_blocknr; | 
 | 661 | 	if (buffer_new(&bh)) | 
 | 662 | 		*new = 1; | 
 | 663 | 	else | 
 | 664 | 		*new = 0; | 
 | 665 | 	return ret; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 666 | } | 
 | 667 |  | 
 | 668 | /** | 
 | 669 |  * recursive_scan - recursively scan through the end of a file | 
 | 670 |  * @ip: the inode | 
 | 671 |  * @dibh: the dinode buffer | 
 | 672 |  * @mp: the path through the metadata to the point to start | 
 | 673 |  * @height: the height the recursion is at | 
 | 674 |  * @block: the indirect block to look at | 
 | 675 |  * @first: 1 if this is the first block | 
 | 676 |  * @bc: the call to make for each piece of metadata | 
 | 677 |  * @data: data opaque to this function to pass to @bc | 
 | 678 |  * | 
 | 679 |  * When this is first called @height and @block should be zero and | 
 | 680 |  * @first should be 1. | 
 | 681 |  * | 
 | 682 |  * Returns: errno | 
 | 683 |  */ | 
 | 684 |  | 
 | 685 | static int recursive_scan(struct gfs2_inode *ip, struct buffer_head *dibh, | 
 | 686 | 			  struct metapath *mp, unsigned int height, | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 687 | 			  u64 block, int first, block_call_t bc, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 688 | 			  void *data) | 
 | 689 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 690 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 691 | 	struct buffer_head *bh = NULL; | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 692 | 	__be64 *top, *bottom; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 693 | 	u64 bn; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 694 | 	int error; | 
 | 695 | 	int mh_size = sizeof(struct gfs2_meta_header); | 
 | 696 |  | 
 | 697 | 	if (!height) { | 
 | 698 | 		error = gfs2_meta_inode_buffer(ip, &bh); | 
 | 699 | 		if (error) | 
 | 700 | 			return error; | 
 | 701 | 		dibh = bh; | 
 | 702 |  | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 703 | 		top = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + mp->mp_list[0]; | 
 | 704 | 		bottom = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + sdp->sd_diptrs; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 705 | 	} else { | 
 | 706 | 		error = gfs2_meta_indirect_buffer(ip, height, block, 0, &bh); | 
 | 707 | 		if (error) | 
 | 708 | 			return error; | 
 | 709 |  | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 710 | 		top = (__be64 *)(bh->b_data + mh_size) + | 
| Jan Engelhardt | c539212 | 2006-09-05 14:30:40 +0200 | [diff] [blame] | 711 | 				  (first ? mp->mp_list[height] : 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 712 |  | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 713 | 		bottom = (__be64 *)(bh->b_data + mh_size) + sdp->sd_inptrs; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 714 | 	} | 
 | 715 |  | 
 | 716 | 	error = bc(ip, dibh, bh, top, bottom, height, data); | 
 | 717 | 	if (error) | 
 | 718 | 		goto out; | 
 | 719 |  | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 720 | 	if (height < ip->i_height - 1) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 721 | 		for (; top < bottom; top++, first = 0) { | 
 | 722 | 			if (!*top) | 
 | 723 | 				continue; | 
 | 724 |  | 
 | 725 | 			bn = be64_to_cpu(*top); | 
 | 726 |  | 
 | 727 | 			error = recursive_scan(ip, dibh, mp, height + 1, bn, | 
 | 728 | 					       first, bc, data); | 
 | 729 | 			if (error) | 
 | 730 | 				break; | 
 | 731 | 		} | 
 | 732 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 733 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 734 | 	brelse(bh); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 735 | 	return error; | 
 | 736 | } | 
 | 737 |  | 
 | 738 | /** | 
 | 739 |  * do_strip - Look for a layer a particular layer of the file and strip it off | 
 | 740 |  * @ip: the inode | 
 | 741 |  * @dibh: the dinode buffer | 
 | 742 |  * @bh: A buffer of pointers | 
 | 743 |  * @top: The first pointer in the buffer | 
 | 744 |  * @bottom: One more than the last pointer | 
 | 745 |  * @height: the height this buffer is at | 
 | 746 |  * @data: a pointer to a struct strip_mine | 
 | 747 |  * | 
 | 748 |  * Returns: errno | 
 | 749 |  */ | 
 | 750 |  | 
 | 751 | static int do_strip(struct gfs2_inode *ip, struct buffer_head *dibh, | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 752 | 		    struct buffer_head *bh, __be64 *top, __be64 *bottom, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 753 | 		    unsigned int height, void *data) | 
 | 754 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 755 | 	struct strip_mine *sm = data; | 
 | 756 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 757 | 	struct gfs2_rgrp_list rlist; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 758 | 	u64 bn, bstart; | 
 | 759 | 	u32 blen; | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 760 | 	__be64 *p; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 761 | 	unsigned int rg_blocks = 0; | 
 | 762 | 	int metadata; | 
 | 763 | 	unsigned int revokes = 0; | 
 | 764 | 	int x; | 
 | 765 | 	int error; | 
 | 766 |  | 
 | 767 | 	if (!*top) | 
 | 768 | 		sm->sm_first = 0; | 
 | 769 |  | 
 | 770 | 	if (height != sm->sm_height) | 
 | 771 | 		return 0; | 
 | 772 |  | 
 | 773 | 	if (sm->sm_first) { | 
 | 774 | 		top++; | 
 | 775 | 		sm->sm_first = 0; | 
 | 776 | 	} | 
 | 777 |  | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 778 | 	metadata = (height != ip->i_height - 1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 779 | 	if (metadata) | 
 | 780 | 		revokes = (height) ? sdp->sd_inptrs : sdp->sd_diptrs; | 
 | 781 |  | 
| Steven Whitehouse | 6dbd822 | 2008-01-10 15:18:55 +0000 | [diff] [blame] | 782 | 	error = gfs2_rindex_hold(sdp, &ip->i_alloc->al_ri_gh); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 783 | 	if (error) | 
 | 784 | 		return error; | 
 | 785 |  | 
 | 786 | 	memset(&rlist, 0, sizeof(struct gfs2_rgrp_list)); | 
 | 787 | 	bstart = 0; | 
 | 788 | 	blen = 0; | 
 | 789 |  | 
 | 790 | 	for (p = top; p < bottom; p++) { | 
 | 791 | 		if (!*p) | 
 | 792 | 			continue; | 
 | 793 |  | 
 | 794 | 		bn = be64_to_cpu(*p); | 
 | 795 |  | 
 | 796 | 		if (bstart + blen == bn) | 
 | 797 | 			blen++; | 
 | 798 | 		else { | 
 | 799 | 			if (bstart) | 
 | 800 | 				gfs2_rlist_add(sdp, &rlist, bstart); | 
 | 801 |  | 
 | 802 | 			bstart = bn; | 
 | 803 | 			blen = 1; | 
 | 804 | 		} | 
 | 805 | 	} | 
 | 806 |  | 
 | 807 | 	if (bstart) | 
 | 808 | 		gfs2_rlist_add(sdp, &rlist, bstart); | 
 | 809 | 	else | 
 | 810 | 		goto out; /* Nothing to do */ | 
 | 811 |  | 
| Bob Peterson | fe6c991 | 2008-01-28 11:13:02 -0600 | [diff] [blame] | 812 | 	gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 813 |  | 
 | 814 | 	for (x = 0; x < rlist.rl_rgrps; x++) { | 
 | 815 | 		struct gfs2_rgrpd *rgd; | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 816 | 		rgd = rlist.rl_ghs[x].gh_gl->gl_object; | 
| Steven Whitehouse | bb8d8a6 | 2007-06-01 14:11:58 +0100 | [diff] [blame] | 817 | 		rg_blocks += rgd->rd_length; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 818 | 	} | 
 | 819 |  | 
 | 820 | 	error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs); | 
 | 821 | 	if (error) | 
 | 822 | 		goto out_rlist; | 
 | 823 |  | 
 | 824 | 	error = gfs2_trans_begin(sdp, rg_blocks + RES_DINODE + | 
 | 825 | 				 RES_INDIRECT + RES_STATFS + RES_QUOTA, | 
 | 826 | 				 revokes); | 
 | 827 | 	if (error) | 
 | 828 | 		goto out_rg_gunlock; | 
 | 829 |  | 
 | 830 | 	down_write(&ip->i_rw_mutex); | 
 | 831 |  | 
| Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 832 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
 | 833 | 	gfs2_trans_add_bh(ip->i_gl, bh, 1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 834 |  | 
 | 835 | 	bstart = 0; | 
 | 836 | 	blen = 0; | 
 | 837 |  | 
 | 838 | 	for (p = top; p < bottom; p++) { | 
 | 839 | 		if (!*p) | 
 | 840 | 			continue; | 
 | 841 |  | 
 | 842 | 		bn = be64_to_cpu(*p); | 
 | 843 |  | 
 | 844 | 		if (bstart + blen == bn) | 
 | 845 | 			blen++; | 
 | 846 | 		else { | 
 | 847 | 			if (bstart) { | 
 | 848 | 				if (metadata) | 
 | 849 | 					gfs2_free_meta(ip, bstart, blen); | 
 | 850 | 				else | 
 | 851 | 					gfs2_free_data(ip, bstart, blen); | 
 | 852 | 			} | 
 | 853 |  | 
 | 854 | 			bstart = bn; | 
 | 855 | 			blen = 1; | 
 | 856 | 		} | 
 | 857 |  | 
 | 858 | 		*p = 0; | 
| Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 859 | 		gfs2_add_inode_blocks(&ip->i_inode, -1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 860 | 	} | 
 | 861 | 	if (bstart) { | 
 | 862 | 		if (metadata) | 
 | 863 | 			gfs2_free_meta(ip, bstart, blen); | 
 | 864 | 		else | 
 | 865 | 			gfs2_free_data(ip, bstart, blen); | 
 | 866 | 	} | 
 | 867 |  | 
| Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 868 | 	ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 869 |  | 
| Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 870 | 	gfs2_dinode_out(ip, dibh->b_data); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 871 |  | 
 | 872 | 	up_write(&ip->i_rw_mutex); | 
 | 873 |  | 
 | 874 | 	gfs2_trans_end(sdp); | 
 | 875 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 876 | out_rg_gunlock: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 877 | 	gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 878 | out_rlist: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 879 | 	gfs2_rlist_free(&rlist); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 880 | out: | 
| Steven Whitehouse | 6dbd822 | 2008-01-10 15:18:55 +0000 | [diff] [blame] | 881 | 	gfs2_glock_dq_uninit(&ip->i_alloc->al_ri_gh); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 882 | 	return error; | 
 | 883 | } | 
 | 884 |  | 
 | 885 | /** | 
 | 886 |  * do_grow - Make a file look bigger than it is | 
 | 887 |  * @ip: the inode | 
 | 888 |  * @size: the size to set the file to | 
 | 889 |  * | 
 | 890 |  * Called with an exclusive lock on @ip. | 
 | 891 |  * | 
 | 892 |  * Returns: errno | 
 | 893 |  */ | 
 | 894 |  | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 895 | static int do_grow(struct gfs2_inode *ip, u64 size) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 896 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 897 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 898 | 	struct gfs2_alloc *al; | 
 | 899 | 	struct buffer_head *dibh; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 900 | 	int error; | 
 | 901 |  | 
 | 902 | 	al = gfs2_alloc_get(ip); | 
| Cyrill Gorcunov | 182fe5a | 2008-03-03 21:54:21 +0300 | [diff] [blame] | 903 | 	if (!al) | 
 | 904 | 		return -ENOMEM; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 905 |  | 
| Steven Whitehouse | d82661d | 2008-03-10 15:34:50 +0000 | [diff] [blame] | 906 | 	error = gfs2_quota_lock_check(ip); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 907 | 	if (error) | 
 | 908 | 		goto out; | 
 | 909 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 910 | 	al->al_requested = sdp->sd_max_height + RES_DATA; | 
 | 911 |  | 
 | 912 | 	error = gfs2_inplace_reserve(ip); | 
 | 913 | 	if (error) | 
 | 914 | 		goto out_gunlock_q; | 
 | 915 |  | 
 | 916 | 	error = gfs2_trans_begin(sdp, | 
| Steven Whitehouse | bb8d8a6 | 2007-06-01 14:11:58 +0100 | [diff] [blame] | 917 | 			sdp->sd_max_height + al->al_rgd->rd_length + | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 918 | 			RES_JDATA + RES_DINODE + RES_STATFS + RES_QUOTA, 0); | 
 | 919 | 	if (error) | 
 | 920 | 		goto out_ipres; | 
 | 921 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 922 | 	error = gfs2_meta_inode_buffer(ip, &dibh); | 
 | 923 | 	if (error) | 
 | 924 | 		goto out_end_trans; | 
 | 925 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 926 | 	if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) { | 
 | 927 | 		if (gfs2_is_stuffed(ip)) { | 
 | 928 | 			error = gfs2_unstuff_dinode(ip, NULL); | 
 | 929 | 			if (error) | 
 | 930 | 				goto out_brelse; | 
 | 931 | 		} | 
 | 932 | 	} | 
 | 933 |  | 
 | 934 | 	ip->i_di.di_size = size; | 
 | 935 | 	ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
| Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 936 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
| Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 937 | 	gfs2_dinode_out(ip, dibh->b_data); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 938 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 939 | out_brelse: | 
 | 940 | 	brelse(dibh); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 941 | out_end_trans: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 942 | 	gfs2_trans_end(sdp); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 943 | out_ipres: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 944 | 	gfs2_inplace_release(ip); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 945 | out_gunlock_q: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 946 | 	gfs2_quota_unlock(ip); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 947 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 948 | 	gfs2_alloc_put(ip); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 949 | 	return error; | 
 | 950 | } | 
 | 951 |  | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 952 |  | 
 | 953 | /** | 
 | 954 |  * gfs2_block_truncate_page - Deal with zeroing out data for truncate | 
 | 955 |  * | 
 | 956 |  * This is partly borrowed from ext3. | 
 | 957 |  */ | 
 | 958 | static int gfs2_block_truncate_page(struct address_space *mapping) | 
 | 959 | { | 
 | 960 | 	struct inode *inode = mapping->host; | 
 | 961 | 	struct gfs2_inode *ip = GFS2_I(inode); | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 962 | 	loff_t from = inode->i_size; | 
 | 963 | 	unsigned long index = from >> PAGE_CACHE_SHIFT; | 
 | 964 | 	unsigned offset = from & (PAGE_CACHE_SIZE-1); | 
 | 965 | 	unsigned blocksize, iblock, length, pos; | 
 | 966 | 	struct buffer_head *bh; | 
 | 967 | 	struct page *page; | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 968 | 	int err; | 
 | 969 |  | 
 | 970 | 	page = grab_cache_page(mapping, index); | 
 | 971 | 	if (!page) | 
 | 972 | 		return 0; | 
 | 973 |  | 
 | 974 | 	blocksize = inode->i_sb->s_blocksize; | 
 | 975 | 	length = blocksize - (offset & (blocksize - 1)); | 
 | 976 | 	iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); | 
 | 977 |  | 
 | 978 | 	if (!page_has_buffers(page)) | 
 | 979 | 		create_empty_buffers(page, blocksize, 0); | 
 | 980 |  | 
 | 981 | 	/* Find the buffer that contains "offset" */ | 
 | 982 | 	bh = page_buffers(page); | 
 | 983 | 	pos = blocksize; | 
 | 984 | 	while (offset >= pos) { | 
 | 985 | 		bh = bh->b_this_page; | 
 | 986 | 		iblock++; | 
 | 987 | 		pos += blocksize; | 
 | 988 | 	} | 
 | 989 |  | 
 | 990 | 	err = 0; | 
 | 991 |  | 
 | 992 | 	if (!buffer_mapped(bh)) { | 
| Bob Peterson | e9e1ef2 | 2007-12-10 14:13:27 -0600 | [diff] [blame] | 993 | 		gfs2_block_map(inode, iblock, bh, 0); | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 994 | 		/* unmapped? It's a hole - nothing to do */ | 
 | 995 | 		if (!buffer_mapped(bh)) | 
 | 996 | 			goto unlock; | 
 | 997 | 	} | 
 | 998 |  | 
 | 999 | 	/* Ok, it's mapped. Make sure it's up-to-date */ | 
 | 1000 | 	if (PageUptodate(page)) | 
 | 1001 | 		set_buffer_uptodate(bh); | 
 | 1002 |  | 
 | 1003 | 	if (!buffer_uptodate(bh)) { | 
 | 1004 | 		err = -EIO; | 
 | 1005 | 		ll_rw_block(READ, 1, &bh); | 
 | 1006 | 		wait_on_buffer(bh); | 
 | 1007 | 		/* Uhhuh. Read error. Complain and punt. */ | 
 | 1008 | 		if (!buffer_uptodate(bh)) | 
 | 1009 | 			goto unlock; | 
| S. Wendy Cheng | 1875f2f | 2007-06-25 21:14:31 -0400 | [diff] [blame] | 1010 | 		err = 0; | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 1011 | 	} | 
 | 1012 |  | 
| Steven Whitehouse | bf36a71 | 2007-10-17 08:35:19 +0100 | [diff] [blame] | 1013 | 	if (!gfs2_is_writeback(ip)) | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 1014 | 		gfs2_trans_add_bh(ip->i_gl, bh, 0); | 
 | 1015 |  | 
| Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 1016 | 	zero_user(page, offset, length); | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 1017 |  | 
 | 1018 | unlock: | 
 | 1019 | 	unlock_page(page); | 
 | 1020 | 	page_cache_release(page); | 
 | 1021 | 	return err; | 
 | 1022 | } | 
 | 1023 |  | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1024 | static int trunc_start(struct gfs2_inode *ip, u64 size) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1025 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1026 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1027 | 	struct buffer_head *dibh; | 
 | 1028 | 	int journaled = gfs2_is_jdata(ip); | 
 | 1029 | 	int error; | 
 | 1030 |  | 
 | 1031 | 	error = gfs2_trans_begin(sdp, | 
| Jan Engelhardt | c539212 | 2006-09-05 14:30:40 +0200 | [diff] [blame] | 1032 | 				 RES_DINODE + (journaled ? RES_JDATA : 0), 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1033 | 	if (error) | 
 | 1034 | 		return error; | 
 | 1035 |  | 
 | 1036 | 	error = gfs2_meta_inode_buffer(ip, &dibh); | 
 | 1037 | 	if (error) | 
 | 1038 | 		goto out; | 
 | 1039 |  | 
 | 1040 | 	if (gfs2_is_stuffed(ip)) { | 
 | 1041 | 		ip->i_di.di_size = size; | 
| Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 1042 | 		ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
| Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 1043 | 		gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
| Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1044 | 		gfs2_dinode_out(ip, dibh->b_data); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1045 | 		gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode) + size); | 
 | 1046 | 		error = 1; | 
 | 1047 |  | 
 | 1048 | 	} else { | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1049 | 		if (size & (u64)(sdp->sd_sb.sb_bsize - 1)) | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1050 | 			error = gfs2_block_truncate_page(ip->i_inode.i_mapping); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1051 |  | 
 | 1052 | 		if (!error) { | 
 | 1053 | 			ip->i_di.di_size = size; | 
| Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 1054 | 			ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1055 | 			ip->i_di.di_flags |= GFS2_DIF_TRUNC_IN_PROG; | 
| Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 1056 | 			gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
| Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1057 | 			gfs2_dinode_out(ip, dibh->b_data); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1058 | 		} | 
 | 1059 | 	} | 
 | 1060 |  | 
 | 1061 | 	brelse(dibh); | 
 | 1062 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1063 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1064 | 	gfs2_trans_end(sdp); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1065 | 	return error; | 
 | 1066 | } | 
 | 1067 |  | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1068 | static int trunc_dealloc(struct gfs2_inode *ip, u64 size) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1069 | { | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 1070 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 1071 | 	unsigned int height = ip->i_height; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1072 | 	u64 lblock; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1073 | 	struct metapath mp; | 
 | 1074 | 	int error; | 
 | 1075 |  | 
 | 1076 | 	if (!size) | 
 | 1077 | 		lblock = 0; | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 1078 | 	else | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 1079 | 		lblock = (size - 1) >> sdp->sd_sb.sb_bsize_shift; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1080 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 1081 | 	find_metapath(sdp, lblock, &mp, ip->i_height); | 
| Cyrill Gorcunov | 182fe5a | 2008-03-03 21:54:21 +0300 | [diff] [blame] | 1082 | 	if (!gfs2_alloc_get(ip)) | 
 | 1083 | 		return -ENOMEM; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1084 |  | 
 | 1085 | 	error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE); | 
 | 1086 | 	if (error) | 
 | 1087 | 		goto out; | 
 | 1088 |  | 
 | 1089 | 	while (height--) { | 
 | 1090 | 		struct strip_mine sm; | 
 | 1091 | 		sm.sm_first = !!size; | 
 | 1092 | 		sm.sm_height = height; | 
 | 1093 |  | 
 | 1094 | 		error = recursive_scan(ip, NULL, &mp, 0, 0, 1, do_strip, &sm); | 
 | 1095 | 		if (error) | 
 | 1096 | 			break; | 
 | 1097 | 	} | 
 | 1098 |  | 
 | 1099 | 	gfs2_quota_unhold(ip); | 
 | 1100 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1101 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1102 | 	gfs2_alloc_put(ip); | 
 | 1103 | 	return error; | 
 | 1104 | } | 
 | 1105 |  | 
 | 1106 | static int trunc_end(struct gfs2_inode *ip) | 
 | 1107 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1108 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1109 | 	struct buffer_head *dibh; | 
 | 1110 | 	int error; | 
 | 1111 |  | 
 | 1112 | 	error = gfs2_trans_begin(sdp, RES_DINODE, 0); | 
 | 1113 | 	if (error) | 
 | 1114 | 		return error; | 
 | 1115 |  | 
 | 1116 | 	down_write(&ip->i_rw_mutex); | 
 | 1117 |  | 
 | 1118 | 	error = gfs2_meta_inode_buffer(ip, &dibh); | 
 | 1119 | 	if (error) | 
 | 1120 | 		goto out; | 
 | 1121 |  | 
 | 1122 | 	if (!ip->i_di.di_size) { | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 1123 | 		ip->i_height = 0; | 
| Steven Whitehouse | ce276b0 | 2008-02-06 09:25:45 +0000 | [diff] [blame] | 1124 | 		ip->i_goal = ip->i_no_addr; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1125 | 		gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode)); | 
 | 1126 | 	} | 
| Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 1127 | 	ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1128 | 	ip->i_di.di_flags &= ~GFS2_DIF_TRUNC_IN_PROG; | 
 | 1129 |  | 
| Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 1130 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
| Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1131 | 	gfs2_dinode_out(ip, dibh->b_data); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1132 | 	brelse(dibh); | 
 | 1133 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1134 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1135 | 	up_write(&ip->i_rw_mutex); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1136 | 	gfs2_trans_end(sdp); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1137 | 	return error; | 
 | 1138 | } | 
 | 1139 |  | 
 | 1140 | /** | 
 | 1141 |  * do_shrink - make a file smaller | 
 | 1142 |  * @ip: the inode | 
 | 1143 |  * @size: the size to make the file | 
 | 1144 |  * @truncator: function to truncate the last partial block | 
 | 1145 |  * | 
 | 1146 |  * Called with an exclusive lock on @ip. | 
 | 1147 |  * | 
 | 1148 |  * Returns: errno | 
 | 1149 |  */ | 
 | 1150 |  | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1151 | static int do_shrink(struct gfs2_inode *ip, u64 size) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1152 | { | 
 | 1153 | 	int error; | 
 | 1154 |  | 
| Steven Whitehouse | aa6a85a | 2006-01-24 10:37:06 +0000 | [diff] [blame] | 1155 | 	error = trunc_start(ip, size); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1156 | 	if (error < 0) | 
 | 1157 | 		return error; | 
 | 1158 | 	if (error > 0) | 
 | 1159 | 		return 0; | 
 | 1160 |  | 
 | 1161 | 	error = trunc_dealloc(ip, size); | 
 | 1162 | 	if (!error) | 
 | 1163 | 		error = trunc_end(ip); | 
 | 1164 |  | 
 | 1165 | 	return error; | 
 | 1166 | } | 
 | 1167 |  | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1168 | static int do_touch(struct gfs2_inode *ip, u64 size) | 
 | 1169 | { | 
 | 1170 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
 | 1171 | 	struct buffer_head *dibh; | 
 | 1172 | 	int error; | 
 | 1173 |  | 
 | 1174 | 	error = gfs2_trans_begin(sdp, RES_DINODE, 0); | 
 | 1175 | 	if (error) | 
 | 1176 | 		return error; | 
 | 1177 |  | 
 | 1178 | 	down_write(&ip->i_rw_mutex); | 
 | 1179 |  | 
 | 1180 | 	error = gfs2_meta_inode_buffer(ip, &dibh); | 
 | 1181 | 	if (error) | 
 | 1182 | 		goto do_touch_out; | 
 | 1183 |  | 
 | 1184 | 	ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
 | 1185 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
 | 1186 | 	gfs2_dinode_out(ip, dibh->b_data); | 
 | 1187 | 	brelse(dibh); | 
 | 1188 |  | 
 | 1189 | do_touch_out: | 
 | 1190 | 	up_write(&ip->i_rw_mutex); | 
 | 1191 | 	gfs2_trans_end(sdp); | 
 | 1192 | 	return error; | 
 | 1193 | } | 
 | 1194 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1195 | /** | 
| Steven Whitehouse | 666a2c5 | 2006-01-18 10:29:04 +0000 | [diff] [blame] | 1196 |  * gfs2_truncatei - make a file a given size | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1197 |  * @ip: the inode | 
 | 1198 |  * @size: the size to make the file | 
 | 1199 |  * @truncator: function to truncate the last partial block | 
 | 1200 |  * | 
 | 1201 |  * The file size can grow, shrink, or stay the same size. | 
 | 1202 |  * | 
 | 1203 |  * Returns: errno | 
 | 1204 |  */ | 
 | 1205 |  | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1206 | int gfs2_truncatei(struct gfs2_inode *ip, u64 size) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1207 | { | 
 | 1208 | 	int error; | 
 | 1209 |  | 
| Steven Whitehouse | b60623c | 2006-11-01 12:22:46 -0500 | [diff] [blame] | 1210 | 	if (gfs2_assert_warn(GFS2_SB(&ip->i_inode), S_ISREG(ip->i_inode.i_mode))) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1211 | 		return -EINVAL; | 
 | 1212 |  | 
 | 1213 | 	if (size > ip->i_di.di_size) | 
 | 1214 | 		error = do_grow(ip, size); | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1215 | 	else if (size < ip->i_di.di_size) | 
| Steven Whitehouse | aa6a85a | 2006-01-24 10:37:06 +0000 | [diff] [blame] | 1216 | 		error = do_shrink(ip, size); | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1217 | 	else | 
 | 1218 | 		/* update time stamps */ | 
 | 1219 | 		error = do_touch(ip, size); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1220 |  | 
 | 1221 | 	return error; | 
 | 1222 | } | 
 | 1223 |  | 
 | 1224 | int gfs2_truncatei_resume(struct gfs2_inode *ip) | 
 | 1225 | { | 
 | 1226 | 	int error; | 
 | 1227 | 	error = trunc_dealloc(ip, ip->i_di.di_size); | 
 | 1228 | 	if (!error) | 
 | 1229 | 		error = trunc_end(ip); | 
 | 1230 | 	return error; | 
 | 1231 | } | 
 | 1232 |  | 
 | 1233 | int gfs2_file_dealloc(struct gfs2_inode *ip) | 
 | 1234 | { | 
 | 1235 | 	return trunc_dealloc(ip, 0); | 
 | 1236 | } | 
 | 1237 |  | 
 | 1238 | /** | 
 | 1239 |  * gfs2_write_calc_reserv - calculate number of blocks needed to write to a file | 
 | 1240 |  * @ip: the file | 
 | 1241 |  * @len: the number of bytes to be written to the file | 
 | 1242 |  * @data_blocks: returns the number of data blocks required | 
 | 1243 |  * @ind_blocks: returns the number of indirect blocks required | 
 | 1244 |  * | 
 | 1245 |  */ | 
 | 1246 |  | 
 | 1247 | void gfs2_write_calc_reserv(struct gfs2_inode *ip, unsigned int len, | 
 | 1248 | 			    unsigned int *data_blocks, unsigned int *ind_blocks) | 
 | 1249 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1250 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1251 | 	unsigned int tmp; | 
 | 1252 |  | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 1253 | 	if (gfs2_is_dir(ip)) { | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 1254 | 		*data_blocks = DIV_ROUND_UP(len, sdp->sd_jbsize) + 2; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1255 | 		*ind_blocks = 3 * (sdp->sd_max_jheight - 1); | 
 | 1256 | 	} else { | 
 | 1257 | 		*data_blocks = (len >> sdp->sd_sb.sb_bsize_shift) + 3; | 
 | 1258 | 		*ind_blocks = 3 * (sdp->sd_max_height - 1); | 
 | 1259 | 	} | 
 | 1260 |  | 
 | 1261 | 	for (tmp = *data_blocks; tmp > sdp->sd_diptrs;) { | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 1262 | 		tmp = DIV_ROUND_UP(tmp, sdp->sd_inptrs); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1263 | 		*ind_blocks += tmp; | 
 | 1264 | 	} | 
 | 1265 | } | 
 | 1266 |  | 
 | 1267 | /** | 
 | 1268 |  * gfs2_write_alloc_required - figure out if a write will require an allocation | 
 | 1269 |  * @ip: the file being written to | 
 | 1270 |  * @offset: the offset to write to | 
 | 1271 |  * @len: the number of bytes being written | 
 | 1272 |  * @alloc_required: set to 1 if an alloc is required, 0 otherwise | 
 | 1273 |  * | 
 | 1274 |  * Returns: errno | 
 | 1275 |  */ | 
 | 1276 |  | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1277 | int gfs2_write_alloc_required(struct gfs2_inode *ip, u64 offset, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1278 | 			      unsigned int len, int *alloc_required) | 
 | 1279 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1280 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1281 | 	struct buffer_head bh; | 
 | 1282 | 	unsigned int shift; | 
 | 1283 | 	u64 lblock, lblock_stop, size; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1284 |  | 
 | 1285 | 	*alloc_required = 0; | 
 | 1286 |  | 
 | 1287 | 	if (!len) | 
 | 1288 | 		return 0; | 
 | 1289 |  | 
 | 1290 | 	if (gfs2_is_stuffed(ip)) { | 
 | 1291 | 		if (offset + len > | 
 | 1292 | 		    sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) | 
 | 1293 | 			*alloc_required = 1; | 
 | 1294 | 		return 0; | 
 | 1295 | 	} | 
 | 1296 |  | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1297 | 	*alloc_required = 1; | 
 | 1298 | 	shift = sdp->sd_sb.sb_bsize_shift; | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 1299 | 	if (gfs2_is_dir(ip)) { | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1300 | 		unsigned int bsize = sdp->sd_jbsize; | 
 | 1301 | 		lblock = offset; | 
 | 1302 | 		do_div(lblock, bsize); | 
 | 1303 | 		lblock_stop = offset + len + bsize - 1; | 
 | 1304 | 		do_div(lblock_stop, bsize); | 
 | 1305 | 	} else { | 
| Steven Whitehouse | 1af5357 | 2008-01-16 14:24:05 +0000 | [diff] [blame] | 1306 | 		u64 end_of_file = (ip->i_di.di_size + sdp->sd_sb.sb_bsize - 1) >> shift; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1307 | 		lblock = offset >> shift; | 
 | 1308 | 		lblock_stop = (offset + len + sdp->sd_sb.sb_bsize - 1) >> shift; | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1309 | 		if (lblock_stop > end_of_file) | 
| Bob Peterson | 0522053 | 2008-01-11 13:44:50 -0600 | [diff] [blame] | 1310 | 			return 0; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1311 | 	} | 
 | 1312 |  | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1313 | 	size = (lblock_stop - lblock) << shift; | 
 | 1314 | 	do { | 
 | 1315 | 		bh.b_state = 0; | 
 | 1316 | 		bh.b_size = size; | 
 | 1317 | 		gfs2_block_map(&ip->i_inode, lblock, &bh, 0); | 
 | 1318 | 		if (!buffer_mapped(&bh)) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1319 | 			return 0; | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1320 | 		size -= bh.b_size; | 
 | 1321 | 		lblock += (bh.b_size >> ip->i_inode.i_blkbits); | 
 | 1322 | 	} while(size > 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1323 |  | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1324 | 	*alloc_required = 0; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1325 | 	return 0; | 
 | 1326 | } | 
 | 1327 |  |