Vojtech Trefny
Vojtech Trefny
This function will be removed in libblockdev 3.0, we can get UUID from the bd_crypt_luks_info. https://github.com/storaged-project/libblockdev/pull/614 needs to be merged first (`bd_crypto_luks_info` currently returns error when called with the backing...
Our mount function currently doesn't allow mounting a device multiple times. This is problem for btrfs subvolume where to mount it user needs to mount the underlying block device multiple...
We have some simple API examples for all storaged projects in https://github.com/storaged-project/api-examples but for UDisks we have DBus API example, we also need some examples for libudisks, the API is...
Starting with xfsprogs 5.19 minimal size for XFS is 300 MiB.
When using uninitialized disks the factory fails with `not enough free space for new device` because without a partition table we fail to find a free space for a new...
Not to suggest a change in strategy, but just extra info: it is possible to delete subvolumes without "line of sight" via path-to-suvolume. One is `btrfs subvolume delete --subvolid `...
Libblockdev is a low level library we use for storage operations and the exception we get from it shouldn't be propagated to Blivet users which currently need to import libblockdev...
We currently support standalone DM integrity devices (see #994), we should support LVM RAID with integrity too. This should be simpler than the standalone integrity support as everything is done...
Currently both `LVMLogicalVolumeDevice.attach_cache` and `LVMCache.detach` are simple functions that immediately call the libblockdev functions to attach or detach the cache volume. This isn't currently a problem because we are not...
When using the ActionAddMember and ActionRemoveMember it's easy to create a dependency cycle when adding more actions: 1. Resize a LV. 1. Create new PV partition. 1. Add the PV...