hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 *
 *    based on code of fs/reiserfs/dev.c by
 *
 *    (C) Copyright 2003 - 2004
 *    Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com>
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
 
#include <common.h>
#include <config.h>
#include <fs_internal.h>
#include <zfs_common.h>
 
static struct blk_desc *zfs_blk_desc;
static disk_partition_t *part_info;
 
void zfs_set_blk_dev(struct blk_desc *rbdd, disk_partition_t *info)
{
   zfs_blk_desc = rbdd;
   part_info = info;
}
 
/* err */
int zfs_devread(int sector, int byte_offset, int byte_len, char *buf)
{
   return fs_devread(zfs_blk_desc, part_info, sector, byte_offset,
             byte_len, buf);
}