diff options
author | Varun Shastry <vshastry@redhat.com> | 2012-09-25 20:25:08 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2012-09-27 11:20:20 -0700 |
commit | 1ee65fe16f427c48d55856879f125d8e218a5823 (patch) | |
tree | 694c0e7511db29934159f9bfc3c8203e29b5bc9e | |
parent | 2c04db460276c9de666d7ddaffc031492a7de867 (diff) |
Fixed some general typing errors.
Eg: changed recieved to received
Change-Id: I360fcb99c97c8a0222e373fee20ea2fccfb938db
BUG: 860543
Signed-off-by: Varun Shastry <vshastry@redhat.com>
Reviewed-on: http://review.gluster.org/3998
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
-rw-r--r-- | glusterfsd/src/glusterfsd-mgmt.c | 2 | ||||
-rw-r--r-- | rpc/rpc-transport/rdma/src/rdma.c | 2 | ||||
-rw-r--r-- | xlators/cluster/dht/src/dht-rebalance.c | 2 | ||||
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-handshake.c | 4 | ||||
-rw-r--r-- | xlators/storage/posix/src/posix-aio.c | 6 |
5 files changed, 8 insertions, 8 deletions
diff --git a/glusterfsd/src/glusterfsd-mgmt.c b/glusterfsd/src/glusterfsd-mgmt.c index cd72d32ca7a..661fe5414b3 100644 --- a/glusterfsd/src/glusterfsd-mgmt.c +++ b/glusterfsd/src/glusterfsd-mgmt.c @@ -1702,7 +1702,7 @@ glusterfs_rebalance_event_notify_cbk (struct rpc_req *req, struct iovec *iov, if (-1 == rsp.op_ret) { gf_log (frame->this->name, GF_LOG_ERROR, - "Recieved error (%s) from server", + "Received error (%s) from server", strerror (rsp.op_errno)); ret = -1; goto out; diff --git a/rpc/rpc-transport/rdma/src/rdma.c b/rpc/rpc-transport/rdma/src/rdma.c index facc92358a8..9e58793640d 100644 --- a/rpc/rpc-transport/rdma/src/rdma.c +++ b/rpc/rpc-transport/rdma/src/rdma.c @@ -2979,7 +2979,7 @@ gf_rdma_decode_header (gf_rdma_peer_t *peer, gf_rdma_post_t *post, case GF_RDMA_ERROR: gf_log (GF_RDMA_LOG_NAME, GF_LOG_WARNING, - "recieved a msg of type RDMA_ERROR"); + "received a msg of type RDMA_ERROR"); ret = gf_rdma_decode_error_msg (peer, post, bytes_in_post); break; diff --git a/xlators/cluster/dht/src/dht-rebalance.c b/xlators/cluster/dht/src/dht-rebalance.c index 2989d6a436d..d31f8a012c4 100644 --- a/xlators/cluster/dht/src/dht-rebalance.c +++ b/xlators/cluster/dht/src/dht-rebalance.c @@ -1680,7 +1680,7 @@ gf_defrag_stop (gf_defrag_info_t *defrag, dict_t *output) goto out; } - gf_log ("", GF_LOG_INFO, "Recieved stop command on rebalance"); + gf_log ("", GF_LOG_INFO, "Received stop command on rebalance"); defrag->defrag_status = GF_DEFRAG_STATUS_STOPPED; if (output) diff --git a/xlators/mgmt/glusterd/src/glusterd-handshake.c b/xlators/mgmt/glusterd/src/glusterd-handshake.c index 8411843006b..ab38de17c9c 100644 --- a/xlators/mgmt/glusterd/src/glusterd-handshake.c +++ b/xlators/mgmt/glusterd/src/glusterd-handshake.c @@ -239,14 +239,14 @@ server_event_notify (rpcsvc_request_t *req) switch (args.op) { case GF_EN_DEFRAG_STATUS: gf_log ("", GF_LOG_INFO, - "recieved defrag status updated"); + "received defrag status updated"); if (dict) { glusterd_defrag_event_notify_handle (dict); need_rsp = _gf_false; } break; default: - gf_log ("", GF_LOG_ERROR, "Unkown op recieved in in event " + gf_log ("", GF_LOG_ERROR, "Unknown op received in event " "notify"); ret = -1; break; diff --git a/xlators/storage/posix/src/posix-aio.c b/xlators/storage/posix/src/posix-aio.c index b4dd02785a4..c520f44f443 100644 --- a/xlators/storage/posix/src/posix-aio.c +++ b/xlators/storage/posix/src/posix-aio.c @@ -421,7 +421,7 @@ posix_aio_init (xlator_t *this) ret = io_setup (POSIX_AIO_MAX_NR_EVENTS, &priv->ctxp); if ((ret == -1 && errno == ENOSYS) || ret == -ENOSYS) { gf_log (this->name, GF_LOG_WARNING, - "Linux AIO not availble at run-time." + "Linux AIO not available at run-time." " Continuing with synchronous IO"); ret = 0; goto out; @@ -490,7 +490,7 @@ int posix_aio_on (xlator_t *this) { gf_log (this->name, GF_LOG_INFO, - "Linux AIO not availble at build-time." + "Linux AIO not available at build-time." " Continuing with synchronous IO"); return 0; } @@ -499,7 +499,7 @@ int posix_aio_off (xlator_t *this) { gf_log (this->name, GF_LOG_INFO, - "Linux AIO not availble at build-time." + "Linux AIO not available at build-time." " Continuing with synchronous IO"); return 0; } |