mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
Fix typos in contrib/
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
This commit is contained in:
committed by
Brian Behlendorf
parent
ad0b23b14a
commit
cd6b910b64
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 = {}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user