Skip to content

Commit bf1252c

Browse files
onongsknat
authored andcommitted
vpp: bump vpp to 25.06 RC0 (25.06-rc0~247-gaf9fa5d40)
1 parent 822459c commit bf1252c

File tree

18 files changed

+1252
-327
lines changed

18 files changed

+1252
-327
lines changed

vpp-manager/images/ubuntu-build/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ RUN apt-get update \
2929
libffi7 \
3030
enchant-2 \
3131
tshark \
32-
libllvm15 libclang-cpp15 clang-format-15 libonig5 libjq1 jq libunwind8 liblzma-dev libunwind-dev
32+
libllvm15 libclang-cpp15 clang-format-15 libonig5 libjq1 jq libunwind8 liblzma-dev libunwind-dev \
33+
libiberty-dev
3334

3435
WORKDIR /
3536

vpplink/af_xdp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ import (
2626
func (v *VppLink) CreateAfXDP(intf *types.VppXDPInterface) error {
2727
client := af_xdp.NewServiceClient(v.GetConnection())
2828

29-
request := &af_xdp.AfXdpCreate{
29+
request := &af_xdp.AfXdpCreateV3{
3030
HostIf: intf.HostInterfaceName,
3131
Name: intf.Name,
3232
RxqNum: uint16(DefaultIntTo(intf.NumRxQueues, 1)),
3333
RxqSize: uint16(DefaultIntTo(intf.RxQueueSize, 1024)),
3434
TxqSize: uint16(DefaultIntTo(intf.TxQueueSize, 1024)),
3535
Mode: af_xdp.AF_XDP_API_MODE_AUTO,
3636
}
37-
response, err := client.AfXdpCreate(v.GetContext(), request)
37+
response, err := client.AfXdpCreateV3(v.GetContext(), request)
3838
if err != nil {
3939
return fmt.Errorf("failed to create AfXDP (%+v): %w", request, err)
4040
}

vpplink/generated/bindings/af_xdp/af_xdp.ba.go

Lines changed: 2 additions & 243 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vpplink/generated/bindings/af_xdp/af_xdp_rpc.ba.go

Lines changed: 0 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)