Blame view

fs/befs/datastream.c 15.5 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
  /*
   * linux/fs/befs/datastream.c
   *
   * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com>
   *
   * Based on portions of file.c by Makoto Kato <m_kato@ga2.so-net.ne.jp>
   *
   * Many thanks to Dominic Giampaolo, author of "Practical File System
   * Design with the Be File System", for such a helpful book.
   *
   */
  
  #include <linux/kernel.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
19
  #include <linux/buffer_head.h>
  #include <linux/string.h>
  
  #include "befs.h"
  #include "datastream.h"
  #include "io.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  
  const befs_inode_addr BAD_IADDR = { 0, 0, 0 };
  
  static int befs_find_brun_direct(struct super_block *sb,
  				 befs_data_stream * data,
  				 befs_blocknr_t blockno, befs_block_run * run);
  
  static int befs_find_brun_indirect(struct super_block *sb,
  				   befs_data_stream * data,
  				   befs_blocknr_t blockno,
  				   befs_block_run * run);
  
  static int befs_find_brun_dblindirect(struct super_block *sb,
  				      befs_data_stream * data,
  				      befs_blocknr_t blockno,
  				      befs_block_run * run);
  
  /**
   * befs_read_datastream - get buffer_head containing data, starting from pos.
   * @sb: Filesystem superblock
   * @ds: datastrem to find data with
   * @pos: start of data
   * @off: offset of data in buffer_head->b_data
   *
   * Returns pointer to buffer_head containing data starting with offset @off,
   * if you don't need to know offset just set @off = NULL.
   */
  struct buffer_head *
  befs_read_datastream(struct super_block *sb, befs_data_stream * ds,
  		     befs_off_t pos, uint * off)
  {
  	struct buffer_head *bh = NULL;
  	befs_block_run run;
  	befs_blocknr_t block;	/* block coresponding to pos */
dac52fc18   Fabian Frederick   BEFS: logging cle...
54
  	befs_debug(sb, "---> %s %llu", __func__, pos);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
56
57
58
59
60
  	block = pos >> BEFS_SB(sb)->block_shift;
  	if (off)
  		*off = pos - (block << BEFS_SB(sb)->block_shift);
  
  	if (befs_fblock2brun(sb, ds, block, &run) != BEFS_OK) {
  		befs_error(sb, "BeFS: Error finding disk addr of block %lu",
dac52fc18   Fabian Frederick   BEFS: logging cle...
61
62
  			   (unsigned long)block);
  		befs_debug(sb, "<--- %s ERROR", __func__);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
64
65
66
67
  		return NULL;
  	}
  	bh = befs_bread_iaddr(sb, run);
  	if (!bh) {
  		befs_error(sb, "BeFS: Error reading block %lu from datastream",
dac52fc18   Fabian Frederick   BEFS: logging cle...
68
  			   (unsigned long)block);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69
70
  		return NULL;
  	}
dac52fc18   Fabian Frederick   BEFS: logging cle...
71
  	befs_debug(sb, "<--- %s read data, starting at %llu", __func__, pos);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
  
  	return bh;
  }
  
  /*
   * Takes a file position and gives back a brun who's starting block
   * is block number fblock of the file.
   * 
   * Returns BEFS_OK or BEFS_ERR.
   * 
   * Calls specialized functions for each of the three possible
   * datastream regions.
   *
   * 2001-11-15 Will Dyson
   */
  int
  befs_fblock2brun(struct super_block *sb, befs_data_stream * data,
  		 befs_blocknr_t fblock, befs_block_run * run)
  {
  	int err;
  	befs_off_t pos = fblock << BEFS_SB(sb)->block_shift;
  
  	if (pos < data->max_direct_range) {
  		err = befs_find_brun_direct(sb, data, fblock, run);
  
  	} else if (pos < data->max_indirect_range) {
  		err = befs_find_brun_indirect(sb, data, fblock, run);
  
  	} else if (pos < data->max_double_indirect_range) {
  		err = befs_find_brun_dblindirect(sb, data, fblock, run);
  
  	} else {
  		befs_error(sb,
  			   "befs_fblock2brun() was asked to find block %lu, "
dac52fc18   Fabian Frederick   BEFS: logging cle...
106
107
108
  			   "which is not mapped by the datastream
  ",
  			   (unsigned long)fblock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
109
110
111
112
113
114
115
116
117
  		err = BEFS_ERR;
  	}
  	return err;
  }
  
  /**
   * befs_read_lsmylink - read long symlink from datastream.
   * @sb: Filesystem superblock 
   * @ds: Datastrem to read from
c30fe7f73   Uwe Zeisberger   fix typos "wich" ...
118
   * @buf: Buffer in which to place long symlink data
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
119
120
121
122
123
124
125
126
127
128
129
   * @len: Length of the long symlink in bytes
   *
   * Returns the number of bytes read
   */
  size_t
  befs_read_lsymlink(struct super_block * sb, befs_data_stream * ds, void *buff,
  		   befs_off_t len)
  {
  	befs_off_t bytes_read = 0;	/* bytes readed */
  	u16 plen;
  	struct buffer_head *bh = NULL;
dac52fc18   Fabian Frederick   BEFS: logging cle...
130
  	befs_debug(sb, "---> %s length: %llu", __func__, len);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
131
132
133
134
135
  
  	while (bytes_read < len) {
  		bh = befs_read_datastream(sb, ds, bytes_read, NULL);
  		if (!bh) {
  			befs_error(sb, "BeFS: Error reading datastream block "
dac52fc18   Fabian Frederick   BEFS: logging cle...
136
137
  				   "starting from %llu", bytes_read);
  			befs_debug(sb, "<--- %s ERROR", __func__);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
138
139
140
141
142
143
144
145
146
  			return bytes_read;
  
  		}
  		plen = ((bytes_read + BEFS_SB(sb)->block_size) < len) ?
  		    BEFS_SB(sb)->block_size : len - bytes_read;
  		memcpy(buff + bytes_read, bh->b_data, plen);
  		brelse(bh);
  		bytes_read += plen;
  	}
dac52fc18   Fabian Frederick   BEFS: logging cle...
147
148
  	befs_debug(sb, "<--- %s read %u bytes", __func__, (unsigned int)
  		   bytes_read);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
  	return bytes_read;
  }
  
  /**
   * befs_count_blocks - blocks used by a file
   * @sb: Filesystem superblock
   * @ds: Datastream of the file
   *
   * Counts the number of fs blocks that the file represented by
   * inode occupies on the filesystem, counting both regular file
   * data and filesystem metadata (and eventually attribute data
   * when we support attributes)
  */
  
  befs_blocknr_t
  befs_count_blocks(struct super_block * sb, befs_data_stream * ds)
  {
  	befs_blocknr_t blocks;
  	befs_blocknr_t datablocks;	/* File data blocks */
  	befs_blocknr_t metablocks;	/* FS metadata blocks */
  	befs_sb_info *befs_sb = BEFS_SB(sb);
dac52fc18   Fabian Frederick   BEFS: logging cle...
170
  	befs_debug(sb, "---> %s", __func__);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
  
  	datablocks = ds->size >> befs_sb->block_shift;
  	if (ds->size & (befs_sb->block_size - 1))
  		datablocks += 1;
  
  	metablocks = 1;		/* Start with 1 block for inode */
  
  	/* Size of indirect block */
  	if (ds->size > ds->max_direct_range)
  		metablocks += ds->indirect.len;
  
  	/*
  	   Double indir block, plus all the indirect blocks it mapps
  	   In the double-indirect range, all block runs of data are
  	   BEFS_DBLINDIR_BRUN_LEN blocks long. Therefore, we know 
  	   how many data block runs are in the double-indirect region,
  	   and from that we know how many indirect blocks it takes to
  	   map them. We assume that the indirect blocks are also
  	   BEFS_DBLINDIR_BRUN_LEN blocks long.
  	 */
  	if (ds->size > ds->max_indirect_range && ds->max_indirect_range != 0) {
  		uint dbl_bytes;
  		uint dbl_bruns;
  		uint indirblocks;
  
  		dbl_bytes =
  		    ds->max_double_indirect_range - ds->max_indirect_range;
  		dbl_bruns =
  		    dbl_bytes / (befs_sb->block_size * BEFS_DBLINDIR_BRUN_LEN);
  		indirblocks = dbl_bruns / befs_iaddrs_per_block(sb);
  
  		metablocks += ds->double_indirect.len;
  		metablocks += indirblocks;
  	}
  
  	blocks = datablocks + metablocks;
dac52fc18   Fabian Frederick   BEFS: logging cle...
207
  	befs_debug(sb, "<--- %s %u blocks", __func__, (unsigned int)blocks);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
  
  	return blocks;
  }
  
  /*
  	Finds the block run that starts at file block number blockno
  	in the file represented by the datastream data, if that 
  	blockno is in the direct region of the datastream.
  	
  	sb: the superblock
  	data: the datastream
  	blockno: the blocknumber to find
  	run: The found run is passed back through this pointer
  	
  	Return value is BEFS_OK if the blockrun is found, BEFS_ERR
  	otherwise.
  	
  	Algorithm:
  	Linear search. Checks each element of array[] to see if it
  	contains the blockno-th filesystem block. This is necessary
  	because the block runs map variable amounts of data. Simply
  	keeps a count of the number of blocks searched so far (sum),
  	incrementing this by the length of each block run as we come
  	across it. Adds sum to *count before returning (this is so
  	you can search multiple arrays that are logicaly one array,
  	as in the indirect region code).
  	
  	When/if blockno is found, if blockno is inside of a block 
efad798b9   Paulius Zaleckas   Spelling fixes: l...
236
  	run as stored on disk, we offset the start and length members
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
237
238
239
240
241
242
243
244
245
246
247
248
249
250
  	of the block run, so that blockno is the start and len is
  	still valid (the run ends in the same place).
  	
  	2001-11-15 Will Dyson
  */
  static int
  befs_find_brun_direct(struct super_block *sb, befs_data_stream * data,
  		      befs_blocknr_t blockno, befs_block_run * run)
  {
  	int i;
  	befs_block_run *array = data->direct;
  	befs_blocknr_t sum;
  	befs_blocknr_t max_block =
  	    data->max_direct_range >> BEFS_SB(sb)->block_shift;
dac52fc18   Fabian Frederick   BEFS: logging cle...
251
  	befs_debug(sb, "---> %s, find %lu", __func__, (unsigned long)blockno);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
252
253
  
  	if (blockno > max_block) {
dac52fc18   Fabian Frederick   BEFS: logging cle...
254
255
  		befs_error(sb, "%s passed block outside of direct region",
  			   __func__);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
256
257
258
259
260
261
262
263
264
265
  		return BEFS_ERR;
  	}
  
  	for (i = 0, sum = 0; i < BEFS_NUM_DIRECT_BLOCKS;
  	     sum += array[i].len, i++) {
  		if (blockno >= sum && blockno < sum + (array[i].len)) {
  			int offset = blockno - sum;
  			run->allocation_group = array[i].allocation_group;
  			run->start = array[i].start + offset;
  			run->len = array[i].len - offset;
dac52fc18   Fabian Frederick   BEFS: logging cle...
266
267
268
  			befs_debug(sb, "---> %s, "
  				   "found %lu at direct[%d]", __func__,
  				   (unsigned long)blockno, i);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
269
270
271
  			return BEFS_OK;
  		}
  	}
dac52fc18   Fabian Frederick   BEFS: logging cle...
272
  	befs_debug(sb, "---> %s ERROR", __func__);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
  	return BEFS_ERR;
  }
  
  /*
  	Finds the block run that starts at file block number blockno
  	in the file represented by the datastream data, if that 
  	blockno is in the indirect region of the datastream.
  	
  	sb: the superblock
  	data: the datastream
  	blockno: the blocknumber to find
  	run: The found run is passed back through this pointer
  	
  	Return value is BEFS_OK if the blockrun is found, BEFS_ERR
  	otherwise.
  	
  	Algorithm:
  	For each block in the indirect run of the datastream, read
  	it in and search through it for	search_blk.
  	
  	XXX:
  	Really should check to make sure blockno is inside indirect
  	region.
  	
  	2001-11-15 Will Dyson
  */
  static int
  befs_find_brun_indirect(struct super_block *sb,
  			befs_data_stream * data, befs_blocknr_t blockno,
  			befs_block_run * run)
  {
  	int i, j;
  	befs_blocknr_t sum = 0;
  	befs_blocknr_t indir_start_blk;
  	befs_blocknr_t search_blk;
  	struct buffer_head *indirblock;
a9721f315   Al Viro   [PATCH] befs: end...
309
  	befs_disk_block_run *array;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
310
311
312
313
  
  	befs_block_run indirect = data->indirect;
  	befs_blocknr_t indirblockno = iaddr2blockno(sb, &indirect);
  	int arraylen = befs_iaddrs_per_block(sb);
dac52fc18   Fabian Frederick   BEFS: logging cle...
314
  	befs_debug(sb, "---> %s, find %lu", __func__, (unsigned long)blockno);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
315
316
317
318
319
320
321
322
  
  	indir_start_blk = data->max_direct_range >> BEFS_SB(sb)->block_shift;
  	search_blk = blockno - indir_start_blk;
  
  	/* Examine blocks of the indirect run one at a time */
  	for (i = 0; i < indirect.len; i++) {
  		indirblock = befs_bread(sb, indirblockno + i);
  		if (indirblock == NULL) {
dac52fc18   Fabian Frederick   BEFS: logging cle...
323
324
325
  			befs_debug(sb, "---> %s failed to read "
  				   "disk block %lu from the indirect brun",
  				   __func__, (unsigned long)indirblockno + i);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
326
327
  			return BEFS_ERR;
  		}
a9721f315   Al Viro   [PATCH] befs: end...
328
  		array = (befs_disk_block_run *) indirblock->b_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
  
  		for (j = 0; j < arraylen; ++j) {
  			int len = fs16_to_cpu(sb, array[j].len);
  
  			if (search_blk >= sum && search_blk < sum + len) {
  				int offset = search_blk - sum;
  				run->allocation_group =
  				    fs32_to_cpu(sb, array[j].allocation_group);
  				run->start =
  				    fs16_to_cpu(sb, array[j].start) + offset;
  				run->len =
  				    fs16_to_cpu(sb, array[j].len) - offset;
  
  				brelse(indirblock);
  				befs_debug(sb,
dac52fc18   Fabian Frederick   BEFS: logging cle...
344
345
346
347
  					   "<--- %s found file block "
  					   "%lu at indirect[%d]", __func__,
  					   (unsigned long)blockno,
  					   j + (i * arraylen));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
348
349
350
351
352
353
354
355
356
  				return BEFS_OK;
  			}
  			sum += len;
  		}
  
  		brelse(indirblock);
  	}
  
  	/* Only fallthrough is an error */
dac52fc18   Fabian Frederick   BEFS: logging cle...
357
358
  	befs_error(sb, "BeFS: %s failed to find "
  		   "file block %lu", __func__, (unsigned long)blockno);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
359

dac52fc18   Fabian Frederick   BEFS: logging cle...
360
  	befs_debug(sb, "<--- %s ERROR", __func__);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
  	return BEFS_ERR;
  }
  
  /*
  	Finds the block run that starts at file block number blockno
  	in the file represented by the datastream data, if that 
  	blockno is in the double-indirect region of the datastream.
  	
  	sb: the superblock
  	data: the datastream
  	blockno: the blocknumber to find
  	run: The found run is passed back through this pointer
  	
  	Return value is BEFS_OK if the blockrun is found, BEFS_ERR
  	otherwise.
  	
  	Algorithm:
  	The block runs in the double-indirect region are different.
  	They are always allocated 4 fs blocks at a time, so each
  	block run maps a constant amount of file data. This means
  	that we can directly calculate how many block runs into the
  	double-indirect region we need to go to get to the one that
  	maps a particular filesystem block.
  	
  	We do this in two stages. First we calculate which of the
  	inode addresses in the double-indirect block will point us
  	to the indirect block that contains the mapping for the data,
  	then we calculate which of the inode addresses in that 
  	indirect block maps the data block we are after.
  	
  	Oh, and once we've done that, we actually read in the blocks 
  	that contain the inode addresses we calculated above. Even 
  	though the double-indirect run may be several blocks long, 
  	we can calculate which of those blocks will contain the index
  	we are after and only read that one. We then follow it to 
  	the indirect block and perform a  similar process to find
  	the actual block run that maps the data block we are interested
  	in.
  	
  	Then we offset the run as in befs_find_brun_array() and we are 
  	done.
  	
  	2001-11-15 Will Dyson
  */
  static int
  befs_find_brun_dblindirect(struct super_block *sb,
  			   befs_data_stream * data, befs_blocknr_t blockno,
  			   befs_block_run * run)
  {
  	int dblindir_indx;
  	int indir_indx;
  	int offset;
  	int dbl_which_block;
  	int which_block;
  	int dbl_block_indx;
  	int block_indx;
  	off_t dblindir_leftover;
  	befs_blocknr_t blockno_at_run_start;
  	struct buffer_head *dbl_indir_block;
  	struct buffer_head *indir_block;
  	befs_block_run indir_run;
a9721f315   Al Viro   [PATCH] befs: end...
422
  	befs_disk_inode_addr *iaddr_array = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
  	befs_sb_info *befs_sb = BEFS_SB(sb);
  
  	befs_blocknr_t indir_start_blk =
  	    data->max_indirect_range >> befs_sb->block_shift;
  
  	off_t dbl_indir_off = blockno - indir_start_blk;
  
  	/* number of data blocks mapped by each of the iaddrs in
  	 * the indirect block pointed to by the double indirect block
  	 */
  	size_t iblklen = BEFS_DBLINDIR_BRUN_LEN;
  
  	/* number of data blocks mapped by each of the iaddrs in
  	 * the double indirect block
  	 */
  	size_t diblklen = iblklen * befs_iaddrs_per_block(sb)
  	    * BEFS_DBLINDIR_BRUN_LEN;
dac52fc18   Fabian Frederick   BEFS: logging cle...
440
  	befs_debug(sb, "---> %s find %lu", __func__, (unsigned long)blockno);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
  
  	/* First, discover which of the double_indir->indir blocks
  	 * contains pos. Then figure out how much of pos that
  	 * accounted for. Then discover which of the iaddrs in
  	 * the indirect block contains pos.
  	 */
  
  	dblindir_indx = dbl_indir_off / diblklen;
  	dblindir_leftover = dbl_indir_off % diblklen;
  	indir_indx = dblindir_leftover / diblklen;
  
  	/* Read double indirect block */
  	dbl_which_block = dblindir_indx / befs_iaddrs_per_block(sb);
  	if (dbl_which_block > data->double_indirect.len) {
  		befs_error(sb, "The double-indirect index calculated by "
dac52fc18   Fabian Frederick   BEFS: logging cle...
456
457
458
  			   "%s, %d, is outside the range "
  			   "of the double-indirect block", __func__,
  			   dblindir_indx);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
459
460
461
462
463
464
465
  		return BEFS_ERR;
  	}
  
  	dbl_indir_block =
  	    befs_bread(sb, iaddr2blockno(sb, &data->double_indirect) +
  					dbl_which_block);
  	if (dbl_indir_block == NULL) {
dac52fc18   Fabian Frederick   BEFS: logging cle...
466
467
468
469
  		befs_error(sb, "%s couldn't read the "
  			   "double-indirect block at blockno %lu", __func__,
  			   (unsigned long)
  			   iaddr2blockno(sb, &data->double_indirect) +
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
470
471
472
473
474
475
476
  			   dbl_which_block);
  		brelse(dbl_indir_block);
  		return BEFS_ERR;
  	}
  
  	dbl_block_indx =
  	    dblindir_indx - (dbl_which_block * befs_iaddrs_per_block(sb));
a9721f315   Al Viro   [PATCH] befs: end...
477
  	iaddr_array = (befs_disk_inode_addr *) dbl_indir_block->b_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
478
479
480
481
482
483
484
485
  	indir_run = fsrun_to_cpu(sb, iaddr_array[dbl_block_indx]);
  	brelse(dbl_indir_block);
  	iaddr_array = NULL;
  
  	/* Read indirect block */
  	which_block = indir_indx / befs_iaddrs_per_block(sb);
  	if (which_block > indir_run.len) {
  		befs_error(sb, "The indirect index calculated by "
dac52fc18   Fabian Frederick   BEFS: logging cle...
486
487
  			   "%s, %d, is outside the range "
  			   "of the indirect block", __func__, indir_indx);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
488
489
490
491
492
493
  		return BEFS_ERR;
  	}
  
  	indir_block =
  	    befs_bread(sb, iaddr2blockno(sb, &indir_run) + which_block);
  	if (indir_block == NULL) {
dac52fc18   Fabian Frederick   BEFS: logging cle...
494
495
  		befs_error(sb, "%s couldn't read the indirect block "
  			   "at blockno %lu", __func__, (unsigned long)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
496
497
498
499
500
501
  			   iaddr2blockno(sb, &indir_run) + which_block);
  		brelse(indir_block);
  		return BEFS_ERR;
  	}
  
  	block_indx = indir_indx - (which_block * befs_iaddrs_per_block(sb));
a9721f315   Al Viro   [PATCH] befs: end...
502
  	iaddr_array = (befs_disk_inode_addr *) indir_block->b_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
503
504
505
506
507
508
509
510
511
512
513
514
515
  	*run = fsrun_to_cpu(sb, iaddr_array[block_indx]);
  	brelse(indir_block);
  	iaddr_array = NULL;
  
  	blockno_at_run_start = indir_start_blk;
  	blockno_at_run_start += diblklen * dblindir_indx;
  	blockno_at_run_start += iblklen * indir_indx;
  	offset = blockno - blockno_at_run_start;
  
  	run->start += offset;
  	run->len -= offset;
  
  	befs_debug(sb, "Found file block %lu in double_indirect[%d][%d],"
dac52fc18   Fabian Frederick   BEFS: logging cle...
516
  		   " double_indirect_leftover = %lu", (unsigned long)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
517
518
519
520
  		   blockno, dblindir_indx, indir_indx, dblindir_leftover);
  
  	return BEFS_OK;
  }