diff options
author | Alexander V. Chernikov <melifaro@FreeBSD.org> | 2015-05-04 10:24:00 +0000 |
---|---|---|
committer | Alexander V. Chernikov <melifaro@FreeBSD.org> | 2015-05-04 10:24:00 +0000 |
commit | 7eb9f40e473cd03feffc87f1c4756ece6cd66082 (patch) | |
tree | 5c7b60ee9fadcd8f17706ecf9df960f987564361 /net/bird/files/exp-locks.patch | |
parent | - Update to 0.5.100.1.0 (diff) |
Bump version to 1.5.0 (changelog below).
Remove experimental and already included patches.
Add OSPF: Fixes validation of LSA checksums from git.
Remove clang gnu89 constaint.
Version 1.5.0 (2015-04-20)
Major OSPF protocol redesign.
OSPFv2 multi-instance extension (RFC 6549).
BGP AS-wide unique router ID (RFC 6286).
BGP enhanced route refresh (RFC 7313).
Link state support in BGP.
Latency tracking and internal watchdog.
Uses high port range for BFD on BSD.
Increase max symbol length to 64.
Allows to define unnamed protocols from templates.
Fixes two serious bugs in BGP.
Several bugfixes and minor improvements.
Several minor option changes:
- OSPF: Protocol-wide 'instance id' option added.
- BGP: Parameters to option 'neighbor' extended.
- BGP: Separate option 'interface' added.
- BGP: Option 'start delay time' renamed to 'connect delay time'.
- BGP: Option 'route limit' deprecated.
Upgrade notes:
For OSPF, there are deep internal changes, but user-visible changes
are limited to log messages and minor changes in formatting of command
output.
For BGP, version 1.5.0 is essentially a minor release. There are two
deprecated options ('start delay time' and 'route limit') and some
minor formatting changes.
Reviewed by: az(implicit)
Diffstat (limited to 'net/bird/files/exp-locks.patch')
-rw-r--r-- | net/bird/files/exp-locks.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/net/bird/files/exp-locks.patch b/net/bird/files/exp-locks.patch deleted file mode 100644 index 22d34aa20757..000000000000 --- a/net/bird/files/exp-locks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 72eb25c26107f31bcf6d8cd02e47ec16a69082ce Mon Sep 17 00:00:00 2001 -From: "Alexander V. Chernikov" <melifaro@yandex-team.ru> -Date: Wed, 21 Jan 2015 19:12:33 +0000 -Subject: [PATCH 3/3] Locks fix from list. - ---- - nest/locks.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git nest/locks.c nest/locks.c -index 7044d6a..8ee5898 100644 ---- nest/locks.c -+++ nest/locks.c -@@ -68,7 +68,7 @@ olock_free(resource *r) - DBG("olock: -> %p becomes locked\n", n); - q = SKIP_BACK(struct object_lock, n, n); - rem_node(n); -- add_tail_list(&l->waiters, &q->waiters); -+ add_tail_list(&q->waiters, &l->waiters); - q->state = OLOCK_STATE_EVENT; - add_head(&olock_list, n); - ev_schedule(olock_event); --- -2.1.2 - |