This repository has been archived by the owner on Nov 7, 2019. It is now read-only.
forked from illumos/illumos-gate
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8898 creating fs with checksum=skein on the boot pools fails ungracef…
…ully Reviewed by: Toomas Soome <[email protected]> Reviewed by: Andy Stormont <[email protected]> Approved by: Dan McDonald <[email protected]>
- Loading branch information
Yuri Pankov
authored and
Dan McDonald
committed
Dec 21, 2017
1 parent
9a551dd
commit 9fa2266
Showing
2 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
* Copyright (c) 2013 Martin Matuska. All rights reserved. | ||
* Copyright (c) 2013 Steven Hartland. All rights reserved. | ||
* Copyright (c) 2014 Integros [integros.com] | ||
* Copyright 2016 Nexenta Systems, Inc. | ||
* Copyright 2017 Nexenta Systems, Inc. | ||
* Copyright 2016 Igor Kozhukhov <[email protected]> | ||
* Copyright 2017 RackTop Systems. | ||
*/ | ||
|
@@ -3476,6 +3476,10 @@ zfs_create(libzfs_handle_t *hdl, const char *path, zfs_type_t type, | |
"pool must be upgraded to set this " | ||
"property or value")); | ||
return (zfs_error(hdl, EZFS_BADVERSION, errbuf)); | ||
case ERANGE: | ||
zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, | ||
"invalid property value(s) specified")); | ||
return (zfs_error(hdl, EZFS_BADPROP, errbuf)); | ||
#ifdef _ILP32 | ||
case EOVERFLOW: | ||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters