staging: lustre: Fix typo in printk
authorMasanari Iida <standby24x7@gmail.com>
Sat, 20 Jul 2013 18:38:08 +0000 (03:38 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Jul 2013 20:47:01 +0000 (13:47 -0700)
Correct spelling typo in printk within staging/lustre

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/llite/vvp_io.c
drivers/staging/lustre/lustre/obdclass/genops.c
drivers/staging/lustre/lustre/obdecho/echo_client.c
drivers/staging/lustre/lustre/ptlrpc/gss/gss_krb5_mech.c

index 23149f9..50a4c91 100644 (file)
@@ -970,7 +970,7 @@ static int vvp_io_commit_write(const struct lu_env *env,
        LINVRNT(cl_page_is_vmlocked(env, pg));
        LASSERT(vmpage->mapping->host == inode);
 
-       LU_OBJECT_HEADER(D_INODE, env, &obj->co_lu, "commiting page write\n");
+       LU_OBJECT_HEADER(D_INODE, env, &obj->co_lu, "committing page write\n");
        CL_PAGE_HEADER(D_PAGE, env, pg, "committing: [%d, %d]\n", from, to);
 
        /*
index d96876e..ea041a3 100644 (file)
@@ -1484,7 +1484,7 @@ int obd_export_evict_by_uuid(struct obd_device *obd, const char *uuid)
                CERROR("%s: can't disconnect %s: no exports found\n",
                       obd->obd_name, uuid);
        } else {
-               CWARN("%s: evicting %s at adminstrative request\n",
+               CWARN("%s: evicting %s at administrative request\n",
                       obd->obd_name, doomed_exp->exp_client_uuid.uuid);
                class_fail_export(doomed_exp);
                class_export_put(doomed_exp);
index de8f4ea..2e52ef2 100644 (file)
@@ -649,7 +649,7 @@ static int echo_site_init(const struct lu_env *env, struct echo_device *ed)
        /* initialize site */
        rc = cl_site_init(site, &ed->ed_cl);
        if (rc) {
-               CERROR("Cannot initilize site for echo client(%d)\n", rc);
+               CERROR("Cannot initialize site for echo client(%d)\n", rc);
                return rc;
        }
 
index 4b28931..91da763 100644 (file)
@@ -341,7 +341,7 @@ __u32 import_context_rfc1964(struct krb5_ctx *kctx, char *p, char *end)
        if (p != end)
                goto out_err;
 
-       CDEBUG(D_SEC, "succesfully imported rfc1964 context\n");
+       CDEBUG(D_SEC, "successfully imported rfc1964 context\n");
        return 0;
 out_err:
        return GSS_S_FAILURE;
@@ -403,7 +403,7 @@ __u32 import_context_rfc4121(struct krb5_ctx *kctx, char *p, char *end)
        if (get_keyblock(&p, end, &kctx->kc_keyc, keysize))
                goto out_err;
 
-       CDEBUG(D_SEC, "succesfully imported v2 context\n");
+       CDEBUG(D_SEC, "successfully imported v2 context\n");
        return 0;
 out_err:
        return GSS_S_FAILURE;
@@ -494,7 +494,7 @@ __u32 gss_copy_reverse_context_kerberos(struct gss_ctx *gctx,
                goto out_err;
 
        gctx_new->internal_ctx_id = knew;
-       CDEBUG(D_SEC, "succesfully copied reverse context\n");
+       CDEBUG(D_SEC, "successfully copied reverse context\n");
        return GSS_S_COMPLETE;
 
 out_err: