kdave
kdave
Well, not just in 2022, I've been working on that all the time (irregularly). I understand you need it but it's an interface change and currently there's the mkfs set...
For zoned on non-zoned devices, it could be possible to unset the bit and write superblock to the right locations so it's a regular fs afterwards.
The file `btrfsutil.h` is part of libbtrfsutil, so it would be probably ok to install just the devel package of that. Should this dependency be mentioned somewhere in the python...
The json output for the subvolume related commands is currently enabled only in the experimental build. The format hasn't been finalized, at least `list` does not print complete subvolume information...
I'm not sure it can be said it does not make sense. For a VM that has a dedicated pass-through block device the host will not do it and with...
AFAIK the maximum file name length depends on the VFS in linux, where the limit is 255. The data structures in btrfs allow longer file names but without the generic...
Thanks, the patch on the page seems to mix 3 things. One is the btrfs length which is technically correct but need to handle backward compatibility. Then it changes the...
Do you mean to set the length via a mount option? Otherwise, I think that NAME_MAX is used in many applications for static buffers and arguably it's kind of a...
Thanks, this will need to be reworked so there are no standalone ifdefs just for android. Compatibility wrappers should be hidden in files, detected at build time and the implementation...
The `qsort_r` can be emulated by providing a thread-local storage and calling `qsort` with a stub function that will call the comparator with the stored data. There's more qsort_r usage...