]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
spelling corrections 1684/head
authorDmitry Smirnov <onlyjob@member.fsf.org>
Thu, 17 Apr 2014 02:43:30 +0000 (12:43 +1000)
committerDmitry Smirnov <onlyjob@member.fsf.org>
Thu, 17 Apr 2014 02:43:30 +0000 (12:43 +1000)
doc/dev/osd_internals/map_message_handling.rst
doc/man/8/crushtool.rst
doc/rados/troubleshooting/troubleshooting-mon.rst
man/crushtool.8
src/crush/CrushCompiler.cc
src/mon/Paxos.h
src/osd/OSD.cc
src/osd/PG.cc
src/pybind/rados.py
src/rgw/rgw_admin.cc
src/test/cli/radosgw-admin/help.t

index eb27396df376197a6950d15d03db4fdc9b8a501e..d7b4031beae3f44cd5691290edfd51e93fe8aa38 100644 (file)
@@ -55,7 +55,7 @@ OSD::require_same_or_newer map checks that the current OSDMap is at least
 as new as the map epoch indicated on the message.  If not, the message is
 queued in OSD::waiting_for_osdmap via OSD::wait_for_new_map.  Note, this
 cannot violate the above conditions since any two messages will be queued
-in order of receipt and if a message is recieved with epoch e0, a later message
+in order of receipt and if a message is received with epoch e0, a later message
 from the same source must be at epoch at least e0.  Note that two PGs from
 the same OSD count for these purposes as different sources for single PG
 messages.  That is, messages from different PGs may be reordered.
index 6995446049335a0b8872a00959ac7b47b2bbbd06..27f1de757a322dbf6b53b6b92b27274b094af334 100644 (file)
@@ -60,7 +60,7 @@ Running tests with --test
 The test mode will use the input crush map ( as specified with **-i
 map** ) and perform a dry run of CRUSH mapping or random placement (
 if **--simulate** is set ). On completion, two kinds of reports can be
-created. The **--show-...** options output human readable informations
+created. The **--show-...** options output human readable information
 on stderr. The **--output-csv** option creates CSV files that are
 documented by the **--help-output** option.
 
index 440fdd2a333a6d0b5b094d3c0b3bc7296ad800c2..fa69ec862d81a8708317061e832285387c6e026e 100644 (file)
@@ -100,7 +100,7 @@ Understanding mon_status
 
 ``mon_status`` can be obtained through the ``ceph`` tool when you have
 a formed quorum, or via the admin socket if you don't. This command will
-output a multitude of informations about the monitor, including the same
+output a multitude of information about the monitor, including the same
 output you would get with ``quorum_status``.
 
 Take the following example of ``mon_status``::
@@ -282,7 +282,7 @@ In this sort of situations, you have two possible solutions:
 Scrap the monitor and create a new one
 
   You should only take this route if you are positive that you won't
-  lose the informations kept by that monitor; that you have other monitors
+  lose the information kept by that monitor; that you have other monitors
   and that they are running just fine so that your new monitor is able
   to synchronize from the remaining monitors. Keep in mind that destroying
   a monitor, if there are no other copies of its contents, may lead to
index 38a379b40d2e84f66a9a8b04c0334df3abb541b0..bb518f7714d487203852b50dacdd5b59aea3d2b2 100644 (file)
@@ -125,7 +125,7 @@ CEPH_ARGS="\-\-debug\-crush 0" crushtool ...
 The test mode will use the input crush map ( as specified with \fB\-i
 map\fP ) and perform a dry run of CRUSH mapping or random placement (
 if \fB\-\-simulate\fP is set ). On completion, two kinds of reports can be
-created. The \fB\-\-show\-...\fP options output human readable informations
+created. The \fB\-\-show\-...\fP options output human readable information
 on stderr. The \fB\-\-output\-csv\fP option creates CSV files that are
 documented by the \fB\-\-help\-output\fP option.
 .INDENT 0.0
index 6f87899b36d374b69a1a9ecb268892a264fd623d..b52a55ad9d00389ccdfba8d9d3240ce1311748cf 100644 (file)
@@ -375,7 +375,7 @@ int CrushCompiler::parse_tunable(iter_t const& i)
 
   /*
 
-    current crop of tunables are all now "safe".  reenable this when we
+    current crop of tunables are all now "safe".  re-enable this when we
     add new ones that are ... new.
 
   if (!unsafe_tunables) {
index 764c4fee40443caba7dbacaa13d220dc0e2f6ba6..b9e43a14c63ff7c4deb14406b3f78ea7ed43537a 100644 (file)
@@ -658,7 +658,7 @@ private:
    * onto the original Paxos' Prepare phase. Basically, we'll generate a
    * Proposal Number, taking @p oldpn into consideration, and we will send
    * it to a quorum, along with our first and last committed versions. By
-   * sending these informations in a message to the quorum, we expect to
+   * sending these information in a message to the quorum, we expect to
    * obtain acceptances from a majority, allowing us to commit, or be
    * informed of a higher Proposal Number known by one or more of the Peons
    * in the quorum.
@@ -676,7 +676,7 @@ private:
    * accordingly.
    *
    * Once a Peon receives a collect message from the Leader it will reply
-   * with its first and last committed versions, as well as informations so
+   * with its first and last committed versions, as well as information so
    * the Leader may know if his Proposal Number was, or was not, accepted by
    * the Peon. The Peon will accept the Leader's Proposal Number iif it is
    * higher than the Peon's currently accepted Proposal Number. The Peon may
index 69faf9a315c2a8d621138d43bda8bc72aabac097..4b9f3a36946caf446c11745f03b03466dc7ae6b6 100644 (file)
@@ -6477,7 +6477,7 @@ void OSD::do_notifies(
       cluster_messenger->send_message(m, con.get());
     } else {
       dout(7) << "do_notify osd " << it->first
-             << " sending seperate messages" << dendl;
+             << " sending separate messages" << dendl;
       for (vector<pair<pg_notify_t, pg_interval_map_t> >::iterator i =
             it->second.begin();
           i != it->second.end();
@@ -6516,7 +6516,7 @@ void OSD::do_queries(map<int, map<spg_t,pg_query_t> >& query_map,
       cluster_messenger->send_message(m, con.get());
     } else {
       dout(7) << "do_queries querying osd." << who
-             << " sending seperate messages "
+             << " sending saperate messages "
              << " on " << pit->second.size() << " PGs" << dendl;
       for (map<spg_t, pg_query_t>::iterator i = pit->second.begin();
           i != pit->second.end();
index 5a79ab98ba95eb6e33ac6e047e3f1d0d917043a6..7dd0acae8c2b5f20919e24652f0cc675eec5ed7d 100644 (file)
@@ -6910,7 +6910,7 @@ boost::statechart::result PG::RecoveryState::GetLog::react(const MLogRec& logevt
             << "non-auth_log_shard osd." << logevt.from << dendl;
     return discard_event();
   }
-  dout(10) << "GetLog: recieved master log from osd" 
+  dout(10) << "GetLog: received master log from osd"
           << logevt.from << dendl;
   msg = logevt.msg;
   post_event(GotLog());
index 6d02d38581dd905b000a8dee692c05ffe44419a2..e5da0771771ae5eb47b698ccbb85e14d667286aa 100644 (file)
@@ -383,7 +383,7 @@ Rados object in state %s." % (self.state))
       Ping a monitor to assess liveness
 
       May be used as a simply way to assess liveness, or to obtain
-      informations about the monitor in a simple way even in the
+      information about the monitor in a simple way even in the
       absence of quorum.
 
       :param mon_id: the ID portion of the monitor's name (i.e., mon.<ID>)
index d1b7e961ff66c62324d0feb629c212865ff0d633..ec83878037191e05955932607970f836ca1601d6 100644 (file)
@@ -45,7 +45,7 @@ void _usage()
   cerr << "  user info                  get user info\n";
   cerr << "  user rm                    remove user\n";
   cerr << "  user suspend               suspend a user\n";
-  cerr << "  user enable                reenable user after suspension\n";
+  cerr << "  user enable                re-enable user after suspension\n";
   cerr << "  user check                 check user info\n";
   cerr << "  user stats                 show user stats as accounted by quota subsystem\n";
   cerr << "  caps add                   add user capabilities\n";
index ca3e7471b10abc1e930170d7c0fe7847cd561447..a46d240d54cdc66f06219ffa072716ccda80390a 100644 (file)
@@ -6,7 +6,7 @@
     user info                  get user info
     user rm                    remove user
     user suspend               suspend a user
-    user enable                reenable user after suspension
+    user enable                re-enable user after suspension
     user check                 check user info
     user stats                 show user stats as accounted by quota subsystem
     caps add                   add user capabilities