From ff7425ced0254ff91e54f5424bfc2486689eaced Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Wed, 12 Apr 2006 03:07:22 +0000 Subject: [PATCH] Don't use spl around call to in_pcballoc() in IPv6 raw socket support; all necessary synchronization appears present. MFC after: 3 months --- sys/netinet6/raw_ip6.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sys/netinet6/raw_ip6.c b/sys/netinet6/raw_ip6.c index 76fb4957a54..b298c7c0e0f 100644 --- a/sys/netinet6/raw_ip6.c +++ b/sys/netinet6/raw_ip6.c @@ -547,7 +547,7 @@ rip6_attach(struct socket *so, int proto, struct thread *td) { struct inpcb *inp; struct icmp6_filter *filter; - int error, s; + int error; inp = sotoinpcb(so); KASSERT(inp == NULL, ("rip6_attach: inp != NULL")); @@ -561,9 +561,7 @@ rip6_attach(struct socket *so, int proto, struct thread *td) if (filter == NULL) return ENOMEM; INP_INFO_WLOCK(&ripcbinfo); - s = splnet(); error = in_pcballoc(so, &ripcbinfo, "raw6inp"); - splx(s); if (error) { INP_INFO_WUNLOCK(&ripcbinfo); FREE(filter, M_PCB);