68 lines
2.5 KiB
Diff
68 lines
2.5 KiB
Diff
From 61b2134ccc24a8843a1c9bc8bfd28bdfe88a0aab Mon Sep 17 00:00:00 2001
|
|
From: Colin Ian King <colin.i.king@gmail.com>
|
|
Date: Mon, 7 Oct 2024 09:11:21 +0100
|
|
Subject: [PATCH 003/233] bcachefs: remove superfluous ; after statements
|
|
Content-Type: text/plain; charset="utf-8"
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
There are a several statements with two following semicolons, replace
|
|
these with just one semicolon.
|
|
|
|
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
|
|
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Signed-off-by: Alexander Miroshnichenko <alex@millerson.name>
|
|
---
|
|
fs/bcachefs/btree_update.c | 2 +-
|
|
fs/bcachefs/ec.c | 2 +-
|
|
fs/bcachefs/super.c | 4 ++--
|
|
3 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/fs/bcachefs/btree_update.c b/fs/bcachefs/btree_update.c
|
|
index 5d809e8bd170..79a274dcd17b 100644
|
|
--- a/fs/bcachefs/btree_update.c
|
|
+++ b/fs/bcachefs/btree_update.c
|
|
@@ -144,7 +144,7 @@ int __bch2_insert_snapshot_whiteouts(struct btree_trans *trans,
|
|
!(ret = bkey_err(old_k)) &&
|
|
bkey_eq(old_pos, old_k.k->p)) {
|
|
struct bpos whiteout_pos =
|
|
- SPOS(new_pos.inode, new_pos.offset, old_k.k->p.snapshot);;
|
|
+ SPOS(new_pos.inode, new_pos.offset, old_k.k->p.snapshot);
|
|
|
|
if (!bch2_snapshot_is_ancestor(c, old_k.k->p.snapshot, old_pos.snapshot) ||
|
|
snapshot_list_has_ancestor(c, &s, old_k.k->p.snapshot))
|
|
diff --git a/fs/bcachefs/ec.c b/fs/bcachefs/ec.c
|
|
index 749dcf368841..d489a9e28702 100644
|
|
--- a/fs/bcachefs/ec.c
|
|
+++ b/fs/bcachefs/ec.c
|
|
@@ -909,7 +909,7 @@ int bch2_ec_read_extent(struct btree_trans *trans, struct bch_read_bio *rbio,
|
|
bch2_bkey_val_to_text(&msgbuf, c, orig_k);
|
|
bch_err_ratelimited(c,
|
|
"error doing reconstruct read: %s\n %s", msg, msgbuf.buf);
|
|
- printbuf_exit(&msgbuf);;
|
|
+ printbuf_exit(&msgbuf);
|
|
ret = -BCH_ERR_stripe_reconstruct;
|
|
goto out;
|
|
}
|
|
diff --git a/fs/bcachefs/super.c b/fs/bcachefs/super.c
|
|
index a6ed9a0bf1c7..17442df7326d 100644
|
|
--- a/fs/bcachefs/super.c
|
|
+++ b/fs/bcachefs/super.c
|
|
@@ -1120,12 +1120,12 @@ static int bch2_dev_in_fs(struct bch_sb_handle *fs,
|
|
|
|
prt_bdevname(&buf, fs->bdev);
|
|
prt_char(&buf, ' ');
|
|
- bch2_prt_datetime(&buf, le64_to_cpu(fs->sb->write_time));;
|
|
+ bch2_prt_datetime(&buf, le64_to_cpu(fs->sb->write_time));
|
|
prt_newline(&buf);
|
|
|
|
prt_bdevname(&buf, sb->bdev);
|
|
prt_char(&buf, ' ');
|
|
- bch2_prt_datetime(&buf, le64_to_cpu(sb->sb->write_time));;
|
|
+ bch2_prt_datetime(&buf, le64_to_cpu(sb->sb->write_time));
|
|
prt_newline(&buf);
|
|
|
|
if (!opts->no_splitbrain_check)
|
|
--
|
|
2.45.2
|
|
|