-
Notifications
You must be signed in to change notification settings - Fork 4
/
data.h
58 lines (52 loc) · 1.66 KB
/
data.h
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// SPDX-License-Identifier: MIT
#ifndef BTRFS_FUSE_DATA_H
#define BTRFS_FUSE_DATA_H
#include "metadata.h"
/*
* Try to locate one csum item for @bytenr.
*
* Return btrfs_csum_item pointer to the csum item (must be used with
* path->nodes[0]).
* Return ERR_PTR() for error (including no csum found).
* For ERR_PTR(-ENOENT) case, path will point to the nearest item after
* @bytenr, in case caller want to know where the next csum starts.
*
* Thus caller should check path->nodes[0] and release the path accordingly.
*/
struct btrfs_csum_item *btrfs_lookup_csum(struct btrfs_fs_info *fs_info,
struct btrfs_path *path,
u64 bytenr);
/*
* Read data from btrfs logical address @logical.
*
* Will do csum check and try to find the copy which pass checksum (if has).
*
* Return >0 for the number of bytes read from disk and pass the checksum
* (if has).
* Return <0 for error.
*
* Thus if we have the following on-disk data layout:
*
* X X+4K X+8K
* Mirror 1 |XXXXXXX| |
* Mirror 2 | |XXXXXXX|
*
* Where X means corrupted data.
*
* Then we call btrfs_read_data(fs_info, buf, 8192, X);
*
* We will get the return value 4096, with correct data from mirror 2,
* then we still need to call btrfs_read_data(fs_info, buf + 4096, 4096,
* X + 4096) to read the next 4K correctly from mirror 1.
*/
ssize_t btrfs_read_data(struct btrfs_fs_info *fs_info, char *buf,
size_t num_bytes, u64 logical);
/*
* Read data at @file_offset of @inode into @buf.
*
* @file_offset and @num_bytes must be fs_info->sectorsize aligned.
*/
ssize_t btrfs_read_file(struct btrfs_fs_info *fs_info,
struct btrfs_inode *inode, u64 file_offset,
char *buf, u32 num_bytes);
#endif