Skip to content

Commit

Permalink
Merge branch 'netdata:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoftsm authored May 2, 2024
2 parents 4936648 + 2fcf2fd commit 5c835f9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
ls -lah artifacts
test -f artifacts/netdata_ebpf-*.tar.xz
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success()
with:
name: artifacts-${{ matrix.kernel_version }}-${{ matrix.libc }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
ls -lah artifacts
test -f artifacts/netdata_ebpf-co-re-*.tar.xz
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success()
with:
name: artifacts
Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: artifacts
path: artifacts
Expand Down
2 changes: 1 addition & 1 deletion libbpf
Submodule libbpf updated 52 files
+2 −0 .github/actions/build-selftests/prepare_selftests-4.9.0.sh
+2 −0 .github/actions/build-selftests/prepare_selftests-5.5.0.sh
+82,676 −80,688 .github/actions/build-selftests/vmlinux.h
+1 −0 .github/actions/vmtest/action.yml
+3 −3 .github/workflows/build.yml
+1 −1 .github/workflows/codeql.yml
+1 −1 .github/workflows/coverity.yml
+1 −1 .github/workflows/lint.yml
+1 −1 .github/workflows/ondemand.yml
+1 −1 .github/workflows/pahole.yml
+1 −1 .github/workflows/test.yml
+17 −0 .mailmap
+1 −1 BPF-CHECKPOINT-COMMIT
+1 −1 CHECKPOINT-COMMIT
+1 −1 README.md
+69 −0 ci/diffs/0001-arch-Kconfig-Move-SPECULATION_MITIGATIONS-to-arch-Kc.patch
+0 −29 ci/diffs/0001-bpf-patch-out-BPF_F_TEST_REG_INVARIANTS-for-old-kern.patch
+0 −89 ci/diffs/0001-selftests-bpf-xskxceiver-ksft_print_msg-fix-format-t.patch
+56 −0 ci/diffs/0002-xdp-bonding-Fix-feature-flags-when-there-are-no-slav.patch
+1 −1 ci/vmtest/configs/ALLOWLIST-5.5.0
+14 −0 ci/vmtest/configs/DENYLIST
+1 −0 ci/vmtest/configs/DENYLIST-latest
+13 −0 ci/vmtest/configs/DENYLIST-latest.s390x
+8 −0 include/linux/filter.h
+2 −0 include/linux/kernel.h
+154 −13 include/uapi/linux/bpf.h
+3 −0 include/uapi/linux/fcntl.h
+1 −0 include/uapi/linux/if_link.h
+20 −3 include/uapi/linux/netdev.h
+13 −0 include/uapi/linux/perf_event.h
+37 −0 scripts/mailmap-update.sh
+16 −0 scripts/sync-kernel.sh
+2 −2 src/Makefile
+50 −9 src/bpf.c
+74 −14 src/bpf.h
+52 −8 src/bpf_core_read.h
+220 −216 src/bpf_helper_defs.h
+7 −1 src/bpf_helpers.h
+36 −7 src/btf.c
+5 −0 src/btf_dump.c
+0 −2 src/elf.c
+583 −0 src/features.c
+851 −614 src/libbpf.c
+49 −3 src/libbpf.h
+13 −2 src/libbpf.map
+63 −10 src/libbpf_internal.h
+23 −8 src/libbpf_probes.c
+1 −1 src/libbpf_version.h
+1 −1 src/linker.c
+2 −2 src/netlink.c
+46 −9 src/ringbuf.c
+3 −0 src/str_error.h

0 comments on commit 5c835f9

Please sign in to comment.