mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
vfs: s/__unused/__diagused in crossmp_*
Sponsored by: Rubicon Communications, LLC ("Netgate")
This commit is contained in:
parent
a121115621
commit
7fd856ba07
1 changed files with 4 additions and 4 deletions
|
|
@ -97,9 +97,9 @@ static int
|
|||
crossmp_vop_lock1(struct vop_lock1_args *ap)
|
||||
{
|
||||
struct vnode *vp;
|
||||
struct lock *lk __unused;
|
||||
const char *file __unused;
|
||||
int flags, line __unused;
|
||||
struct lock *lk __diagused;
|
||||
const char *file __diagused;
|
||||
int flags, line __diagused;
|
||||
|
||||
vp = ap->a_vp;
|
||||
lk = vp->v_vnlock;
|
||||
|
|
@ -123,7 +123,7 @@ static int
|
|||
crossmp_vop_unlock(struct vop_unlock_args *ap)
|
||||
{
|
||||
struct vnode *vp;
|
||||
struct lock *lk __unused;
|
||||
struct lock *lk __diagused;
|
||||
|
||||
vp = ap->a_vp;
|
||||
lk = vp->v_vnlock;
|
||||
|
|
|
|||
Loading…
Reference in a new issue