diff options
| author | Alexey Charkov <[email protected]> | 2026-06-26 19:18:22 +0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-07-10 15:55:01 -0600 |
| commit | 31cf3f177823362a42bf4630ec85370ea768ddf1 (patch) | |
| tree | 1a72e2d5e4606bf27bfe438d99ea33e1c3f9fab1 /include | |
| parent | 5f064aef5d766e291982f9cba6dc728dcdb53868 (diff) | |
fs: btrfs: use fs_ls_generic() and drop custom implementation
Now that generic callbacks for opendir/readdir/closedir are implemented,
the custom btrfs_ls() implementation is no longer needed, along with the
btrfs_iter_dir() callback iterator.
Use fs_ls_generic() instead.
Signed-off-by: Alexey Charkov <[email protected]>
Reviewed-by: Qu Wenruo <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/btrfs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/btrfs.h b/include/btrfs.h index 6fff45a497e..3878b7817ea 100644 --- a/include/btrfs.h +++ b/include/btrfs.h @@ -15,7 +15,6 @@ struct fs_dirent; int btrfs_probe(struct blk_desc *fs_dev_desc, struct disk_partition *fs_partition); -int btrfs_ls(const char *); int btrfs_exists(const char *); int btrfs_size(const char *, loff_t *); int btrfs_read(const char *, void *, loff_t, loff_t, loff_t *); |
