diff --git a/lib/libxdp/libxdp.3 b/lib/libxdp/libxdp.3 index 6e18ce0c..18d1ffaa 100644 --- a/lib/libxdp/libxdp.3 +++ b/lib/libxdp/libxdp.3 @@ -1,4 +1,4 @@ -.TH "libxdp" "3" "June 29, 2023" "v1.4.3" "libxdp - library for loading XDP programs" +.TH "libxdp" "3" "December 9, 2024" "v1.5.0" "libxdp - library for loading XDP programs" .SH "NAME" libxdp \- library for attaching XDP programs and using AF_XDP sockets @@ -307,9 +307,9 @@ way of umem creation. .RS .nf \fCstruct xsk_umem *xsk_umem__create_opts(void *umem_area, - struct xsk_ring_prod *fill, - struct xsk_ring_cons *comp, - struct xsk_umem_opts *opts); + struct xsk_ring_prod *fill, + struct xsk_ring_cons *comp, + struct xsk_umem_opts *opts); int xsk_umem__create(struct xsk_umem **umem, void *umem_area, __u64 size, struct xsk_ring_prod *fill, diff --git a/packaging/rpm/xdp-tools.spec b/packaging/rpm/xdp-tools.spec index 963ebce6..63cf7bf0 100644 --- a/packaging/rpm/xdp-tools.spec +++ b/packaging/rpm/xdp-tools.spec @@ -1,8 +1,8 @@ Name: xdp-tools -Version: 1.4.3 +Version: 1.5.0 Release: 1%{?dist} Summary: Utilities and example programs for use with XDP -%global _soversion 1.4.0 +%global _soversion 1.5.0 License: GPL-2.0-only URL: https://github.com/xdp-project/%{name} @@ -91,12 +91,13 @@ export HDRDIR='%{_includedir}/xdp' make install V=1 %files +%{_sbindir}/xdp-bench %{_sbindir}/xdp-filter +%{_sbindir}/xdp-forward %{_sbindir}/xdp-loader -%{_sbindir}/xdpdump -%{_sbindir}/xdp-bench %{_sbindir}/xdp-monitor %{_sbindir}/xdp-trafficgen +%{_sbindir}/xdpdump %{_mandir}/man8/* %{_libdir}/bpf/xdpfilt_*.o %{_libdir}/bpf/xdpdump_*.o @@ -120,6 +121,9 @@ make install V=1 %{_libdir}/pkgconfig/libxdp.pc %changelog +* Thu Jan 9 2025 Toke Høiland-Jørgensen 1.5.0-1 +- Upstream version bump + * Tue Aug 6 2024 Toke Høiland-Jørgensen 1.4.3-1 - Upstream version bump diff --git a/version.mk b/version.mk index dbf3fbca..bf8f09ba 100644 --- a/version.mk +++ b/version.mk @@ -1,4 +1,4 @@ -TOOLS_VERSION := "1.4.3" +TOOLS_VERSION := "1.5.0" # Conditionally defined make target makes it possible to print the version # defined above by running 'make -f version.mk' diff --git a/xdp-bench/xdp-bench.8 b/xdp-bench/xdp-bench.8 index 15926c94..172a099b 100644 --- a/xdp-bench/xdp-bench.8 +++ b/xdp-bench/xdp-bench.8 @@ -1,4 +1,4 @@ -.TH "xdp-bench" "8" "APRIL 2, 2024" "V1.4.3" "A simple XDP benchmarking tool" +.TH "xdp-bench" "8" "NOVEMBER 19, 2024" "V1.5.0" "A simple XDP benchmarking tool" .SH "NAME" XDP-bench \- a simple XDP benchmarking tool @@ -97,7 +97,7 @@ The following modes are available: .RS .nf -\fCdpa - Use traditional Direct Packet Access from the XDP program +\fCdpa - Use traditional Direct Packet Access from the XDP program load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions \fP .fi @@ -195,7 +195,7 @@ The following modes are available: .RS .nf -\fCdpa - Use traditional Direct Packet Access from the XDP program +\fCdpa - Use traditional Direct Packet Access from the XDP program load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions \fP .fi @@ -298,7 +298,7 @@ The following modes are available: .RS .nf -\fCdpa - Use traditional Direct Packet Access from the XDP program +\fCdpa - Use traditional Direct Packet Access from the XDP program load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions \fP .fi @@ -375,7 +375,7 @@ The following modes are available: .RS .nf -\fCdpa - Use traditional Direct Packet Access from the XDP program +\fCdpa - Use traditional Direct Packet Access from the XDP program load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions \fP .fi diff --git a/xdp-dump/xdpdump.8 b/xdp-dump/xdpdump.8 index 81711614..7c3a0599 100644 --- a/xdp-dump/xdpdump.8 +++ b/xdp-dump/xdpdump.8 @@ -1,4 +1,4 @@ -.TH "xdpdump" "8" "JANUARY 13, 2021" "V1.4.3" "a simple tcpdump like tool for capturing packets at the XDP layer" +.TH "xdpdump" "8" "JANUARY 13, 2021" "V1.5.0" "a simple tcpdump like tool for capturing packets at the XDP layer" .SH "NAME" xdpdump \- a simple tcpdump like tool for capturing packets at the XDP layer diff --git a/xdp-filter/xdp-filter.8 b/xdp-filter/xdp-filter.8 index 2ab4bfd7..a4bc6800 100644 --- a/xdp-filter/xdp-filter.8 +++ b/xdp-filter/xdp-filter.8 @@ -1,4 +1,4 @@ -.TH "xdp-filter" "8" "SEPTEMBER 5, 2022" "V1.4.3" "A simple XDP-powered packet filter" +.TH "xdp-filter" "8" "SEPTEMBER 5, 2022" "V1.5.0" "A simple XDP-powered packet filter" .SH "NAME" xdp-filter \- a simple XDP-powered packet filter diff --git a/xdp-forward/xdp-forward.8 b/xdp-forward/xdp-forward.8 index 3c8f7804..999f904e 100644 --- a/xdp-forward/xdp-forward.8 +++ b/xdp-forward/xdp-forward.8 @@ -1,4 +1,4 @@ -.TH "xdp-forward" "8" "OCTOBER 10, 2024" "V1.4.3" "XDP program loader" +.TH "xdp-forward" "8" "OCTOBER 11, 2024" "V1.5.0" "XDP program loader" .SH "NAME" xdp-forward \- the XDP forwarding plane diff --git a/xdp-loader/xdp-loader.8 b/xdp-loader/xdp-loader.8 index 3e52d1d5..10c48aa7 100644 --- a/xdp-loader/xdp-loader.8 +++ b/xdp-loader/xdp-loader.8 @@ -1,4 +1,4 @@ -.TH "xdp-loader" "8" "JUNE 8, 2023" "V1.4.3" "XDP program loader" +.TH "xdp-loader" "8" "SEPTEMBER 12, 2024" "V1.5.0" "XDP program loader" .SH "NAME" xdp-loader \- an XDP program loader diff --git a/xdp-monitor/xdp-monitor.8 b/xdp-monitor/xdp-monitor.8 index 217f387e..34ba9609 100644 --- a/xdp-monitor/xdp-monitor.8 +++ b/xdp-monitor/xdp-monitor.8 @@ -1,4 +1,4 @@ -.TH "xdp-monitor" "8" "DECEMBER 12, 2022" "V1.4.3" "A simple XDP monitoring tool" +.TH "xdp-monitor" "8" "DECEMBER 12, 2022" "V1.5.0" "A simple XDP monitoring tool" .SH "NAME" XDP-monitor \- a simple BPF-powered XDP monitoring tool diff --git a/xdp-trafficgen/xdp-trafficgen.8 b/xdp-trafficgen/xdp-trafficgen.8 index c7448382..788c705e 100644 --- a/xdp-trafficgen/xdp-trafficgen.8 +++ b/xdp-trafficgen/xdp-trafficgen.8 @@ -1,4 +1,4 @@ -.TH "xdp-trafficgen" "8" "JULY 22, 2024" "V1.4.3" "An XDP-based traffic generator" +.TH "xdp-trafficgen" "8" "JANUARY 9, 2025" "V1.5.0" "An XDP-based traffic generator" .SH "NAME" XDP-trafficgen \- an XDP-based traffic generator