Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

bcachefs: Fix a handful of spelling mistakes in various messages

There are several spelling mistakes in error messages. Fix these.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>

authored by

Colin Ian King and committed by
Kent Overstreet
6bf3766b 74c1e422

+5 -5
+1 -1
fs/bcachefs/backpointers.c
··· 357 357 int ret = 0; 358 358 359 359 if (fsck_err_on(!bch2_dev_exists2(c, k.k->p.inode), c, 360 - "backpointer for mising device:\n%s", 360 + "backpointer for missing device:\n%s", 361 361 (bch2_bkey_val_to_text(&buf, c, k), buf.buf))) { 362 362 ret = bch2_btree_delete_at(trans, bp_iter, 0); 363 363 goto out;
+1 -1
fs/bcachefs/btree_iter.c
··· 1495 1495 static noinline void btree_path_overflow(struct btree_trans *trans) 1496 1496 { 1497 1497 bch2_dump_trans_paths_updates(trans); 1498 - panic("trans path oveflow\n"); 1498 + panic("trans path overflow\n"); 1499 1499 } 1500 1500 1501 1501 static inline struct btree_path *btree_path_alloc(struct btree_trans *trans,
+1 -1
fs/bcachefs/recovery.c
··· 562 562 if ((recovery_passes & RECOVERY_PASS_ALL_FSCK) == RECOVERY_PASS_ALL_FSCK) 563 563 prt_str(&buf, "fsck required"); 564 564 else { 565 - prt_str(&buf, "running recovery passses: "); 565 + prt_str(&buf, "running recovery passes: "); 566 566 prt_bitflags(&buf, bch2_recovery_passes, recovery_passes); 567 567 } 568 568
+1 -1
fs/bcachefs/snapshot.c
··· 1385 1385 if (!test_bit(BCH_FS_STARTED, &c->flags)) { 1386 1386 ret = bch2_fs_read_write_early(c); 1387 1387 if (ret) { 1388 - bch_err_msg(c, ret, "error deleleting dead snapshots: error going rw"); 1388 + bch_err_msg(c, ret, "deleting dead snapshots: error going rw"); 1389 1389 return ret; 1390 1390 } 1391 1391 }
+1 -1
fs/bcachefs/super-io.c
··· 384 384 } 385 385 386 386 if (bch2_is_zero(sb->uuid.b, sizeof(sb->uuid))) { 387 - prt_printf(out, "Bad intenal UUID (got zeroes)"); 387 + prt_printf(out, "Bad internal UUID (got zeroes)"); 388 388 return -BCH_ERR_invalid_sb_uuid; 389 389 } 390 390