]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
1da177e4 LT |
2 | /* |
3 | * linux/fs/befs/io.c | |
4 | * | |
5 | * Copyright (C) 2001 Will Dyson <[email protected] | |
6 | * | |
4c7df645 | 7 | * Based on portions of file.c and inode.c |
1da177e4 LT |
8 | * by Makoto Kato ([email protected]) |
9 | * | |
10 | * Many thanks to Dominic Giampaolo, author of Practical File System | |
11 | * Design with the Be File System, for such a helpful book. | |
12 | * | |
13 | */ | |
14 | ||
15 | #include <linux/buffer_head.h> | |
16 | ||
17 | #include "befs.h" | |
18 | #include "io.h" | |
19 | ||
20 | /* | |
21 | * Converts befs notion of disk addr to a disk offset and uses | |
22 | * linux kernel function sb_bread() to get the buffer containing | |
50b00fc4 | 23 | * the offset. |
1da177e4 LT |
24 | */ |
25 | ||
26 | struct buffer_head * | |
27 | befs_bread_iaddr(struct super_block *sb, befs_inode_addr iaddr) | |
28 | { | |
77169af8 | 29 | struct buffer_head *bh; |
78f647c2 | 30 | befs_blocknr_t block; |
038428fc | 31 | struct befs_sb_info *befs_sb = BEFS_SB(sb); |
1da177e4 | 32 | |
dac52fc1 FF |
33 | befs_debug(sb, "---> Enter %s " |
34 | "[%u, %hu, %hu]", __func__, iaddr.allocation_group, | |
35 | iaddr.start, iaddr.len); | |
1da177e4 LT |
36 | |
37 | if (iaddr.allocation_group > befs_sb->num_ags) { | |
38 | befs_error(sb, "BEFS: Invalid allocation group %u, max is %u", | |
39 | iaddr.allocation_group, befs_sb->num_ags); | |
40 | goto error; | |
41 | } | |
42 | ||
43 | block = iaddr2blockno(sb, &iaddr); | |
44 | ||
dac52fc1 | 45 | befs_debug(sb, "%s: offset = %lu", __func__, (unsigned long)block); |
1da177e4 LT |
46 | |
47 | bh = sb_bread(sb, block); | |
48 | ||
49 | if (bh == NULL) { | |
dac52fc1 FF |
50 | befs_error(sb, "Failed to read block %lu", |
51 | (unsigned long)block); | |
1da177e4 LT |
52 | goto error; |
53 | } | |
54 | ||
dac52fc1 | 55 | befs_debug(sb, "<--- %s", __func__); |
1da177e4 LT |
56 | return bh; |
57 | ||
4c7df645 | 58 | error: |
dac52fc1 | 59 | befs_debug(sb, "<--- %s ERROR", __func__); |
1da177e4 LT |
60 | return NULL; |
61 | } |