1. 26 Oct, 2022 15 commits
  2. 25 Oct, 2022 19 commits
  3. 22 Oct, 2022 4 commits
  4. 21 Oct, 2022 2 commits
    • Andrii Nakryiko's avatar
      Merge branch 'Add support for aarch64 to selftests/bpf/vmtest.sh' · 2f97bcd0
      Andrii Nakryiko authored
      Manu Bretelle says:
      
      ====================
      
      This patchset adds initial support for running BPF's vmtest on aarch64
      architecture.
      It includes a `config.aarch64` heavily based on `config.s390x`
      Makes vmtest.sh handle aarch64 and set QEMU variables to values that
      works on that arch.
      Finally, it provides a DENYLIST.aarch64 that takes care of currently
      broken tests on aarch64 so the vmtest run passes.
      
      This was tested by running:
      
      LLVM_STRIP=llvm-strip-16 CLANG=clang-16 \
          tools/testing/selftests/bpf/vmtest.sh  -- \
              ./test_progs -d \
                  \"$(cat tools/testing/selftests/bpf/DENYLIST{,.aarch64} \
                      | cut -d'#' -f1 \
                      | sed -e 's/^[[:space:]]*//' \
                            -e 's/[[:space:]]*$//' \
                      | tr -s '\n' ','\
                  )\"
      
      on an aarch64 host.
      ====================
      Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
      2f97bcd0
    • Manu Bretelle's avatar
      selftests/bpf: Initial DENYLIST for aarch64 · 94d52a19
      Manu Bretelle authored
      Those tests are currently failing on aarch64, ignore them until they are
      individually addressed.
      
      Using this deny list, vmtest.sh ran successfully using
      
      LLVM_STRIP=llvm-strip-16 CLANG=clang-16 \
          tools/testing/selftests/bpf/vmtest.sh  -- \
              ./test_progs -d \
                  \"$(cat tools/testing/selftests/bpf/DENYLIST{,.aarch64} \
                      | cut -d'#' -f1 \
                      | sed -e 's/^[[:space:]]*//' \
                            -e 's/[[:space:]]*$//' \
                      | tr -s '\n' ','\
                  )\"
      Signed-off-by: default avatarManu Bretelle <chantr4@gmail.com>
      Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
      Link: https://lore.kernel.org/bpf/20221021210701.728135-5-chantr4@gmail.com
      94d52a19