diff options
| author | Amar Tumballi <amar@gluster.com> | 2011-03-18 00:41:08 +0000 | 
|---|---|---|
| committer | Vijay Bellur <vijay@dev.gluster.com> | 2011-03-22 04:02:10 -0700 | 
| commit | 6167c66758de454284560474f3b4a893d8a69965 (patch) | |
| tree | c3c4c392cd71d63ba05e4091ab98101bb460a032 /rpc | |
| parent | c0d8f11be283637622b0ece82ba8392f0a67e87c (diff) | |
spelling errors fixed across the code base
recieve -> receive
maintainence -> maintenance
verison -> version
commited -> committed
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 2262 (Spelling errors in source)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2262
Diffstat (limited to 'rpc')
| -rw-r--r-- | rpc/rpc-lib/src/rpc-clnt.c | 4 | ||||
| -rw-r--r-- | rpc/rpc-lib/src/rpc-transport.h | 2 | ||||
| -rw-r--r-- | rpc/rpc-lib/src/rpcsvc.c | 2 | ||||
| -rw-r--r-- | rpc/rpc-transport/rdma/src/rdma.c | 6 | ||||
| -rw-r--r-- | rpc/rpc-transport/socket/src/socket.c | 2 | 
5 files changed, 8 insertions, 8 deletions
diff --git a/rpc/rpc-lib/src/rpc-clnt.c b/rpc/rpc-lib/src/rpc-clnt.c index 7e8a67a8137..f85249b152f 100644 --- a/rpc/rpc-lib/src/rpc-clnt.c +++ b/rpc/rpc-lib/src/rpc-clnt.c @@ -625,7 +625,7 @@ rpc_clnt_reply_init (rpc_clnt_connection_t *conn, rpc_transport_pollin_t *msg,                  goto out;          } -        gf_log (conn->trans->name, GF_LOG_TRACE, "recieved rpc message (RPC XID: 0x%ux" +        gf_log (conn->trans->name, GF_LOG_TRACE, "received rpc message (RPC XID: 0x%ux"                  " Program: %s, ProgVers: %d, Proc: %d) from rpc-transport (%s)",                  saved_frame->rpcreq->xid,                  saved_frame->rpcreq->prog->progname, @@ -666,7 +666,7 @@ rpc_clnt_handle_cbk (struct rpc_clnt *clnt, rpc_transport_pollin_t *msg)          }          gf_log (clnt->conn.trans->name, GF_LOG_TRACE, -                "recieved rpc message (XID: 0x%lx, " +                "received rpc message (XID: 0x%lx, "                  "Ver: %ld, Program: %ld, ProgVers: %ld, Proc: %ld) "                  "from rpc-transport (%s)", rpc_call_xid (&rpcmsg),                  rpc_call_rpcvers (&rpcmsg), rpc_call_program (&rpcmsg), diff --git a/rpc/rpc-lib/src/rpc-transport.h b/rpc/rpc-lib/src/rpc-transport.h index a955df11126..b42df31ea25 100644 --- a/rpc/rpc-lib/src/rpc-transport.h +++ b/rpc/rpc-lib/src/rpc-transport.h @@ -97,7 +97,7 @@ typedef enum {                                      * reading a single msg, this event may be                                      * delivered more than once.                                      */ -        RPC_TRANSPORT_MAP_XID_REQUEST, /* reciever of this event should send +        RPC_TRANSPORT_MAP_XID_REQUEST, /* receiver of this event should send                                          * the prognum and procnum corresponding                                          * to xid.                                          */ diff --git a/rpc/rpc-lib/src/rpcsvc.c b/rpc/rpc-lib/src/rpcsvc.c index cd8629de47d..9d0d3d7a1a5 100644 --- a/rpc/rpc-lib/src/rpcsvc.c +++ b/rpc/rpc-lib/src/rpcsvc.c @@ -348,7 +348,7 @@ rpcsvc_request_create (rpcsvc_t *svc, rpc_transport_t *trans,          ret = -1;          rpcsvc_request_init (svc, trans, &rpcmsg, progmsg, msg, req); -        gf_log (GF_RPCSVC, GF_LOG_TRACE, "recieved rpc-message (XID: 0x%lx, " +        gf_log (GF_RPCSVC, GF_LOG_TRACE, "received rpc-message (XID: 0x%lx, "                  "Ver: %ld, Program: %ld, ProgVers: %ld, Proc: %ld) from"                  " rpc-transport (%s)", rpc_call_xid (&rpcmsg),                  rpc_call_rpcvers (&rpcmsg), rpc_call_program (&rpcmsg), diff --git a/rpc/rpc-transport/rdma/src/rdma.c b/rpc/rpc-transport/rdma/src/rdma.c index 177730f65a0..7d2bfc0ad74 100644 --- a/rpc/rpc-transport/rdma/src/rdma.c +++ b/rpc/rpc-transport/rdma/src/rdma.c @@ -2866,14 +2866,14 @@ rdma_decode_header (rdma_peer_t *peer, rdma_post_t *post,          case RDMA_MSGP:                  gf_log (RDMA_LOG_NAME, GF_LOG_ERROR,                          "rdma msg of msg-type RDMA_MSGP should not have been " -                        "recieved"); +                        "received");                  ret = -1;                  break;          case RDMA_DONE:                  gf_log (RDMA_LOG_NAME, GF_LOG_ERROR,                          "rdma msg of msg-type RDMA_DONE should not have been " -                        "recieved"); +                        "received");                  ret = -1;                  break; @@ -3042,7 +3042,7 @@ rdma_pollin_notify (rdma_peer_t *peer, rdma_post_t *post)                  }                  /* handling the case where both hdr and payload of -                 * GF_FOP_READ_CBK were recieved in a single iobuf +                 * GF_FOP_READ_CBK were received in a single iobuf                   * because of server sending entire msg as inline without                   * doing rdma writes.                   */ diff --git a/rpc/rpc-transport/socket/src/socket.c b/rpc/rpc-transport/socket/src/socket.c index 87430d22aae..395bf738427 100644 --- a/rpc/rpc-transport/socket/src/socket.c +++ b/rpc/rpc-transport/socket/src/socket.c @@ -1382,7 +1382,7 @@ __socket_read_frag (rpc_transport_t *this)                  } else if (priv->incoming.msg_type == GF_UNIVERSAL_ANSWER) {                          gf_log ("rpc", GF_LOG_ERROR,                                  "older version of protocol/process trying to " -                                "connect from %s. use newer verison on that node", +                                "connect from %s. use newer version on that node",                                  this->peerinfo.identifier);                  } else {                          gf_log ("rpc", GF_LOG_ERROR,  | 
