summaryrefslogtreecommitdiff
path: root/include/btrfs.h
blob: 3878b7817ea6b6dd6e6f538761dcccd10dda424e (plain)
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
/* SPDX-License-Identifier: GPL-2.0+ */
/*
 * BTRFS filesystem implementation for U-Boot
 *
 * 2017 Marek Behún, CZ.NIC, [email protected]
 */

#ifndef __U_BOOT_BTRFS_H__
#define __U_BOOT_BTRFS_H__

struct blk_desc;
struct disk_partition;
struct fs_dir_stream;
struct fs_dirent;

int btrfs_probe(struct blk_desc *fs_dev_desc,
		struct disk_partition *fs_partition);
int btrfs_exists(const char *);
int btrfs_size(const char *, loff_t *);
int btrfs_read(const char *, void *, loff_t, loff_t, loff_t *);
void btrfs_close(void);
int btrfs_uuid(char *);
void btrfs_list_subvols(void);
int btrfs_opendir(const char *filename, struct fs_dir_stream **dirsp);
int btrfs_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
void btrfs_closedir(struct fs_dir_stream *dirs);

#endif /* __U_BOOT_BTRFS_H__ */