SaltyKitkat

Results 9 comments of SaltyKitkat

I've noticed #7209, but it's so sad that the pr is closed. I'd love to help on this. Using appimage-run on NixOS is not what I want and it seems...

In #2611, `lower` in size_hint is fixed. But `upper` is untouched. I wonder if we should also change `x.checked_add(chunk_len)` to `(x / self.cap).checked_add(chunk_len)` or something like that.

Maybe size_hint for chunks should be something like this: ```rust fn size_hint(&self) -> (usize, Option) { let (lower, upper) = self.stream.size_hint(); let len = self.items.len(); let lower = lower.saturating_add(len) /...

> So if I'd like to use xattrs like BeFS or HFS/APFS where even binary-data (eg images) are stored: would btrfs' defaults be capped to 4k in total right now?...

Thanks for the summary! Since there's already memory leaks, I'm wondering if the gc is working as expected and maybe just improve the gc makes no sence if the most...

In the Btrfs filesystem, "delalloc" refers to a delayed allocation state, which means the data of the file has not yet been allocated and written to disk but is temporarily...