Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NAS-132126 / 24.10.1 / Add missing error code from libzfs (by usaleem-ix) #290

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add missing error code from libzfs
EZFS_ASHIFT_MISMATCH added to libzfs.h, but since it was not present
in py-libzfs, the error codes were out of sync. This commit fixes
this.

Signed-off-by: Umer Saleem <usaleem@ixsystems.com>
(cherry picked from commit b898879)
  • Loading branch information
usaleem-ix authored and bugclerk committed Oct 31, 2024
commit 82ac0c72f5d902b2e71620b24568ab5ace620142
1 change: 1 addition & 0 deletions pxd/libzfs.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ cdef extern from "libzfs.h" nogil:
EZFS_RESUME_EXISTS
EZFS_SHAREFAILED
EZFS_RAIDZ_EXPAND_IN_PROGRESS
EZFS_ASHIFT_MISMATCH
EZFS_UNKNOWN

IF HAVE_ZFS_ENCRYPTION:
Expand Down
Loading