Displaying 2 results from an estimated 2 matches for "a6e1000".
Did you mean:
7e6e1000
2011 Apr 07
0
[PATCH] btrfs-progs: cast u64 to long long to avoid printf warnings
...oot->nodesize, 0);
}
if (!leaf) {
- fprintf(stderr, "failed to read %llu\n", block_only);
+ fprintf(stderr, "failed to read %llu\n",
+ (unsigned long long)block_only);
return 0;
}
btrfs_print_tree(root, leaf, 0);
diff --git a/disk-io.c b/disk-io.c
index a6e1000..5295dca 100644
--- a/disk-io.c
+++ b/disk-io.c
@@ -678,7 +678,8 @@ struct btrfs_root *open_ctree_fd(int fp, const char *path, u64 sb_bytenr,
~BTRFS_FEATURE_INCOMPAT_SUPP;
if (features) {
printk("couldn''t open because of unsupported "
- "option features (%...
2011 Aug 06
0
help recover from unmountable btrfs
...can manually recover from a failure
to update the roots.
Signed-off-by: Alexandre Oliva <oliva@lsd.ic.unicamp.br>
---
disk-io.c | 41 +++++++++++++++++++++++++++++++++++++++++
volumes.c | 3 +++
2 files changed, 44 insertions(+), 0 deletions(-)
diff --git a/disk-io.c b/disk-io.c
index a6e1000..6860c26 100644
--- a/disk-io.c
+++ b/disk-io.c
@@ -87,6 +87,22 @@ int csum_tree_block_size(struct extent_buffer *buf, u16 csum_size,
printk("checksum verify failed on %llu wanted %X "
"found %X\n", (unsigned long long)buf->start,
*((int *)result), *...