From 129c6185bae84af6b723d4f065909f8fcfc66eee Mon Sep 17 00:00:00 2001 From: kernelOfTruth Date: Mon, 16 Mar 2015 04:57:11 +0100 Subject: [PATCH] fix it again due to "5408 managing ZFS cache devices requires lots of RAM" the name changed again hdr->b_state to hdr->b_l1hdr.b_state --- module/zfs/arc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/zfs/arc.c b/module/zfs/arc.c index ca49d1efe810..5d4f6a9b1d07 100644 --- a/module/zfs/arc.c +++ b/module/zfs/arc.c @@ -3455,7 +3455,7 @@ arc_access(arc_buf_hdr_t *hdr, kmutex_t *hash_lock) DTRACE_PROBE1(new_state__mfu, arc_buf_hdr_t *, hdr); arc_change_state(arc_mfu, hdr, hash_lock); } else { - cmn_err(CE_PANIC, "invalid arc state 0x%p", hdr->b_state); + cmn_err(CE_PANIC, "invalid arc state 0x%p", hdr->b_l1hdr.b_state); } }