Skip to content

Commit 6f19b7d

Browse files
committed
Bump version to v1.5.0
Signed-off-by: Toke Høiland-Jørgensen <[email protected]>
1 parent 2bea803 commit 6f19b7d

File tree

10 files changed

+24
-20
lines changed

10 files changed

+24
-20
lines changed

lib/libxdp/libxdp.3

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "libxdp" "3" "June 29, 2023" "v1.4.3" "libxdp - library for loading XDP programs"
1+
.TH "libxdp" "3" "December 9, 2024" "v1.5.0" "libxdp - library for loading XDP programs"
22

33
.SH "NAME"
44
libxdp \- library for attaching XDP programs and using AF_XDP sockets
@@ -307,9 +307,9 @@ way of umem creation.
307307
.RS
308308
.nf
309309
\fCstruct xsk_umem *xsk_umem__create_opts(void *umem_area,
310-
struct xsk_ring_prod *fill,
311-
struct xsk_ring_cons *comp,
312-
struct xsk_umem_opts *opts);
310+
struct xsk_ring_prod *fill,
311+
struct xsk_ring_cons *comp,
312+
struct xsk_umem_opts *opts);
313313
int xsk_umem__create(struct xsk_umem **umem,
314314
void *umem_area, __u64 size,
315315
struct xsk_ring_prod *fill,

packaging/rpm/xdp-tools.spec

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Name: xdp-tools
2-
Version: 1.4.3
2+
Version: 1.5.0
33
Release: 1%{?dist}
44
Summary: Utilities and example programs for use with XDP
5-
%global _soversion 1.4.0
5+
%global _soversion 1.5.0
66

77
License: GPL-2.0-only
88
URL: https://github.com/xdp-project/%{name}
@@ -91,12 +91,13 @@ export HDRDIR='%{_includedir}/xdp'
9191
make install V=1
9292

9393
%files
94+
%{_sbindir}/xdp-bench
9495
%{_sbindir}/xdp-filter
96+
%{_sbindir}/xdp-forward
9597
%{_sbindir}/xdp-loader
96-
%{_sbindir}/xdpdump
97-
%{_sbindir}/xdp-bench
9898
%{_sbindir}/xdp-monitor
9999
%{_sbindir}/xdp-trafficgen
100+
%{_sbindir}/xdpdump
100101
%{_mandir}/man8/*
101102
%{_libdir}/bpf/xdpfilt_*.o
102103
%{_libdir}/bpf/xdpdump_*.o
@@ -120,6 +121,9 @@ make install V=1
120121
%{_libdir}/pkgconfig/libxdp.pc
121122

122123
%changelog
124+
* Thu Jan 9 2025 Toke Høiland-Jørgensen <[email protected]> 1.5.0-1
125+
- Upstream version bump
126+
123127
* Tue Aug 6 2024 Toke Høiland-Jørgensen <[email protected]> 1.4.3-1
124128
- Upstream version bump
125129

version.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
TOOLS_VERSION := "1.4.3"
1+
TOOLS_VERSION := "1.5.0"
22

33
# Conditionally defined make target makes it possible to print the version
44
# defined above by running 'make -f version.mk'

xdp-bench/xdp-bench.8

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "xdp-bench" "8" "APRIL 2, 2024" "V1.4.3" "A simple XDP benchmarking tool"
1+
.TH "xdp-bench" "8" "NOVEMBER 19, 2024" "V1.5.0" "A simple XDP benchmarking tool"
22

33
.SH "NAME"
44
XDP-bench \- a simple XDP benchmarking tool
@@ -97,7 +97,7 @@ The following modes are available:
9797

9898
.RS
9999
.nf
100-
\fCdpa - Use traditional Direct Packet Access from the XDP program
100+
\fCdpa - Use traditional Direct Packet Access from the XDP program
101101
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
102102
\fP
103103
.fi
@@ -195,7 +195,7 @@ The following modes are available:
195195

196196
.RS
197197
.nf
198-
\fCdpa - Use traditional Direct Packet Access from the XDP program
198+
\fCdpa - Use traditional Direct Packet Access from the XDP program
199199
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
200200
\fP
201201
.fi
@@ -298,7 +298,7 @@ The following modes are available:
298298

299299
.RS
300300
.nf
301-
\fCdpa - Use traditional Direct Packet Access from the XDP program
301+
\fCdpa - Use traditional Direct Packet Access from the XDP program
302302
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
303303
\fP
304304
.fi
@@ -375,7 +375,7 @@ The following modes are available:
375375

376376
.RS
377377
.nf
378-
\fCdpa - Use traditional Direct Packet Access from the XDP program
378+
\fCdpa - Use traditional Direct Packet Access from the XDP program
379379
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
380380
\fP
381381
.fi

xdp-dump/xdpdump.8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "xdpdump" "8" "JANUARY 13, 2021" "V1.4.3" "a simple tcpdump like tool for capturing packets at the XDP layer"
1+
.TH "xdpdump" "8" "JANUARY 13, 2021" "V1.5.0" "a simple tcpdump like tool for capturing packets at the XDP layer"
22

33
.SH "NAME"
44
xdpdump \- a simple tcpdump like tool for capturing packets at the XDP layer

xdp-filter/xdp-filter.8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "xdp-filter" "8" "SEPTEMBER 5, 2022" "V1.4.3" "A simple XDP-powered packet filter"
1+
.TH "xdp-filter" "8" "SEPTEMBER 5, 2022" "V1.5.0" "A simple XDP-powered packet filter"
22

33
.SH "NAME"
44
xdp-filter \- a simple XDP-powered packet filter

xdp-forward/xdp-forward.8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "xdp-forward" "8" "OCTOBER 10, 2024" "V1.4.3" "XDP program loader"
1+
.TH "xdp-forward" "8" "OCTOBER 11, 2024" "V1.5.0" "XDP program loader"
22

33
.SH "NAME"
44
xdp-forward \- the XDP forwarding plane

xdp-loader/xdp-loader.8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "xdp-loader" "8" "JUNE 8, 2023" "V1.4.3" "XDP program loader"
1+
.TH "xdp-loader" "8" "SEPTEMBER 12, 2024" "V1.5.0" "XDP program loader"
22

33
.SH "NAME"
44
xdp-loader \- an XDP program loader

xdp-monitor/xdp-monitor.8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "xdp-monitor" "8" "DECEMBER 12, 2022" "V1.4.3" "A simple XDP monitoring tool"
1+
.TH "xdp-monitor" "8" "DECEMBER 12, 2022" "V1.5.0" "A simple XDP monitoring tool"
22

33
.SH "NAME"
44
XDP-monitor \- a simple BPF-powered XDP monitoring tool

xdp-trafficgen/xdp-trafficgen.8

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "xdp-trafficgen" "8" "JULY 22, 2024" "V1.4.3" "An XDP-based traffic generator"
1+
.TH "xdp-trafficgen" "8" "JANUARY 9, 2025" "V1.5.0" "An XDP-based traffic generator"
22

33
.SH "NAME"
44
XDP-trafficgen \- an XDP-based traffic generator

0 commit comments

Comments
 (0)