From 1dbdfd074930afc0c1a4abcd752e18bd606ffef4 Mon Sep 17 00:00:00 2001 From: Ghanan Gowripalan Date: Fri, 12 Nov 2021 12:56:49 -0800 Subject: [PATCH] Remove unused member https://github.com/google/gvisor/commit/49e80a1440b349b24bddb1ba4fa5469645a84e27 missed this. PiperOrigin-RevId: 409481435 --- pkg/tcpip/stack/iptables_types.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/tcpip/stack/iptables_types.go b/pkg/tcpip/stack/iptables_types.go index b22024667..778f78496 100644 --- a/pkg/tcpip/stack/iptables_types.go +++ b/pkg/tcpip/stack/iptables_types.go @@ -81,11 +81,6 @@ const ( // // +stateify savable type IPTables struct { - // priorities maps each hook to a list of table names. The order of the - // list is the order in which each table should be visited for that - // hook. It is immutable. - priorities [NumHooks][]TableID - connections ConnTrack // reaperDone can be signaled to stop the reaper goroutine.