diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-09-12 15:49:36 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-09-12 15:49:36 +0200 |
commit | 9f4908fe78cb3e5191bca721588ee1acb10876e3 (patch) | |
tree | 93a6d5858e941ebec3b7acc99e6225b5011176bc /nest/locks.c | |
parent | 943478b00f585725c3e7406909ee867dcfac5f87 (diff) |
Nest: VRF support for neighbor cache and olock code
Actually much simpler than expected.
Diffstat (limited to 'nest/locks.c')
-rw-r--r-- | nest/locks.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nest/locks.c b/nest/locks.c index 84b8b0ae..86c9ff14 100644 --- a/nest/locks.c +++ b/nest/locks.c @@ -45,6 +45,7 @@ olock_same(struct object_lock *x, struct object_lock *y) return x->type == y->type && x->iface == y->iface && + x->vrf == y->vrf && x->port == y->port && x->inst == y->inst && ipa_equal(x->addr, y->addr); |