aboutsummaryrefslogtreecommitdiffstats
path: root/module/zfs/dmu.c
diff options
context:
space:
mode:
authorDan Kimmel <[email protected]>2016-07-13 17:17:41 -0400
committerBrian Behlendorf <[email protected]>2016-09-13 09:59:13 -0700
commit524b4217b866b4b9385bc3c4e80acf4f77459a89 (patch)
tree9064b333b04d0dd52a7ac2446bdc23d0daf176a8 /module/zfs/dmu.c
parentc4434877ae449a637d0f302eca80fcaad354874f (diff)
DLPX-44733 combine arc_buf_alloc_impl() with arc_buf_clone()
Authored by: Dan Kimmel <[email protected]> Reviewed by: Tom Caputi <[email protected]> Reviewed by: Brian Behlendorf <[email protected]> Ported by: David Quigley <[email protected]> Issue #5078
Diffstat (limited to 'module/zfs/dmu.c')
-rw-r--r--module/zfs/dmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/dmu.c b/module/zfs/dmu.c
index 5c061f201..d2f4aac98 100644
--- a/module/zfs/dmu.c
+++ b/module/zfs/dmu.c
@@ -1376,7 +1376,7 @@ dmu_assign_arcbuf(dmu_buf_t *handle, uint64_t offset, arc_buf_t *buf,
/* compressed bufs must always be assignable to their dbuf */
ASSERT3U(arc_get_compression(buf), ==, ZIO_COMPRESS_OFF);
- ASSERT(!(buf->b_prop_flags & ARC_BUF_FLAG_COMPRESSED));
+ ASSERT(!(buf->b_flags & ARC_BUF_FLAG_COMPRESSED));
DB_DNODE_ENTER(dbuf);
dn = DB_DNODE(dbuf);