diff options
author | Andrew Kreimer <[email protected]> | 2024-10-27 15:35:18 +0200 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2024-11-05 17:12:41 -0800 |
commit | b5e60497a4b7f0b295c4c59b202cf4703b27062b (patch) | |
tree | 8e1378d4dc6a43446680c9952fc9b3ca171396ed | |
parent | e01caa2b63c88c64ee90b83a92a584ec90feeda5 (diff) |
ocfs2: cluster: fix a typo
Fix a typo: panicing -> panicking.
Via codespell.
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Andrew Kreimer <[email protected]>
Acked-by: Joseph Qi <[email protected]>
Cc: Mark Fasheh <[email protected]>
Cc: Joel Becker <[email protected]>
Cc: Junxiao Bi <[email protected]>
Cc: Changwei Ge <[email protected]>
Cc: Jun Piao <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | fs/ocfs2/cluster/quorum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/cluster/quorum.c b/fs/ocfs2/cluster/quorum.c index 15d0ed9c13e5..8bf17231d7b7 100644 --- a/fs/ocfs2/cluster/quorum.c +++ b/fs/ocfs2/cluster/quorum.c @@ -60,7 +60,7 @@ static void o2quo_fence_self(void) switch (o2nm_single_cluster->cl_fence_method) { case O2NM_FENCE_PANIC: panic("*** ocfs2 is very sorry to be fencing this system by " - "panicing ***\n"); + "panicking ***\n"); break; default: WARN_ON(o2nm_single_cluster->cl_fence_method >= |