]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
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 23149f96f136eb5936df95c58f2576b9bc2af5be..50a4c9104f6d7ac64c846a6a3ab495d340968d00 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 d96876e0bc68e355c6649e41733f744e3e3d3e9b..ea041a34f5f7e56f888bbaaa8308598c3dfb8de4 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 de8f4ea7f156f95845b51db7192615da3aae0b23..2e52ef2f92a9bd6d3543231769f7f66d7e3a6571 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 4b28931bbc9625ee62ce43f819b28fb6c934e44e..91da7637756d6d887bf27658f8707691c1708606 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: