Commit 6f19b7d 1 parent 2bea803 commit 6f19b7d Copy full SHA for 6f19b7d
File tree 10 files changed +24
-20
lines changed
10 files changed +24
-20
lines changed Original file line number Diff line number Diff line change 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"
2
2
3
3
.SH "NAME"
4
4
libxdp \- library for attaching XDP programs and using AF_XDP sockets
@@ -307,9 +307,9 @@ way of umem creation.
307
307
.RS
308
308
.nf
309
309
\f C struct 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);
313
313
int xsk_umem__create(struct xsk_umem **umem,
314
314
void *umem_area, __u64 size,
315
315
struct xsk_ring_prod *fill,
Original file line number Diff line number Diff line change 1
1
Name: xdp-tools
2
- Version: 1.4.3
2
+ Version: 1.5.0
3
3
Release: 1%{?dist }
4
4
Summary: Utilities and example programs for use with XDP
5
- %global _soversion 1.4 .0
5
+ %global _soversion 1.5 .0
6
6
7
7
License: GPL-2.0 -only
8
8
URL: https://github.com/xdp-project/%{name }
@@ -91,12 +91,13 @@ export HDRDIR='%{_includedir}/xdp'
91
91
make install V=1
92
92
93
93
%files
94
+ %{_sbindir }/xdp-bench
94
95
%{_sbindir }/xdp-filter
96
+ %{_sbindir }/xdp-forward
95
97
%{_sbindir }/xdp-loader
96
- %{_sbindir }/xdpdump
97
- %{_sbindir }/xdp-bench
98
98
%{_sbindir }/xdp-monitor
99
99
%{_sbindir }/xdp-trafficgen
100
+ %{_sbindir }/xdpdump
100
101
%{_mandir }/man8/*
101
102
%{_libdir }/bpf/xdpfilt_* .o
102
103
%{_libdir }/bpf/xdpdump_* .o
@@ -120,6 +121,9 @@ make install V=1
120
121
%{_libdir }/pkgconfig/libxdp.pc
121
122
122
123
%changelog
124
+ *
Thu Jan 9 2025 Toke Høiland-Jørgensen <[email protected] > 1.5.0-1
125
+ - Upstream version bump
126
+
123
127
*
Tue Aug 6 2024 Toke Høiland-Jørgensen <[email protected] > 1.4.3-1
124
128
- Upstream version bump
125
129
Original file line number Diff line number Diff line change 1
- TOOLS_VERSION := "1.4.3 "
1
+ TOOLS_VERSION := "1.5.0 "
2
2
3
3
# Conditionally defined make target makes it possible to print the version
4
4
# defined above by running 'make -f version.mk'
Original file line number Diff line number Diff line change 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"
2
2
3
3
.SH "NAME"
4
4
XDP-bench \- a simple XDP benchmarking tool
@@ -97,7 +97,7 @@ The following modes are available:
97
97
98
98
.RS
99
99
.nf
100
- \f C dpa - Use traditional Direct Packet Access from the XDP program
100
+ \f C dpa - Use traditional Direct Packet Access from the XDP program
101
101
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
102
102
\fP
103
103
.fi
@@ -195,7 +195,7 @@ The following modes are available:
195
195
196
196
.RS
197
197
.nf
198
- \f C dpa - Use traditional Direct Packet Access from the XDP program
198
+ \f C dpa - Use traditional Direct Packet Access from the XDP program
199
199
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
200
200
\fP
201
201
.fi
@@ -298,7 +298,7 @@ The following modes are available:
298
298
299
299
.RS
300
300
.nf
301
- \f C dpa - Use traditional Direct Packet Access from the XDP program
301
+ \f C dpa - Use traditional Direct Packet Access from the XDP program
302
302
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
303
303
\fP
304
304
.fi
@@ -375,7 +375,7 @@ The following modes are available:
375
375
376
376
.RS
377
377
.nf
378
- \f C dpa - Use traditional Direct Packet Access from the XDP program
378
+ \f C dpa - Use traditional Direct Packet Access from the XDP program
379
379
load-bytes - Use the xdp_load_bytes() and xdp_store_bytes() helper functions
380
380
\fP
381
381
.fi
Original file line number Diff line number Diff line change 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"
2
2
3
3
.SH "NAME"
4
4
xdpdump \- a simple tcpdump like tool for capturing packets at the XDP layer
Original file line number Diff line number Diff line change 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"
2
2
3
3
.SH "NAME"
4
4
xdp-filter \- a simple XDP-powered packet filter
Original file line number Diff line number Diff line change 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"
2
2
3
3
.SH "NAME"
4
4
xdp-forward \- the XDP forwarding plane
Original file line number Diff line number Diff line change 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"
2
2
3
3
.SH "NAME"
4
4
xdp-loader \- an XDP program loader
Original file line number Diff line number Diff line change 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"
2
2
3
3
.SH "NAME"
4
4
XDP-monitor \- a simple BPF-powered XDP monitoring tool
Original file line number Diff line number Diff line change 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"
2
2
3
3
.SH "NAME"
4
4
XDP-trafficgen \- an XDP-based traffic generator
You can’t perform that action at this time.
0 commit comments