search for: 66b5b85

Displaying 1 result from an estimated 1 matches for "66b5b85".

Did you mean: 665b8e
2013 Apr 03
0
[PATCH] Btrfs-progs: add a free space cache checker to fsck
..._buffer_dirty(struct extent_buffer *eb); int clear_extent_buffer_dirty(struct extent_buffer *eb); +int read_data_from_disk(struct btrfs_fs_info *info, void *buf, u64 offset, + u64 bytes, int mirror); #endif diff --git a/free-space-cache.c b/free-space-cache.c new file mode 100644 index 0000000..66b5b85 --- /dev/null +++ b/free-space-cache.c @@ -0,0 +1,871 @@ +/* + * Copyright (C) 2008 Red Hat. All rights reserved. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License v2 as published by the Free Software Foundatio...