Skip to content

Commit 9887a76

Browse files
committed
netstack/icmp: okay to crash on panics
1 parent f27c12b commit 9887a76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intra/netstack/icmpecho.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func (r *icmpResponder) handle(nic tcpip.NICID, pkt *stack.PacketBuffer) (handle
146146
return r.forward(h, pkt, src, dst)
147147
} else {
148148
// Process asynchronously to avoid blocking the dispatcher loop.
149-
core.Go("icmp.responder", func() {
149+
core.Gx("icmp.responder", func() {
150150
r.process(h, nic, parsed, src, dst)
151151
})
152152
}

0 commit comments

Comments
 (0)