copy_data should be static
Some checks are pending
build / bcachefs-tools-deb (ubuntu-22.04) (push) Waiting to run
build / bcachefs-tools-deb (ubuntu-24.04) (push) Waiting to run
build / bcachefs-tools-rpm (push) Waiting to run
build / bcachefs-tools-msrv (push) Waiting to run
Nix Flake actions / nix-matrix (push) Waiting to run
Nix Flake actions / ${{ matrix.name }} (${{ matrix.system }}) (push) Blocked by required conditions

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Kent Overstreet 2025-04-26 21:19:54 -04:00
parent 2d61df8787
commit e00e83b84d

View File

@ -176,7 +176,7 @@ static void write_data(struct bch_fs *c,
die("write error: %s", bch2_err_str(op.error)); die("write error: %s", bch2_err_str(op.error));
} }
void copy_data(struct bch_fs *c, static void copy_data(struct bch_fs *c,
struct bch_inode_unpacked *dst_inode, struct bch_inode_unpacked *dst_inode,
int src_fd, u64 start, u64 end) int src_fd, u64 start, u64 end)
{ {