]> granicus.if.org Git - zfs/commitdiff
Fix typos in contrib/
authorAndrea Gelmini <andrea.gelmini@gelma.net>
Fri, 30 Aug 2019 16:44:43 +0000 (18:44 +0200)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 30 Aug 2019 16:44:43 +0000 (09:44 -0700)
Reviewed-by: Ryan Moeller <ryan@ixsystems.com>
Reviewed-by: Richard Laager <rlaager@wiktel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Closes #9235

contrib/initramfs/scripts/zfs.in
contrib/pyzfs/docs/source/conf.py
contrib/pyzfs/libzfs_core/_libzfs_core.py
contrib/pyzfs/libzfs_core/_nvlist.py
contrib/pyzfs/libzfs_core/exceptions.py
contrib/pyzfs/libzfs_core/test/test_libzfs_core.py

index 9e90d76bb1140d8f9e413eda4614920097e5589d..c82b210d7e9586b1e2fc810a051b5b308c9374ec 100644 (file)
@@ -78,7 +78,7 @@ find_rootfs()
 {
        local pool="$1"
 
-       # If 'POOL_IMPORTED' isn't set, no pool imported and therefor
+       # If 'POOL_IMPORTED' isn't set, no pool imported and therefore
        # we won't be able to find a root fs.
        [ -z "${POOL_IMPORTED}" ] && return 1
 
@@ -135,7 +135,7 @@ get_pools()
        # Get the base list of available pools.
        available_pools=$(find_pools "$ZPOOL" import)
 
-       # Just in case - seen it happen (that a pool isn't visable/found
+       # Just in case - seen it happen (that a pool isn't visible/found
        # with a simple "zpool import" but only when using the "-d"
        # option or setting ZPOOL_IMPORT_PATH).
        if [ -d "/dev/disk/by-id" ]
@@ -401,7 +401,7 @@ mount_fs()
        return 0
 }
 
-# Unlock a ZFS native crypted filesystem.
+# Unlock a ZFS native encrypted filesystem.
 decrypt_fs()
 {
        local fs="$1"
@@ -606,7 +606,7 @@ setup_snapshot_booting()
        if ! grep -qiE '(^|[^\\](\\\\)* )(rollback)=(on|yes|1)( |$)' /proc/cmdline
        then
                # If the destination dataset for the clone
-               # already exists, destroy it. Recursivly
+               # already exists, destroy it. Recursively
                if [ $(get_fs_value "${rootfs}_${snapname}" type) ]; then
                        filesystems=$("${ZFS}" list -oname -tfilesystem -H \
                            -r -Sname "${ZFS_BOOTFS}")
@@ -616,7 +616,7 @@ setup_snapshot_booting()
                fi
        fi
 
-       # Get all snapshots, recursivly (might need to clone /usr, /var etc
+       # Get all snapshots, recursively (might need to clone /usr, /var etc
        # as well).
        for s in $("${ZFS}" list -H -oname -tsnapshot -r "${rootfs}" | \
            grep "${snapname}")
@@ -843,7 +843,7 @@ mountroot()
                # Strip 'zfs:' and 'ZFS='.
                ZFS_BOOTFS="${ROOT#*[:=]}"
 
-               # Stip everything after the first slash.
+               # Strip everything after the first slash.
                ZFS_RPOOL="${ZFS_BOOTFS%%/*}"
        fi
 
index 4ffd7c93e5bda09626be7ca2ad2f7963bdb3f25c..4bbb938b6296e223ce48a9cedb806f32929d4d61 100644 (file)
@@ -291,7 +291,7 @@ autodoc_member_order = 'bysource'
 
 #######################
 # Neutralize effects of function wrapping on documented signatures.
-# The affected signatures could be explcitly placed into the
+# The affected signatures could be explicitly placed into the
 # documentation (either in .rst files or as a first line of a
 # docstring).
 import functools
index 5a4843943940f885722b5c79dfb3152582b6be69..06797b0f36d54bdd854e1b8076663501ec89f8f1 100644 (file)
@@ -300,7 +300,7 @@ def lzc_destroy_snaps(snaps, defer):
 
         Typical error is :exc:`SnapshotIsCloned` if `defer` is `False`.
         The snapshot names are validated quite loosely and invalid names are
-        typically ignored as nonexisiting snapshots.
+        typically ignored as nonexisting snapshots.
 
         A snapshot name referring to a filesystem that doesn't exist is
         ignored.
@@ -470,7 +470,7 @@ def lzc_hold(holds, fd=None):
     Holds for snapshots which don't exist will be skipped and have an entry
     added to the return value, but will not cause an overall failure.
     No exceptions is raised if all holds, for snapshots that existed, were
-    succesfully created.
+    successfully created.
     Otherwise :exc:`.HoldFailure` exception is raised and no holds will be
     created.
     :attr:`.HoldFailure.errors` may contain a single element for an error that
@@ -654,7 +654,7 @@ def lzc_send_space(snapname, fromsnap=None, flags=None):
         should be done.
     :param fromsnap: the optional starting snapshot name.
         If not `None` then an incremental stream size is estimated, otherwise
-        a full stream is esimated.
+        a full stream is estimated.
     :type fromsnap: `bytes` or `None`
     :param flags: the flags that control what enhanced features can be used
         in the stream.
@@ -1178,11 +1178,11 @@ def receive_header(fd):
         the type of the dataset for which the stream has been created
         (volume, filesystem)
     '''
-    # read sizeof(dmu_replay_record_t) bytes directly into the memort backing
+    # read sizeof(dmu_replay_record_t) bytes directly into the memory backing
     # 'record'
     record = _ffi.new("dmu_replay_record_t *")
     _ffi.buffer(record)[:] = os.read(fd, _ffi.sizeof(record[0]))
-    # get drr_begin member and its representation as a Pythn dict
+    # get drr_begin member and its representation as a Python dict
     drr_begin = record.drr_u.drr_begin
     header = {}
     for field, descr in _ffi.typeof(drr_begin).fields:
@@ -1688,7 +1688,7 @@ def lzc_set_props(name, prop, val):
 # As the extended API is not committed yet, the names of the new interfaces
 # are not settled down yet.
 # It's not clear if atomically setting multiple properties is an achievable
-# goal and an interface acting on mutiple entities must do so atomically
+# goal and an interface acting on multiple entities must do so atomically
 # by convention.
 # Being able to set a single property at a time is sufficient for ClusterHQ.
 lzc_set_prop = lzc_set_props
@@ -1725,7 +1725,7 @@ def lzc_list(name, options):
         Absence of this option implies all types.
 
     The first of the returned file descriptors can be used to
-    read the listing in a binary encounded format.  The data is
+    read the listing in a binary encoded format.  The data is
     a series of variable sized records each starting with a fixed
     size header, the header is followed by a serialized ``nvlist``.
     Each record describes a single element and contains the element's
index fe4239a3c06ecc103b83e0bd4a584d6e75c1eb7f..dc6d820bdea314e35a9863783f034484d3e0db06 100644 (file)
@@ -113,7 +113,7 @@ def packed_nvlist_out(packed_nvlist, packed_size):
 
     :param bytes packed_nvlist: packed nvlist_t.
     :param int packed_size: nvlist_t packed size.
-    :return: an `dict` of values representing the data containted by nvlist_t.
+    :return: an `dict` of values representing the data contained by nvlist_t.
     :rtype: dict
     """
     props = {}
index f465cd3d9309b97cbe5c1c817f354b3eddfd7075..f8a775433b3c205c947be504d96bdf4b8ef8073c 100644 (file)
@@ -77,7 +77,7 @@ class MultipleOperationsFailure(ZFSError):
             ZFSError.__str__(self), len(self.errors), self.suppressed_count)
 
     def __repr__(self):
-        return "%s(%r, %r, errors=%r, supressed=%r)" % (
+        return "%s(%r, %r, errors=%r, suppressed=%r)" % (
             self.__class__.__name__, self.errno, self.message, self.errors,
             self.suppressed_count)
 
@@ -372,7 +372,7 @@ class NoSpace(ZFSError):
 
 class QuotaExceeded(ZFSError):
     errno = errno.EDQUOT
-    message = "Quouta exceeded"
+    message = "Quota exceeded"
 
     def __init__(self, name):
         self.name = name
index 18306f88e4e52104c0a2ab6d6de1068269b3e39b..613d5eccd0c20654dc847bab167b573f0da1cf6a 100644 (file)
@@ -1913,7 +1913,7 @@ class ZFSTest(unittest.TestCase):
                 filecmp.cmp(
                     os.path.join(mnt1, name), os.path.join(mnt2, name), False))
 
-    # This test case fails unless unless a patch from
+    # This test case fails unless a patch from
     # https://clusterhq.atlassian.net/browse/ZFS-20
     # is applied to libzfs_core, otherwise it succeeds.
     @unittest.skip("fails with unpatched libzfs_core")
@@ -2160,7 +2160,7 @@ class ZFSTest(unittest.TestCase):
         with streams(srcfs, src1, src2) as (_, (full, incr)):
             lzc.lzc_receive(dst1, full.fileno())
             lzc.lzc_snapshot([dst_snap])
-            # becase cannot receive incremental and set origin on a non-clone
+            # because cannot receive incremental and set origin on a non-clone
             with self.assertRaises(lzc_exc.BadStream):
                 lzc.lzc_receive(dst2, incr.fileno(), origin=dst1)
 
@@ -2375,7 +2375,7 @@ class ZFSTest(unittest.TestCase):
                 for i in range(1024):
                     f.write(b'x' * 1024)
                 lzc.lzc_receive(dst, stream.fileno(), force=True)
-                # The temporary file dissappears and any access, even close(),
+                # The temporary file disappears and any access, even close(),
                 # results in EIO.
                 self.assertFalse(os.path.exists(f.name))
                 with self.assertRaises(IOError):
@@ -2462,7 +2462,7 @@ class ZFSTest(unittest.TestCase):
                 for i in range(1024):
                     f.write(b'x' * 1024)
                 lzc.lzc_receive(dst2, incr.fileno(), force=True)
-                # The temporary file dissappears and any access, even close(),
+                # The temporary file disappears and any access, even close(),
                 # results in EIO.
                 self.assertFalse(os.path.exists(f.name))
                 with self.assertRaises(IOError):