kilobyte / compsize

btrfs: find compression type/ratio on a file or set of files
Other
344 stars 23 forks source link

Fix recent btrfs-progs breakage #53

Open justinbrewer opened 1 week ago

justinbrewer commented 1 week ago

New versions of btrfs-progs dropped radix_tree and made incompatible changes to kerncompat.h. radix_tree was overkill, since it was only used to track if a page had been seen before.

Replace radix_tree with a simple bitmap, and drop the broken imported source files.

Fixes #52