mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-01 22:48:06 +00:00
btrfs-progs: open code subvol_uuid_search_init
The helper is trivial after removing the uuid search fallback code, open code it. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
f18dbe2bc6
commit
22f5600649
@ -1109,10 +1109,7 @@ static int do_receive(struct btrfs_receive *rctx, const char *tomnt,
|
||||
rctx->dest_dir_path++;
|
||||
}
|
||||
|
||||
ret = subvol_uuid_search_init(rctx->mnt_fd, &rctx->sus);
|
||||
if (ret < 0)
|
||||
goto out;
|
||||
|
||||
rctx->sus.mnt_fd = rctx->mnt_fd;
|
||||
while (!end) {
|
||||
ret = btrfs_read_and_process_send_stream(r_fd, &send_ops,
|
||||
rctx,
|
||||
|
@ -348,7 +348,7 @@ static int init_root_path(struct btrfs_send *sctx, const char *subvol)
|
||||
goto out;
|
||||
}
|
||||
|
||||
ret = subvol_uuid_search_init(sctx->mnt_fd, &sctx->sus);
|
||||
sctx->sus.mnt_fd = sctx->mnt_fd;
|
||||
if (ret < 0) {
|
||||
errno = -ret;
|
||||
error("failed to initialize subvol search: %m");
|
||||
|
@ -369,10 +369,3 @@ out:
|
||||
|
||||
return info;
|
||||
}
|
||||
|
||||
int subvol_uuid_search_init(int mnt_fd, struct subvol_uuid_search *s)
|
||||
{
|
||||
s->mnt_fd = mnt_fd;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -47,7 +47,6 @@ struct subvol_uuid_search {
|
||||
int mnt_fd;
|
||||
};
|
||||
|
||||
int subvol_uuid_search_init(int mnt_fd, struct subvol_uuid_search *s);
|
||||
/*
|
||||
* Search for a subvolume by given type (received uuid, root id, path), returns
|
||||
* pointer to newly allocated struct subvol_info or NULL in case it's not found
|
||||
|
Loading…
Reference in New Issue
Block a user