summaryrefslogtreecommitdiffhomepage
path: root/pkg/refs
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-03-03 22:13:29 +0000
committergVisor bot <gvisor-bot@google.com>2020-03-03 22:13:29 +0000
commit5f5127ba9ddb8f52d43827b6ab96b8169af5075f (patch)
tree701124de37c5bf475ba6920641948d637da0ee8b /pkg/refs
parent56f91c540e938374a025c31cf23aa2e4d00cacec (diff)
parent844e4d284cddf9795a0db7c38f926fe7b49bb873 (diff)
Merge release-20200219.0-91-g844e4d2 (automated)
Diffstat (limited to 'pkg/refs')
-rwxr-xr-xpkg/refs/weak_ref_list.go33
1 files changed, 21 insertions, 12 deletions
diff --git a/pkg/refs/weak_ref_list.go b/pkg/refs/weak_ref_list.go
index df8e98bf5..19daf9ab0 100755
--- a/pkg/refs/weak_ref_list.go
+++ b/pkg/refs/weak_ref_list.go
@@ -54,8 +54,9 @@ func (l *weakRefList) Back() *WeakRef {
// PushFront inserts the element e at the front of list l.
func (l *weakRefList) PushFront(e *WeakRef) {
- weakRefElementMapper{}.linkerFor(e).SetNext(l.head)
- weakRefElementMapper{}.linkerFor(e).SetPrev(nil)
+ linker := weakRefElementMapper{}.linkerFor(e)
+ linker.SetNext(l.head)
+ linker.SetPrev(nil)
if l.head != nil {
weakRefElementMapper{}.linkerFor(l.head).SetPrev(e)
@@ -68,8 +69,9 @@ func (l *weakRefList) PushFront(e *WeakRef) {
// PushBack inserts the element e at the back of list l.
func (l *weakRefList) PushBack(e *WeakRef) {
- weakRefElementMapper{}.linkerFor(e).SetNext(nil)
- weakRefElementMapper{}.linkerFor(e).SetPrev(l.tail)
+ linker := weakRefElementMapper{}.linkerFor(e)
+ linker.SetNext(nil)
+ linker.SetPrev(l.tail)
if l.tail != nil {
weakRefElementMapper{}.linkerFor(l.tail).SetNext(e)
@@ -98,10 +100,14 @@ func (l *weakRefList) PushBackList(m *weakRefList) {
// InsertAfter inserts e after b.
func (l *weakRefList) InsertAfter(b, e *WeakRef) {
- a := weakRefElementMapper{}.linkerFor(b).Next()
- weakRefElementMapper{}.linkerFor(e).SetNext(a)
- weakRefElementMapper{}.linkerFor(e).SetPrev(b)
- weakRefElementMapper{}.linkerFor(b).SetNext(e)
+ bLinker := weakRefElementMapper{}.linkerFor(b)
+ eLinker := weakRefElementMapper{}.linkerFor(e)
+
+ a := bLinker.Next()
+
+ eLinker.SetNext(a)
+ eLinker.SetPrev(b)
+ bLinker.SetNext(e)
if a != nil {
weakRefElementMapper{}.linkerFor(a).SetPrev(e)
@@ -112,10 +118,13 @@ func (l *weakRefList) InsertAfter(b, e *WeakRef) {
// InsertBefore inserts e before a.
func (l *weakRefList) InsertBefore(a, e *WeakRef) {
- b := weakRefElementMapper{}.linkerFor(a).Prev()
- weakRefElementMapper{}.linkerFor(e).SetNext(a)
- weakRefElementMapper{}.linkerFor(e).SetPrev(b)
- weakRefElementMapper{}.linkerFor(a).SetPrev(e)
+ aLinker := weakRefElementMapper{}.linkerFor(a)
+ eLinker := weakRefElementMapper{}.linkerFor(e)
+
+ b := aLinker.Prev()
+ eLinker.SetNext(a)
+ eLinker.SetPrev(b)
+ aLinker.SetPrev(e)
if b != nil {
weakRefElementMapper{}.linkerFor(b).SetNext(e)