summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiuseppe Di Natale <[email protected]>2017-07-26 09:44:21 -0700
committerBrian Behlendorf <[email protected]>2017-07-26 09:44:21 -0700
commitbff245dd342f7318bfa88e471e584c2c46f8c4db (patch)
treeb721f0274514676def04b1af81c48cbe58128121
parent8740cf4a2f5f7ff7fb6c214e0baf06356b2870b8 (diff)
OpenZFS 8508 - Mounting a zpool on 32-bit platforms panics
Authored by: Justin Hibbits <[email protected]> Reviewed by: Matt Ahrens <[email protected]> Approved by: Dan McDonald <[email protected]> Reviewed-by: Tony Hutter <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Ported-by: Giuseppe Di Natale <[email protected]> OpenZFS-issue: https://www.illumos.org/issues/8508 OpenZFS-commit: https://github.com/openzfs/openzfs/commit/15fc257 Closes #6404
-rw-r--r--module/zfs/spa_history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/spa_history.c b/module/zfs/spa_history.c
index 6dfc927b2..73571c032 100644
--- a/module/zfs/spa_history.c
+++ b/module/zfs/spa_history.c
@@ -616,7 +616,7 @@ spa_history_log_version(spa_t *spa, const char *operation)
utsname_t *u = utsname();
spa_history_log_internal(spa, operation, NULL,
- "pool version %llu; software version %llu/%d; uts %s %s %s %s",
+ "pool version %llu; software version %llu/%llu; uts %s %s %s %s",
(u_longlong_t)spa_version(spa), SPA_VERSION, ZPL_VERSION,
u->nodename, u->release, u->version, u->machine);
}