You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: check/main.c
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2785,7 +2785,7 @@ static int repair_inode_no_item(struct btrfs_trans_handle *trans,
2785
2785
type_recovered=1;
2786
2786
filetype=BTRFS_FT_DIR;
2787
2787
} else{
2788
-
printf("Can't determine the filetype for inode %llu, assume it is a normal file\n",
2788
+
printf("Can't determine the file type for inode %llu, assume it is a normal file\n",
2789
2789
rec->ino);
2790
2790
type_recovered=1;
2791
2791
filetype=BTRFS_FT_REG_FILE;
@@ -7650,7 +7650,7 @@ static int delete_duplicate_records(struct btrfs_root *root,
7650
7650
7651
7651
if (tmp->start+tmp->nr<good->start+good->nr) {
7652
7652
fprintf(stderr,
7653
-
"Ok we have overlapping extents that aren't completely covered by each other, this is going to require more careful thought. The extents are [%llu-%llu] and [%llu-%llu]\n",
7653
+
"we have overlapping extents that aren't completely covered by each other, this is going to require more careful thought. The extents are [%llu-%llu] and [%llu-%llu]\n",
7654
7654
tmp->start, tmp->nr, good->start, good->nr);
7655
7655
abort();
7656
7656
}
@@ -8866,7 +8866,7 @@ static int check_devices(struct rb_root *dev_cache,
8866
8866
if (dev_rec->devid==gfs_info->super_copy->dev_item.devid) {
8867
8867
/*
8868
8868
* This dev item mismatch between super and chunk tree
8869
-
* is not a criticl problem, and CI kernels do not receive
8869
+
* is not a critical problem, and CI kernels do not receive
8870
8870
* needed backport so they will cause mismatch during RW mounts.
8871
8871
*
8872
8872
* SO here we didn't record the mismatch as an error.
0 commit comments