mirror of
https://github.com/opnsense/src.git
synced 2026-06-13 10:40:19 -04: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:
parent
3c84b4b35f
commit
eae1767d8f
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue