svn commit: r332889 - stable/11/sys/netinet
Jonathan T. Looney
jtl at FreeBSD.org
Mon Apr 23 14:22:17 UTC 2018
Author: jtl
Date: Mon Apr 23 14:22:16 2018
New Revision: 332889
URL: https://svnweb.freebsd.org/changeset/base/332889
Log:
MFC r331745 (by np):
Fix RSS build (broken in r331309).
Sponsored by: Chelsio Communications
PR: 227691
Pointy-hat to: jtl
Modified:
stable/11/sys/netinet/in_pcb.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/netinet/in_pcb.c
==============================================================================
--- stable/11/sys/netinet/in_pcb.c Mon Apr 23 13:47:29 2018 (r332888)
+++ stable/11/sys/netinet/in_pcb.c Mon Apr 23 14:22:16 2018 (r332889)
@@ -1807,9 +1807,9 @@ in_pcblookup_group(struct inpcbinfo *pcbinfo, struct i
found:
if (lookupflags & INPLOOKUP_WLOCKPCB)
- locked = TRY_INP_WLOCK(inp);
+ locked = INP_TRY_WLOCK(inp);
else if (lookupflags & INPLOOKUP_RLOCKPCB)
- locked = TRY_INP_RLOCK(inp);
+ locked = INP_TRY_RLOCK(inp);
else
panic("%s: locking bug", __func__);
if (!locked)
More information about the svn-src-stable-11
mailing list