summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndriy Gapon <[email protected]>2017-06-26 13:46:45 +0300
committerBrian Behlendorf <[email protected]>2017-06-30 11:11:01 -0700
commit2a53d6a12a27b757d1d8867b2e02369fbc046cab (patch)
tree5dd3701c8492cb7a1693898822568be8b186cba2
parentc6f6767eea2179689873efdad4929f73f7f2b10b (diff)
OpenZFS 8426 - mark immutable buffer arguments as such in abd.h
Authored by: Andriy Gapon <[email protected]> Reviewed by: Matt Ahrens <[email protected]> Approved by: Robert Mustacchi <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: George Melikov <[email protected]> Ported-by: Giuseppe Di Natale <[email protected]> OpenZFS-issue: https://www.illumos.org/issues/8426 OpenZFS-commit: https://github.com/openzfs/openzfs/commit/37359a6 Closes #6287
-rw-r--r--include/sys/abd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sys/abd.h b/include/sys/abd.h
index d2db7e199..59b679491 100644
--- a/include/sys/abd.h
+++ b/include/sys/abd.h
@@ -142,7 +142,7 @@ abd_copy(abd_t *dabd, abd_t *sabd, size_t size)
}
static inline void
-abd_copy_from_buf(abd_t *abd, void *buf, size_t size)
+abd_copy_from_buf(abd_t *abd, const void *buf, size_t size)
{
abd_copy_from_buf_off(abd, buf, 0, size);
}
@@ -154,7 +154,7 @@ abd_copy_to_buf(void* buf, abd_t *abd, size_t size)
}
static inline int
-abd_cmp_buf(abd_t *abd, void *buf, size_t size)
+abd_cmp_buf(abd_t *abd, const void *buf, size_t size)
{
return (abd_cmp_buf_off(abd, buf, 0, size));
}