Skip to content

Commit

Permalink
fix it again
Browse files Browse the repository at this point in the history
due to "5408 managing ZFS cache devices requires lots of RAM"

the name changed again

hdr->b_state

to

hdr->b_l1hdr.b_state
  • Loading branch information
kernelOfTruth committed Mar 16, 2015
1 parent c76ca73 commit 129c618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/zfs/arc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 129c618

Please sign in to comment.