svn commit: r362975 - stable/11/sys/netinet6
Mark Johnston
markj at FreeBSD.org
Mon Jul 6 20:23:15 UTC 2020
Author: markj
Date: Mon Jul 6 20:23:14 2020
New Revision: 362975
URL: https://svnweb.freebsd.org/changeset/base/362975
Log:
MFC r359154:
Fix synchronization in the IPV6_2292PKTOPTIONS set handler.
Modified:
stable/11/sys/netinet6/ip6_output.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/netinet6/ip6_output.c
==============================================================================
--- stable/11/sys/netinet6/ip6_output.c Mon Jul 6 18:43:00 2020 (r362974)
+++ stable/11/sys/netinet6/ip6_output.c Mon Jul 6 20:23:14 2020 (r362975)
@@ -1514,8 +1514,10 @@ ip6_ctloutput(struct socket *so, struct sockopt *sopt)
error = soopt_mcopyin(sopt, m); /* XXX */
if (error != 0)
break;
+ INP_WLOCK(in6p);
error = ip6_pcbopts(&in6p->in6p_outputopts,
m, so, sopt);
+ INP_WUNLOCK(in6p);
m_freem(m); /* XXX */
break;
}
@@ -2260,8 +2262,11 @@ ip6_pcbopts(struct ip6_pktopts **pktopt, struct mbuf *
printf("ip6_pcbopts: all specified options are cleared.\n");
#endif
ip6_clearpktopts(opt, -1);
- } else
- opt = malloc(sizeof(*opt), M_IP6OPT, M_WAITOK);
+ } else {
+ opt = malloc(sizeof(*opt), M_IP6OPT, M_NOWAIT);
+ if (opt == NULL)
+ return (ENOMEM);
+ }
*pktopt = NULL;
if (!m || m->m_len == 0) {
More information about the svn-src-stable
mailing list