diff options
| author | Kristof Provost <kp@FreeBSD.org> | 2022-04-06 14:45:18 +0000 |
|---|---|---|
| committer | Kristof Provost <kp@FreeBSD.org> | 2022-04-14 07:46:25 +0000 |
| commit | bb8e1dfbff30e5df97fa31c88f8218af054fe166 (patch) | |
| tree | 6c350b5fdb4e5ef863a83c46086b43ef8cf4ba10 | |
| parent | c6cf486fa6affbb6131fdb57b5050ae7e748ba67 (diff) | |
pf: use ERROUT_IOCTL()
Use ERROUT_IOCTL() rather than hand-rolling the macro. This adds DTrace
SDTs in the error path, making debugging ioctl errors easier.
MFC after: 1 week
Sponsored by: Rubicon Communications, LLC ("Netgate")
(cherry picked from commit bef7104571f35eeffc27b25d8857a7940dd23ab8)
| -rw-r--r-- | sys/netpfil/pf/pf_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/pf/pf_ioctl.c b/sys/netpfil/pf/pf_ioctl.c index 5d4b90f395d5..fd0eb5b85299 100644 --- a/sys/netpfil/pf/pf_ioctl.c +++ b/sys/netpfil/pf/pf_ioctl.c @@ -2683,7 +2683,7 @@ DIOCGETRULENV_error: newrule->cpid = td->td_proc ? td->td_proc->p_pid : 0; TAILQ_INIT(&newrule->rpool.list); } -#define ERROUT(x) { error = (x); goto DIOCCHANGERULE_error; } +#define ERROUT(x) ERROUT_IOCTL(DIOCCHANGERULE_error, x) PF_RULES_WLOCK(); #ifdef PF_WANT_32_TO_64_COUNTER |
