1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com
7 * Based on portions of file.c and inode.c
8 * by Makoto Kato (m_kato@ga2.so-net.ne.jp)
10 * Many thanks to Dominic Giampaolo, author of Practical File System
11 * Design with the Be File System, for such a helpful book.
15 #include <linux/buffer_head.h>
21 * Converts befs notion of disk addr to a disk offset and uses
22 * linux kernel function sb_bread() to get the buffer containing
27 befs_bread_iaddr(struct super_block *sb, befs_inode_addr iaddr)
29 struct buffer_head *bh;
31 struct befs_sb_info *befs_sb = BEFS_SB(sb);
33 befs_debug(sb, "---> Enter %s "
34 "[%u, %hu, %hu]", __func__, iaddr.allocation_group,
35 iaddr.start, iaddr.len);
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);
43 block = iaddr2blockno(sb, &iaddr);
45 befs_debug(sb, "%s: offset = %lu", __func__, (unsigned long)block);
47 bh = sb_bread(sb, block);
50 befs_error(sb, "Failed to read block %lu",
51 (unsigned long)block);
55 befs_debug(sb, "<--- %s", __func__);
59 befs_debug(sb, "<--- %s ERROR", __func__);