mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
OpenZFS 8426 - mark immutable buffer arguments as such in abd.h
Authored by: Andriy Gapon <avg@FreeBSD.org> Reviewed by: Matt Ahrens <mahrens@delphix.com> Approved by: Robert Mustacchi <rm@joyent.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: George Melikov <mail@gmelikov.ru> Ported-by: Giuseppe Di Natale <dinatale2@llnl.gov> OpenZFS-issue: https://www.illumos.org/issues/8426 OpenZFS-commit: https://github.com/openzfs/openzfs/commit/37359a6 Closes #6287
This commit is contained in:
parent
c6f6767eea
commit
2a53d6a12a
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user