diff options
author | Yuri Pankov <[email protected]> | 2017-06-12 20:16:28 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-07-08 20:35:35 -0700 |
commit | e19572e4cc0b8df95ebf60053029e454592a92d4 (patch) | |
tree | 7e4b6ec6a9c03afb2d1aa252c9cfc332b07593cf /module/zfs/spa_misc.c | |
parent | b24827ac1e327f763a8dd4ed60c44c2a5d918b42 (diff) |
OpenZFS 5428 - provide fts(), reallocarray(), and strtonum()
Authored by: Yuri Pankov <[email protected]>
Reviewed by: Robert Mustacchi <[email protected]>
Approved by: Joshua M. Clulow <[email protected]>
Reviewed-by: Giuseppe Di Natale <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Ported-by: Brian Behlendorf <[email protected]>
Porting Notes:
* All hunks unrelated to ZFS were dropped.
OpenZFS-issue: https://www.illumos.org/issues/5428
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/4585130
Closes #6326
Diffstat (limited to 'module/zfs/spa_misc.c')
-rw-r--r-- | module/zfs/spa_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/spa_misc.c b/module/zfs/spa_misc.c index 8e23bcf45..09e5067a5 100644 --- a/module/zfs/spa_misc.c +++ b/module/zfs/spa_misc.c @@ -1465,7 +1465,7 @@ zfs_panic_recover(const char *fmt, ...) * lowercase hexadecimal numbers that don't overflow. */ uint64_t -strtonum(const char *str, char **nptr) +zfs_strtonum(const char *str, char **nptr) { uint64_t val = 0; char c; |