diff options
author | Vitaliy Makkoveev <mvs@cvs.openbsd.org> | 2023-01-31 13:41:55 +0000 |
---|---|---|
committer | Vitaliy Makkoveev <mvs@cvs.openbsd.org> | 2023-01-31 13:41:55 +0000 |
commit | 44b2f07cf3bb89251b13f600abfbc445ed3d6d13 (patch) | |
tree | 6b46c04fa339244f47c10c7825b0618f909dca30 /sys/netinet/if_ether.c | |
parent | 115f565baec390e15252f9e71acb1a287b71edc4 (diff) |
Remove the last ones route lock references from comments.
No functional change.
Diffstat (limited to 'sys/netinet/if_ether.c')
-rw-r--r-- | sys/netinet/if_ether.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 6a68a6d8d81..eb2e56f2ec0 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.255 2023/01/31 11:47:35 mvs Exp $ */ +/* $OpenBSD: if_ether.c,v 1.256 2023/01/31 13:41:54 mvs Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -417,8 +417,8 @@ arpresolve(struct ifnet *ifp, struct rtentry *rt0, struct mbuf *m, * Re-check since we grab the kernel lock after the first check. * rtrequest_delete() can be called with shared netlock. From * there arp_rtrequest() is reached which touches RTF_LLINFO - * and rt_llinfo. As this is called with route lock we grab the - * route lock here and are safe. XXXSMP + * and rt_llinfo. As this is called with kernel lock we grab the + * kernel lock here and are safe. XXXSMP */ if (!ISSET(rt->rt_flags, RTF_LLINFO)) { KERNEL_UNLOCK(); |