Kent Overstreet
00f49f23b4
Update bcachefs sources to d3422f9b18 bcachefs: Journal initialization fixes
2021-12-21 21:53:07 -05:00
Kent Overstreet
11e4e302de
Fix migrate tool for snapshots
...
This updates cmd_migrate.c for the snapshot field & subvolumes.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-12-20 15:49:32 -05:00
Kent Overstreet
1388212eb8
Delete old bcachefs.5 from makefile
2021-12-20 15:24:22 -05:00
Kent Overstreet
6a4f458a48
fix init_layout()
...
It was incorrectly failing when we did have enough space for the
superblocks - >= should have been >. Also, give it a better error
message.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-12-19 21:55:09 -05:00
Kent Overstreet
d06f5690fa
Update bcachefs sources to ff3a76e1af bcachefs: Change need_whiteout_for_snapshot() to clone iterator
2021-12-19 19:37:29 -05:00
Kent Overstreet
b19d9f92e1
Update bcachefs sources to 635ca475f4 bcachefs: Fix debug build in userspace
2021-12-14 16:15:21 -05:00
Kent Overstreet
57f6402131
Rename group to label in show-super output
...
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-12-13 17:14:44 -05:00
Kent Overstreet
39a6bf885d
Update bcachefs sources to 6bb1ba5c94 bcachefs: Improve alloc_mem_to_key()
2021-12-11 17:26:14 -05:00
Kent Overstreet
2fc5a50bd6
Fix device add for kernel sysfs changes
...
Also slightly improve some error messages
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-12-10 14:07:31 -05:00
Kent Overstreet
55e3496d06
Rename --group to --label
...
Disk labels used to be called groups - not all uses had been converted.
This renames --group to --label, and --label to --fs_label
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-12-10 13:32:35 -05:00
Kent Overstreet
99b12cd3a4
Update bcachefs sources to 50d6a25d9c bcachefs: Erasure coding fixes
2021-11-30 15:27:52 -05:00
Kent Overstreet
1d2315ca0a
Update bcachefs sources to 4c24a1cf56 bcachefs: Fix BCH_FS_ERROR flag handling
2021-11-21 16:26:39 -05:00
Kent Overstreet
50bc63a6ce
Update bcachefs sources to 2152e671d8 bcachefs: Add a bit of missing repair code
2021-11-21 14:55:54 -05:00
Kent Overstreet
837b76ce95
Merge https://github.com/YellowOnion/bcachefs-tools
2021-11-16 18:56:44 -05:00
Daniel B. Hill
179ac9ba56
Fix sub commands not triggering without arguments
...
Signed-off-by: Daniel B. Hill <daniel@gluo.nz>
2021-11-17 12:46:05 +13:00
Kent Overstreet
9a058f1428
Update bcachefs sources to 70b5fb5daf bcachefs: Fix error reporting from bch2_journal_flush_seq
2021-11-16 09:12:15 -05:00
Kent Overstreet
8d86f9c15d
Fix uninitialized vars
...
This fixes crashes when listing btree nodes.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-11-15 15:19:44 -05:00
Kent Overstreet
abd9d5ba97
Update bcachefs sources to 6afa1fcb13 bcachefs: Clean up error reporting in the startup path
2021-11-06 12:46:36 -04:00
Kent Overstreet
5b84952401
Update bcachefs sources to 6d9ff21de7 bcachefs: Kill journal buf bloom filter
2021-11-05 15:08:36 -04:00
Daniel B. Hill
e87deba8e4
fix version and show-super not working
2021-11-04 17:38:58 +13:00
Kent Overstreet
42ba8b5a75
Update bcachefs sources to 5fd0c70102 bcachefs: Fix __remove_dirent()
2021-11-03 21:28:23 -04:00
Brett Holman
9a649545a3
Add more specific subcommand usage messages
...
The device, data, fs, and subvolume subcommands currently print out a
generic usage message. Make these more specific.
Signed-off-by: Brett Holman <bholman.devel@gmail.com>
2021-11-01 08:12:35 -06:00
Kent Overstreet
0da2d968eb
Update bcachefs sources to 043cfba30c fixup! bcachefs: Improve transaction restart handling in fsck code
2021-11-01 06:39:12 -04:00
Kent Overstreet
a315a3f664
Update bcachefs sources to 82c5cc8f00 bcachefs: Improve transaction restart handling in fsck code
2021-10-28 16:50:03 -04:00
Kent Overstreet
6f8750c30e
Update bcachefs sources to b1899a0bd9 bcachefs: Move bch2_evict_subvolume_inodes() to fs.c
2021-10-28 16:27:01 -04:00
Kent Overstreet
72a9f1015d
Update bcachefs sources to 4c58f10d48 bcachefs: More general fix for transaction paths overflow
2021-10-25 18:32:51 -04:00
Kent Overstreet
1ce6454cfe
Update bcachefs sources to cdf89ca564 bcachefs: Fix fsck path for refink pointers
2021-10-24 21:24:05 -04:00
Chris Webb
f5c0b67603
Cosmetic fixes for device resize-journal
...
Correct the operation name from 'journal-resize' to 'resize-journal' in the
bcachefs usage summary, matching the command that is actually implemented.
Fix the size argument so it isn't optional. Defaulting to the entire device
makes sense for 'device resize', to automatically expand the fs to fill the
block device. However, it is never meaningful (or possible) to expand the
journal to the full disk.
Signed-off-by: Chris Webb <chris@arachsys.com>
2021-10-24 11:39:36 -04:00
Chris Webb
49923376d1
Use scrypt from libsodium
...
bcachefs-tools has both libscrypt and libsodium as build dependencies,
but libsodium already includes the same scrypt implementation as libscrypt,
originally written by Colin Percival.
Use the libsodium copy, dropping the extra libscrypt dependency.
Explicitly adopt the default scrypt N, r and p values from libscrypt to
avoid unintended changes in the default work parameters for bcachefs.
Signed-off-by: Chris Webb <chris@arachsys.com>
2021-10-23 12:16:08 -04:00
Kent Overstreet
f9f57789de
Update bcachefs sources to 6d1f979bc5 bcachefs: Subvol dirents are now only visible in parent subvol
2021-10-21 14:20:03 -04:00
Kent Overstreet
a2b0239593
Update bcachefs sources to 718df3f7c2 bcachefs: Fix restart handling in for_each_btree_key()
2021-10-21 13:09:39 -04:00
Kayla Firestack
41d10332bd
switch to -n2 for pytest
2021-10-20 22:11:58 -04:00
Kayla Firestack
ae3e424b0c
bcachefs-kernel: update hash
2021-10-20 22:11:58 -04:00
Kayla Firestack
11dbd981b4
nix overlay: convert sha to file
2021-10-20 14:47:28 -04:00
Kayla Firestack
505299bcde
bcachefs-kernel.nix: rename sha256 function input
...
overlay.nix: rename diffHash to sha256
replaces diffHash function argument with the name sha256 for clarity
Signed-off-by: Kayla Firestack <dev@kaylafire.me>
2021-10-20 14:47:28 -04:00
Kayla Firestack
ca3a42a70c
flake.nix: add boot stage1 module test, which takes a long time to build
...
Signed-off-by: Kayla Firestack <dev@kaylafire.me>
2021-10-20 14:47:28 -04:00
Kayla Firestack
c229fa7075
flake.nix: add netboot-bcachefs nixosSystem definition
...
define example bcachefs enabled nixos installer
allows netboot to nixos installer with bcachefs kernel and -tools installed
Signed-off-by: Kayla Firestack <dev@kaylafire.me>
2021-10-20 14:47:28 -04:00
Kayla Firestack
fa27037e70
flake.nix: add nixosModules
...
Signed-off-by: Kayla Firestack <dev@kaylafire.me>
2021-10-20 14:47:28 -04:00
Kayla Firestack
96f55bdb32
flake.nix: add mount developer environment
...
Signed-off-by: Kayla Firestack <dev@kaylafire.me>
2021-10-20 14:47:28 -04:00
Kent Overstreet
7fa98d93f6
Update bcachefs sources to 4dd9a5a488 bcachefs: Fix for leaking of reflinked extents
2021-10-20 13:43:31 -04:00
Kent Overstreet
3db6ec44c5
Update bcachefs sources to d9d1235f3c bcachefs: Handle transaction restarts in bch2_blacklist_entries_gc()
2021-10-20 12:36:50 -04:00
Kayla Firestack
1fe24a0e83
edit default.nix to use the proper pytest variable
2021-10-20 09:53:04 -04:00
Kayla Firestack
ae3d49e823
Makefile: fix rst2man lookup and add pytest lookup
...
add pytest and rst2man lookups though command-v and which if available,
default to ENV/ARGS in the case of user specified locations and otherwise lookup via shell
Signed-off-by: Kayla Firestack <dev@kaylafire.me>
2021-10-20 09:30:16 -04:00
Kayla Firestack
045f7d2ba1
Makefile: prefix libbcachefs.so installation with DESTDIR
...
Signed-off-by: Kayla Firestack <dev@kaylafire.me>
2021-10-19 14:43:08 -04:00
Kent Overstreet
06a4dda333
Merge remote-tracking branch 'firestack/dev/nix/add-which'
2021-10-19 14:32:04 -04:00
Kayla Firestack
f403ef61e7
rst2man: convert which
to command -v
...
Signed-off-by: Kayla Firestack <dev@kaylafire.me>
2021-10-19 14:28:34 -04:00
Kent Overstreet
f10fc03854
Update bcachefs sources to 720f644e63 bcachefs: Improve reflink repair code
2021-10-19 13:50:45 -04:00
Igor Velkov
a77c35a1c4
fix "no rst2man found!" build error on debian and ubuntu
2021-10-18 17:41:11 -04:00
Igor Velkov
6e46ae07fa
add missing python3, python3-docutils dependency
2021-10-18 17:41:11 -04:00
Kent Overstreet
4ee9ebc32e
Build with -fPIC
...
The changes to how we integrate with rust code mean that we now need to
be emitting position indepedent code.
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
2021-10-18 16:57:08 -04:00