blob: 2caf50a4abbeac087e782af95bacf7c6af163b1c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/befs/io.c
4 *
5 * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com
6 *
Luis de Bethencourt4c7df642016-08-14 17:32:33 +01007 * Based on portions of file.c and inode.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * by Makoto Kato (m_kato@ga2.so-net.ne.jp)
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
Luis de Bethencourt50b00fc2016-08-14 18:41:30 +010023 * the offset.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
26struct buffer_head *
27befs_bread_iaddr(struct super_block *sb, befs_inode_addr iaddr)
28{
Salah Triki77169af2016-05-23 16:22:52 -070029 struct buffer_head *bh;
Salah Triki78f647c2016-08-11 12:04:52 +010030 befs_blocknr_t block;
Fabian Frederick038428f2015-04-16 12:46:20 -070031 struct befs_sb_info *befs_sb = BEFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Fabian Frederickdac52fc2014-04-03 14:50:23 -070033 befs_debug(sb, "---> Enter %s "
34 "[%u, %hu, %hu]", __func__, iaddr.allocation_group,
35 iaddr.start, iaddr.len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
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
Fabian Frederickdac52fc2014-04-03 14:50:23 -070045 befs_debug(sb, "%s: offset = %lu", __func__, (unsigned long)block);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 bh = sb_bread(sb, block);
48
49 if (bh == NULL) {
Fabian Frederickdac52fc2014-04-03 14:50:23 -070050 befs_error(sb, "Failed to read block %lu",
51 (unsigned long)block);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 goto error;
53 }
54
Fabian Frederickdac52fc2014-04-03 14:50:23 -070055 befs_debug(sb, "<--- %s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 return bh;
57
Luis de Bethencourt4c7df642016-08-14 17:32:33 +010058error:
Fabian Frederickdac52fc2014-04-03 14:50:23 -070059 befs_debug(sb, "<--- %s ERROR", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return NULL;
61}