mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-31 16:57:10 +00:00
move VN_RELE_ASYNC to the compatibility layer with the rest of the VN_* defines
This commit is contained in:
parent
fb1db28b6d
commit
c20fd07777
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=191905
@ -75,6 +75,7 @@ vn_is_readonly(vnode_t *vp)
|
||||
#define VN_HOLD(v) vref(v)
|
||||
#define VN_RELE(v) vrele(v)
|
||||
#define VN_URELE(v) vput(v)
|
||||
#define VN_RELE_ASYNC(v, tq) vn_rele_async(v, tq);
|
||||
|
||||
#define VOP_REALVP(vp, vpp, ct) (*(vpp) = (vp), 0)
|
||||
|
||||
|
@ -381,11 +381,6 @@ struct taskq;
|
||||
void vn_rele_async(struct vnode *vp, struct taskq *taskq);
|
||||
void vn_rele_async_fini(void);
|
||||
|
||||
|
||||
#define VN_RELE_ASYNC(vp, taskq) { \
|
||||
vn_rele_async(vp, taskq); \
|
||||
}
|
||||
|
||||
/*
|
||||
* Flags to VOP_SETATTR/VOP_GETATTR.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user