summaryrefslogtreecommitdiffstats
path: root/contrib/pyzfs
diff options
context:
space:
mode:
authorAllan Jude <[email protected]>2020-07-31 12:01:41 -0400
committerGitHub <[email protected]>2020-07-31 09:01:41 -0700
commit4cf6f10714109902504156c0e02ee97a11a32cc1 (patch)
tree824de18dbe539ff91abdfc315c96f793d726554c /contrib/pyzfs
parent948423a3d1b6b396b46c8edbee9d77515a62589b (diff)
pyzfs: Add missing entry to zfs_errno
This was causing all later errno's to have the incorrect value. Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Allan Jude <[email protected]> Closes #10649
Diffstat (limited to 'contrib/pyzfs')
-rw-r--r--contrib/pyzfs/libzfs_core/_constants.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/pyzfs/libzfs_core/_constants.py b/contrib/pyzfs/libzfs_core/_constants.py
index 50dca67f3..367ffb63a 100644
--- a/contrib/pyzfs/libzfs_core/_constants.py
+++ b/contrib/pyzfs/libzfs_core/_constants.py
@@ -95,6 +95,7 @@ zfs_errno = enum_with_offset(1024, [
'ZFS_ERR_EXPORT_IN_PROGRESS',
'ZFS_ERR_BOOKMARK_SOURCE_NOT_ANCESTOR',
'ZFS_ERR_STREAM_TRUNCATED',
+ 'ZFS_ERR_STREAM_LARGE_BLOCK_MISMATCH',
'ZFS_ERR_RESILVER_IN_PROGRESS',
'ZFS_ERR_REBUILD_IN_PROGRESS',
],