From 0dad9b2f9a5d5859708ec21145191f418965f7e9 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 11 Dec 2009 12:02:05 -0800 Subject: [PATCH] Adding missed * in debug ASSERT. --- module/zfs/dmu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/zfs/dmu.c b/module/zfs/dmu.c index dfa075571b..8840d65dcb 100644 --- a/module/zfs/dmu.c +++ b/module/zfs/dmu.c @@ -680,7 +680,7 @@ dmu_req_copy(void *arg_buf, int size, int *offset, struct request *req) rq_for_each_segment(bv, req, iter) { /* Fully consumed the passed arg_buf */ - ASSERT3S(offset, <=, size); + ASSERT3S(*offset, <=, size); if (size == *offset) break;