mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-07 13:14:51 +00:00
Mark ZFS ABD inline functions static.
When built with -fno-inline-functions zfs.ko contains undefined references to these functions if they are only marked inline. Reviewed by: avg (earlier version) MFC after: 1 week Sponsored by: Chelsio Communications
This commit is contained in:
parent
d395fd0d46
commit
b99836cea9
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=322601
@ -61,7 +61,7 @@ typedef int abd_iter_func2_t(void *, void *, size_t, void *);
|
||||
|
||||
extern boolean_t zfs_abd_scatter_enabled;
|
||||
|
||||
inline boolean_t
|
||||
static inline boolean_t
|
||||
abd_is_linear(abd_t *abd)
|
||||
{
|
||||
return ((abd->abd_flags & ABD_FLAG_LINEAR) != 0 ? B_TRUE : B_FALSE);
|
||||
@ -110,31 +110,31 @@ void abd_zero_off(abd_t *, size_t, size_t);
|
||||
* Wrappers for calls with offsets of 0
|
||||
*/
|
||||
|
||||
inline void
|
||||
static inline void
|
||||
abd_copy(abd_t *dabd, abd_t *sabd, size_t size)
|
||||
{
|
||||
abd_copy_off(dabd, sabd, 0, 0, size);
|
||||
}
|
||||
|
||||
inline void
|
||||
static inline void
|
||||
abd_copy_from_buf(abd_t *abd, const void *buf, size_t size)
|
||||
{
|
||||
abd_copy_from_buf_off(abd, buf, 0, size);
|
||||
}
|
||||
|
||||
inline void
|
||||
static inline void
|
||||
abd_copy_to_buf(void* buf, abd_t *abd, size_t size)
|
||||
{
|
||||
abd_copy_to_buf_off(buf, abd, 0, size);
|
||||
}
|
||||
|
||||
inline int
|
||||
static inline int
|
||||
abd_cmp_buf(abd_t *abd, const void *buf, size_t size)
|
||||
{
|
||||
return (abd_cmp_buf_off(abd, buf, 0, size));
|
||||
}
|
||||
|
||||
inline void
|
||||
static inline void
|
||||
abd_zero(abd_t *abd, size_t size)
|
||||
{
|
||||
abd_zero_off(abd, 0, size);
|
||||
|
Loading…
Reference in New Issue
Block a user