Skip to content
Snippets Groups Projects
  1. Apr 03, 2021
  2. Mar 30, 2021
  3. Mar 25, 2021
    • Maria Matejka's avatar
      Dropping automatic tests for Debian 7 Wheezy. · a06469d9
      Maria Matejka authored
      Debian 7 Wheezy has been superseded by Debian 8 Jessie on Apr 25, 2015,
      with LTS support ending on May 31, 2018.
      
      Debian 7 Wheezy's default GCC doesn't fully support C11. It should
      anyway still be possible to build BIRD for Debian 7 if you backport
      a C11-capable compiler there.
      a06469d9
    • Maria Matejka's avatar
      Slab: head now uses bitmask for used/free nodes info instead of lists · 886dd92e
      Maria Matejka authored
      From now, there are no auxiliary pointers stored in the free slab nodes.
      This led to strange debugging problems if use-after-free happened in
      slab-allocated structures, especially if the structure's first member is
      a next pointer.
      
      This also reduces the memory needed by 1 pointer per allocated object.
      OTOH, we now rely on pages being aligned to their size's multiple, which
      is quite common anyway.
      886dd92e
  4. Mar 18, 2021
  5. Mar 17, 2021
  6. Mar 16, 2021
  7. Mar 15, 2021
  8. Mar 12, 2021
    • Ondřej Zajíček's avatar
      Rate-limit scheduling of work-events · 7be3af7f
      Ondřej Zajíček authored
      In general, events are code handling some some condition, which is
      scheduled when such condition happened and executed independently from
      I/O loop. Work-events are a subgroup of events that are scheduled
      repeatedly until some (often significant) work is done (e.g. feeding
      routes to protocol). All scheduled events are executed during each
      I/O loop iteration.
      
      Separate work-events from regular events to a separate queue and
      rate limit their execution to a fixed number per I/O loop iteration.
      That should prevent excess latency when many work-events are
      scheduled at one time (e.g. simultaneous reload of many BGP sessions).
      7be3af7f
  9. Mar 10, 2021
  10. Mar 09, 2021
  11. Feb 12, 2021
  12. Feb 10, 2021
  13. Feb 07, 2021
  14. Jan 22, 2021
    • Ondřej Zajíček's avatar
      MRT: Fix MP-BGP next hops · 5d414309
      Ondřej Zajíček authored
      Flag signalling that MP-BGP mode should be used got reset after first
      batch of routes, so remaining routes were processed without that, leading
      to missing MP_REACH_NLRI attribute.
      
      Thanks to Piotr Wydrych for the bugreport.
      5d414309
  15. Jan 14, 2021
    • Ondřej Zajíček's avatar
      Netlink: Ignore dead routes · df83f626
      Ondřej Zajíček authored
      With net.ipv4.conf.XXX.ignore_routes_with_linkdown sysctl, a user can
      ensure the kernel does not use a route whose target interface is down.
      Such route is marked with a 'dead' / RTNH_F_DEAD flag.
      
      Ignore these routes or multipath nexthops during scan.
      
      Thanks to Vincent Bernat for the original patch.
      df83f626
  16. Jan 12, 2021
  17. Jan 10, 2021
    • Ondřej Zajíček's avatar
      BFD: Dispatch sessions also by interface index · 910adaa0
      Ondřej Zajíček authored
      Direct BFD sessions needs to be dispatched not only by IP addresses, but
      also by interfaces, in order to avoid collisions between neighbors with
      the same IPv6 link-local addresses.
      
      Extend BFD session hash_ip key by interface index to handle that. Use 0
      for multihop sessions.
      
      Thanks to Sebastian Hahn for the original patch.
      910adaa0
  18. Jan 07, 2021
  19. Jan 06, 2021
  20. Dec 29, 2020
  21. Dec 28, 2020
Loading