From 286c7f75bb977ea999c5ff22b8c5d4eee5848b75 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Mon, 15 Feb 2021 13:02:32 +0100 Subject: [PATCH] libzpool: set_global_var: fix endianness handling (fixes zdb -o ) Without this patch I get the error Setting global variables is only supported on little-endian systems when using `zdb -o` on my amd64 machine. Reviewed-by: Matthew Ahrens Reviewed-by: Brian Behlendorf Reviewed-by: Pavel Zakharov Signed-off-by: Christian Schwarz Closes #11602 --- lib/libzpool/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libzpool/util.c b/lib/libzpool/util.c index ebfaa9b41a..13d585299c 100644 --- a/lib/libzpool/util.c +++ b/lib/libzpool/util.c @@ -159,7 +159,7 @@ set_global_var(char *arg) char *varname = arg, *varval; u_longlong_t val; -#ifndef _LITTLE_ENDIAN +#ifndef _ZFS_LITTLE_ENDIAN /* * On big endian systems changing a 64-bit variable would set the high * 32 bits instead of the low 32 bits, which could cause unexpected