1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-22 07:20:00 +00:00

vfs: move __always_inline to canonical position

Ahead of including inline in __always_inline, move __always_inline to
where inline goes.

Reviewed by:	kib, olce
Sponsored by:	Dell EMC Isilon
Differential Revision:	https://reviews.freebsd.org/D45709
This commit is contained in:
Ryan Libby 2024-06-24 10:05:58 -07:00
parent 3c84b4b35f
commit eae1767d8f
2 changed files with 2 additions and 2 deletions

View File

@ -1240,7 +1240,7 @@ vop_stdunset_text(struct vop_unset_text_args *ap)
__assert_unreachable();
}
static int __always_inline
static __always_inline int
vop_stdadd_writecount_impl(struct vop_add_writecount_args *ap, bool handle_msync)
{
struct vnode *vp;

View File

@ -3980,7 +3980,7 @@ vdrop(struct vnode *vp)
vdropl(vp);
}
static void __always_inline
static __always_inline void
vdropl_impl(struct vnode *vp, bool enqueue)
{