Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to mount btrfs filesystems spread across more than one partition with lklfuse #518

Open
bqv opened this issue Apr 11, 2023 · 4 comments
Assignees

Comments

@bqv
Copy link

bqv commented Apr 11, 2023

My example has three partitions. Passing partition 1 gives "BTRFS error (device vda1): devid 2 uuid is missing". Similar for partitions 2 and 3, but "devid 1".

All these devices are on one physical disk, but passing the full disk to lklfuse obviously won't work, and I'm having trouble how to wrangle the code to find that agreeable

@tavip
Copy link
Member

tavip commented Apr 11, 2023

This requires support for adding multiple disks. Then using the physical disk and multiple partitions should work. I’ll look into more details at this tomorrow.

Could you please share instructions on how to get btrfs split across multiple partitions?

@tavip tavip self-assigned this Apr 11, 2023
@bqv
Copy link
Author

bqv commented Apr 11, 2023

Assuming you have btrfsprogs, with an existing btrfs filesystem mounted at /mnt, you can add a new device as-is with btrfs device add /dev/<blk> /mnt

Thanks!

@bqv
Copy link
Author

bqv commented Jun 16, 2023

Is there a plan for implementing this?

@ddiss
Copy link

ddiss commented May 31, 2024

One option for adding devices to an existing lklfuse process at runtime is a FUSE xattr hack, e.g.:

setfattr -n lklfuse.dev.add -v /dev/sdX /mnt/

It might then also be possible to forward BTRFS_IOC_ADD_DEV ioctls through to the underlying LKL mount via a FUSE ioctl hook.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants