├── .github └── workflows │ └── build.yml ├── .gitmodules ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENCE ├── README.md ├── btrfs-dump.pl ├── mingw-amd64.cmake ├── mingw-x86.cmake ├── msvc-aarch64.cmake ├── msvc-amd64.cmake ├── msvc-armv7.cmake ├── msvc-x86.cmake ├── send-dump.pl └── src ├── balance.c ├── blake2-impl.h ├── blake2b-ref.c ├── boot.c ├── btrfs-vol.inf ├── btrfs.c ├── btrfs.cdf ├── btrfs.h ├── btrfs.inf ├── btrfs.rc.in ├── btrfs_drv.h ├── btrfsioctl.h ├── cache.c ├── calcthread.c ├── compress.c ├── crc32c-aarch64.asm ├── crc32c-gas.S ├── crc32c-masm.asm ├── crc32c.c ├── crc32c.h ├── create.c ├── devctrl.c ├── dirctrl.c ├── extent-tree.c ├── fastio.c ├── fileinfo.c ├── flushthread.c ├── free-space.c ├── fsctl.c ├── fsrtl.c ├── galois.c ├── mkbtrfs ├── mkbtrfs.c ├── mkbtrfs.rc.in └── resource.h ├── pnp.c ├── read.c ├── registry.c ├── reparse.c ├── resource.h ├── scrub.c ├── search.c ├── security.c ├── send.c ├── sha256.c ├── shellext ├── balance.cpp ├── balance.h ├── contextmenu.cpp ├── contextmenu.h ├── devices.cpp ├── devices.h ├── factory.cpp ├── factory.h ├── iconoverlay.cpp ├── iconoverlay.h ├── main.cpp ├── mappings.cpp ├── mountmgr.cpp ├── mountmgr.h ├── propsheet.cpp ├── propsheet.h ├── recv.cpp ├── recv.h ├── resource.h ├── scrub.cpp ├── scrub.h ├── send.cpp ├── send.h ├── shellbtrfs.def ├── shellbtrfs.manifest ├── shellbtrfs.rc.in ├── shellext.h ├── subvol.ico ├── subvol.svg ├── volpropsheet.cpp └── volpropsheet.h ├── tests ├── create.cpp ├── cs.cpp ├── delete.cpp ├── ea.cpp ├── fileinfo.cpp ├── io.cpp ├── links.cpp ├── manifest.xml ├── mmap.cpp ├── oplock.cpp ├── overwrite.cpp ├── rename.cpp ├── reparse.cpp ├── security.cpp ├── streams.cpp ├── supersede.cpp ├── test.cpp ├── test.h └── test.rc.in ├── treefuncs.c ├── ubtrfs ├── resource.h ├── ubtrfs.c ├── ubtrfs.def └── ubtrfs.rc.in ├── volume.c ├── worker-thread.c ├── write.c ├── xor-gas.S ├── xor-masm.asm └── zstd-shim.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/README.md -------------------------------------------------------------------------------- /btrfs-dump.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/btrfs-dump.pl -------------------------------------------------------------------------------- /mingw-amd64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/mingw-amd64.cmake -------------------------------------------------------------------------------- /mingw-x86.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/mingw-x86.cmake -------------------------------------------------------------------------------- /msvc-aarch64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/msvc-aarch64.cmake -------------------------------------------------------------------------------- /msvc-amd64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/msvc-amd64.cmake -------------------------------------------------------------------------------- /msvc-armv7.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/msvc-armv7.cmake -------------------------------------------------------------------------------- /msvc-x86.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/msvc-x86.cmake -------------------------------------------------------------------------------- /send-dump.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/send-dump.pl -------------------------------------------------------------------------------- /src/balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/balance.c -------------------------------------------------------------------------------- /src/blake2-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/blake2-impl.h -------------------------------------------------------------------------------- /src/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/blake2b-ref.c -------------------------------------------------------------------------------- /src/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/boot.c -------------------------------------------------------------------------------- /src/btrfs-vol.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/btrfs-vol.inf -------------------------------------------------------------------------------- /src/btrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/btrfs.c -------------------------------------------------------------------------------- /src/btrfs.cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/btrfs.cdf -------------------------------------------------------------------------------- /src/btrfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/btrfs.h -------------------------------------------------------------------------------- /src/btrfs.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/btrfs.inf -------------------------------------------------------------------------------- /src/btrfs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/btrfs.rc.in -------------------------------------------------------------------------------- /src/btrfs_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/btrfs_drv.h -------------------------------------------------------------------------------- /src/btrfsioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/btrfsioctl.h -------------------------------------------------------------------------------- /src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/cache.c -------------------------------------------------------------------------------- /src/calcthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/calcthread.c -------------------------------------------------------------------------------- /src/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/compress.c -------------------------------------------------------------------------------- /src/crc32c-aarch64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/crc32c-aarch64.asm -------------------------------------------------------------------------------- /src/crc32c-gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/crc32c-gas.S -------------------------------------------------------------------------------- /src/crc32c-masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/crc32c-masm.asm -------------------------------------------------------------------------------- /src/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/crc32c.c -------------------------------------------------------------------------------- /src/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/crc32c.h -------------------------------------------------------------------------------- /src/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/create.c -------------------------------------------------------------------------------- /src/devctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/devctrl.c -------------------------------------------------------------------------------- /src/dirctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/dirctrl.c -------------------------------------------------------------------------------- /src/extent-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/extent-tree.c -------------------------------------------------------------------------------- /src/fastio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/fastio.c -------------------------------------------------------------------------------- /src/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/fileinfo.c -------------------------------------------------------------------------------- /src/flushthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/flushthread.c -------------------------------------------------------------------------------- /src/free-space.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/free-space.c -------------------------------------------------------------------------------- /src/fsctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/fsctl.c -------------------------------------------------------------------------------- /src/fsrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/fsrtl.c -------------------------------------------------------------------------------- /src/galois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/galois.c -------------------------------------------------------------------------------- /src/mkbtrfs/mkbtrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/mkbtrfs/mkbtrfs.c -------------------------------------------------------------------------------- /src/mkbtrfs/mkbtrfs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/mkbtrfs/mkbtrfs.rc.in -------------------------------------------------------------------------------- /src/mkbtrfs/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/mkbtrfs/resource.h -------------------------------------------------------------------------------- /src/pnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/pnp.c -------------------------------------------------------------------------------- /src/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/read.c -------------------------------------------------------------------------------- /src/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/registry.c -------------------------------------------------------------------------------- /src/reparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/reparse.c -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/scrub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/scrub.c -------------------------------------------------------------------------------- /src/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/search.c -------------------------------------------------------------------------------- /src/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/security.c -------------------------------------------------------------------------------- /src/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/send.c -------------------------------------------------------------------------------- /src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/sha256.c -------------------------------------------------------------------------------- /src/shellext/balance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/balance.cpp -------------------------------------------------------------------------------- /src/shellext/balance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/balance.h -------------------------------------------------------------------------------- /src/shellext/contextmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/contextmenu.cpp -------------------------------------------------------------------------------- /src/shellext/contextmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/contextmenu.h -------------------------------------------------------------------------------- /src/shellext/devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/devices.cpp -------------------------------------------------------------------------------- /src/shellext/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/devices.h -------------------------------------------------------------------------------- /src/shellext/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/factory.cpp -------------------------------------------------------------------------------- /src/shellext/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/factory.h -------------------------------------------------------------------------------- /src/shellext/iconoverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/iconoverlay.cpp -------------------------------------------------------------------------------- /src/shellext/iconoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/iconoverlay.h -------------------------------------------------------------------------------- /src/shellext/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/main.cpp -------------------------------------------------------------------------------- /src/shellext/mappings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/mappings.cpp -------------------------------------------------------------------------------- /src/shellext/mountmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/mountmgr.cpp -------------------------------------------------------------------------------- /src/shellext/mountmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/mountmgr.h -------------------------------------------------------------------------------- /src/shellext/propsheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/propsheet.cpp -------------------------------------------------------------------------------- /src/shellext/propsheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/propsheet.h -------------------------------------------------------------------------------- /src/shellext/recv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/recv.cpp -------------------------------------------------------------------------------- /src/shellext/recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/recv.h -------------------------------------------------------------------------------- /src/shellext/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/resource.h -------------------------------------------------------------------------------- /src/shellext/scrub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/scrub.cpp -------------------------------------------------------------------------------- /src/shellext/scrub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/scrub.h -------------------------------------------------------------------------------- /src/shellext/send.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/send.cpp -------------------------------------------------------------------------------- /src/shellext/send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/send.h -------------------------------------------------------------------------------- /src/shellext/shellbtrfs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/shellbtrfs.def -------------------------------------------------------------------------------- /src/shellext/shellbtrfs.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/shellbtrfs.manifest -------------------------------------------------------------------------------- /src/shellext/shellbtrfs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/shellbtrfs.rc.in -------------------------------------------------------------------------------- /src/shellext/shellext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/shellext.h -------------------------------------------------------------------------------- /src/shellext/subvol.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/subvol.ico -------------------------------------------------------------------------------- /src/shellext/subvol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/subvol.svg -------------------------------------------------------------------------------- /src/shellext/volpropsheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/volpropsheet.cpp -------------------------------------------------------------------------------- /src/shellext/volpropsheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/shellext/volpropsheet.h -------------------------------------------------------------------------------- /src/tests/create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/create.cpp -------------------------------------------------------------------------------- /src/tests/cs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/cs.cpp -------------------------------------------------------------------------------- /src/tests/delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/delete.cpp -------------------------------------------------------------------------------- /src/tests/ea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/ea.cpp -------------------------------------------------------------------------------- /src/tests/fileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/fileinfo.cpp -------------------------------------------------------------------------------- /src/tests/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/io.cpp -------------------------------------------------------------------------------- /src/tests/links.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/links.cpp -------------------------------------------------------------------------------- /src/tests/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/manifest.xml -------------------------------------------------------------------------------- /src/tests/mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/mmap.cpp -------------------------------------------------------------------------------- /src/tests/oplock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/oplock.cpp -------------------------------------------------------------------------------- /src/tests/overwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/overwrite.cpp -------------------------------------------------------------------------------- /src/tests/rename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/rename.cpp -------------------------------------------------------------------------------- /src/tests/reparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/reparse.cpp -------------------------------------------------------------------------------- /src/tests/security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/security.cpp -------------------------------------------------------------------------------- /src/tests/streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/streams.cpp -------------------------------------------------------------------------------- /src/tests/supersede.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/supersede.cpp -------------------------------------------------------------------------------- /src/tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/test.cpp -------------------------------------------------------------------------------- /src/tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/test.h -------------------------------------------------------------------------------- /src/tests/test.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/tests/test.rc.in -------------------------------------------------------------------------------- /src/treefuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/treefuncs.c -------------------------------------------------------------------------------- /src/ubtrfs/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/ubtrfs/resource.h -------------------------------------------------------------------------------- /src/ubtrfs/ubtrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/ubtrfs/ubtrfs.c -------------------------------------------------------------------------------- /src/ubtrfs/ubtrfs.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/ubtrfs/ubtrfs.def -------------------------------------------------------------------------------- /src/ubtrfs/ubtrfs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/ubtrfs/ubtrfs.rc.in -------------------------------------------------------------------------------- /src/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/volume.c -------------------------------------------------------------------------------- /src/worker-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/worker-thread.c -------------------------------------------------------------------------------- /src/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/write.c -------------------------------------------------------------------------------- /src/xor-gas.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/xor-gas.S -------------------------------------------------------------------------------- /src/xor-masm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/xor-masm.asm -------------------------------------------------------------------------------- /src/zstd-shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maharmstone/btrfs/HEAD/src/zstd-shim.h --------------------------------------------------------------------------------