aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/firewire
diff options
context:
space:
mode:
authorJustin Hibbits <jhibbits@FreeBSD.org>2023-10-04 20:56:52 +0000
committerJustin Hibbits <jhibbits@FreeBSD.org>2023-10-13 18:33:31 +0000
commit8f31b879ecaf9e738dba631df4606742ee404e8e (patch)
tree1d52da6b8270a2caa232bb6a09cdb979a9779c23 /sys/dev/firewire
parent5e444deec055c495069988dfcba23a1e08b0f0d0 (diff)
Diffstat (limited to 'sys/dev/firewire')
-rw-r--r--sys/dev/firewire/if_fwip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/firewire/if_fwip.c b/sys/dev/firewire/if_fwip.c
index 5237c555d999..b698db6c9620 100644
--- a/sys/dev/firewire/if_fwip.c
+++ b/sys/dev/firewire/if_fwip.c
@@ -780,7 +780,7 @@ fwip_stream_input(struct fw_xferq *xferq)
* Record the sender ID for possible BPF usage.
*/
src = ntohl(p[1]) >> 16;
- if (bpf_peers_present(if_getbpf(ifp))) {
+ if (bpf_peers_present_if(ifp)) {
mtag = m_tag_alloc(MTAG_FIREWIRE,
MTAG_FIREWIRE_SENDER_EUID,
2*sizeof(uint32_t), M_NOWAIT);
@@ -880,7 +880,7 @@ fwip_unicast_input(struct fw_xfer *xfer)
goto done;
}
- if (bpf_peers_present(if_getbpf(ifp))) {
+ if (bpf_peers_present_if(ifp)) {
/*
* Record the sender ID for possible BPF usage.
*/