Fix RSS build (broken in r331309).

Sponsored by:	Chelsio Communications
This commit is contained in:
Navdeep Parhar 2018-03-29 19:48:17 +00:00
parent f3524ec8ed
commit b9a9e8e9bd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=331745

View File

@ -1820,9 +1820,9 @@ in_pcblookup_group(struct inpcbinfo *pcbinfo, struct inpcbgroup *pcbgroup,
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)