From: Coly Li <[email protected]> Mainline commit 73ac36ea14fd18ea3dc057e41b16ff31a3c0bd5a
When I review ocfs2 code, find there are 2 typos to "successfull". After doing grep "successfull " in kernel tree, 22 typos found totally -- great minds always think alike :) This patch fixes all the similar typos. Thanks for Randy's ack and comments. Signed-off-by: Coly Li <[email protected]> Acked-by: Randy Dunlap <[email protected]> Acked-by: Roland Dreier <[email protected]> Cc: Jeremy Kerr <[email protected]> Cc: Jeff Garzik <[email protected]> Cc: Heiko Carstens <[email protected]> Cc: Martin Schwidefsky <[email protected]> Cc: Theodore Ts'o <[email protected]> Cc: Mark Fasheh <[email protected]> Cc: Vlad Yasevich <[email protected]> Cc: Sridhar Samudrala <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> --- fs/ocfs2/dlmglue.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c index fce142b..7eceb0a 100644 --- a/fs/ocfs2/dlmglue.c +++ b/fs/ocfs2/dlmglue.c @@ -978,7 +978,7 @@ static int ocfs2_lock_create(struct ocfs2_super *osb, ocfs2_recover_from_dlm_error(lockres, 1); } - mlog(0, "lock %s, successfull return from dlmlock\n", lockres->l_name); + mlog(0, "lock %s, successful return from dlmlock\n", lockres->l_name); bail: mlog_exit(ret); @@ -1189,7 +1189,7 @@ again: goto out; } - mlog(0, "lock %s, successfull return from dlmlock\n", + mlog(0, "lock %s, successful return from dlmlock\n", lockres->l_name); /* At this point we've gone inside the dlm and need to @@ -2837,7 +2837,7 @@ static int ocfs2_drop_lock(struct ocfs2_super *osb, dlm_print_one_lock(lockres->l_lksb.lockid); BUG(); } - mlog(0, "lock %s, successfull return from dlmunlock\n", + mlog(0, "lock %s, successful return from dlmunlock\n", lockres->l_name); ocfs2_wait_on_busy_lock(lockres); -- 1.5.6.3 _______________________________________________ Ocfs2-devel mailing list [email protected] http://oss.oracle.com/mailman/listinfo/ocfs2-devel
