Revision 1c0c8f89cd9ab5849d46a56ffcf8e6bc0d52855c authored by Daniel Borkmann on 15 August 2019, 12:24:31 UTC, committed by Ian Vernon on 19 August 2019, 17:55:18 UTC
[ upstream commit cc01f5294ab4128c657518158e16423d962ed9b6 ]

tc qdisc del/add combination and same with tc filters is very suboptimal
as it leads to short traffic interruptions when restarting the daemon
while filter replace can be done atomically. Rework the init script such
that the latter can be used for BPF program management.

Reported-by: Jaff Cheng and Arthur Chiao via Slack
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: Michal Rostecki <mrostecki@opensuse.org>
1 parent a46e73e
Raw File
.travis.yml
language: go

dist: trusty
sudo: required

go:
 - 1.12.8

if: branch = master OR type = pull_request

addons:
  apt:
    packages:
      - kernel-package libc6-dev-i386

before_install: ./.travis/prepare.sh

before_script:
  - export PATH=/usr/local/clang/bin:$PATH
  - export GO=/home/travis/.gimme/versions/go1.12.8.linux.amd64/bin/go

script: ./.travis/build.sh
back to top