diff options
author | Matthew Macy <[email protected]> | 2019-12-03 09:49:40 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-12-03 09:49:40 -0800 |
commit | 74d1d749596d9d60723e05be3a5e24600721a32c (patch) | |
tree | 861b52b4c81c660d2aca32c4b2f96a62fc183668 /module/zcommon/zprop_common.c | |
parent | e69bb31b71f60b338fa5510dc48de298f394ad73 (diff) |
Move linux qsort def to platform header
Moving qsort to the platform header allows each platform to
provide an appropriate sorting implementation.
Reviewed-by: Allan Jude <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Matt Macy <[email protected]>
Closes #9663
Diffstat (limited to 'module/zcommon/zprop_common.c')
-rw-r--r-- | module/zcommon/zprop_common.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/module/zcommon/zprop_common.c b/module/zcommon/zprop_common.c index 8416983fd..c4256c66f 100644 --- a/module/zcommon/zprop_common.c +++ b/module/zcommon/zprop_common.c @@ -41,11 +41,7 @@ #include "zfs_prop.h" #include "zfs_deleg.h" -#if defined(_KERNEL) -#include <linux/sort.h> -#define qsort(base, num, size, cmp) \ - sort(base, num, size, cmp, NULL) -#else +#if !defined(_KERNEL) #include <stdlib.h> #include <string.h> #include <ctype.h> |