mirror of
https://github.com/tailscale/tailscale.git
synced 2025-02-18 02:48:40 +00:00
wgengine/filter: eliminate unnecessary memory loads.
Doesn't materially affect benchmarks, but shrinks match6 by 30 instructions and halves memory loads. Part of #19. Signed-off-by: David Anderson <danderson@tailscale.com>
This commit is contained in:
parent
47380ebcfb
commit
3fdae12f0c
@ -118,15 +118,16 @@ func newMatches6(ms []Match) (ret matches6) {
|
||||
}
|
||||
|
||||
func (ms matches6) match(q *packet.Parsed) bool {
|
||||
for _, m := range ms {
|
||||
if !ip6InList(q.SrcIP6, m.srcs) {
|
||||
for i := range ms {
|
||||
if !ip6InList(q.SrcIP6, ms[i].srcs) {
|
||||
continue
|
||||
}
|
||||
for _, dst := range m.dsts {
|
||||
if !dst.net.Contains(q.DstIP6) {
|
||||
dsts := ms[i].dsts
|
||||
for i := range dsts {
|
||||
if !dsts[i].net.Contains(q.DstIP6) {
|
||||
continue
|
||||
}
|
||||
if !dst.ports.contains(q.DstPort) {
|
||||
if !dsts[i].ports.contains(q.DstPort) {
|
||||
continue
|
||||
}
|
||||
return true
|
||||
|
Loading…
x
Reference in New Issue
Block a user