Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] linux6.10: Enable netkit support
@ 2024-08-25  2:15 tsndqst
  2024-08-25 12:25 ` tsndqst
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: tsndqst @ 2024-08-25  2:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1574 bytes --]

There is a new pull request by tsndqst against master on the void-packages repository

https://github.com/tsndqst/void-packages linux6.10_netkit
https://github.com/void-linux/void-packages/pull/51978

linux6.10: Enable netkit support
The BPF programmable network device was added in kernel 6.7.  Netkit device is used by [Cilium](https://www.cilium.io/) instead of `veth` interfaces to improve performance.  It would be nice to have this enabled in the default kernel as it would be a pain to recompile the kernel on my aarch64 Kubernetes cluster.

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/51978.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-linux6.10_netkit-51978.patch --]
[-- Type: text/x-diff, Size: 2191 bytes --]

From a5585901124a7119069ba81e245db4f54a393815 Mon Sep 17 00:00:00 2001
From: Tim Sandquist <tim.sandquist@gmail.com>
Date: Sun, 18 Aug 2024 21:45:33 -0500
Subject: [PATCH] linux6.10: Enable netkit support

---
 srcpkgs/linux6.10/files/arm64-dotconfig  | 2 +-
 srcpkgs/linux6.10/files/i386-dotconfig   | 2 +-
 srcpkgs/linux6.10/files/x86_64-dotconfig | 2 +-
 srcpkgs/linux6.10/template               | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/linux6.10/files/arm64-dotconfig b/srcpkgs/linux6.10/files/arm64-dotconfig
index e3849aecb8ba07..af197b0f54e4f5 100644
--- a/srcpkgs/linux6.10/files/arm64-dotconfig
+++ b/srcpkgs/linux6.10/files/arm64-dotconfig
@@ -3280,7 +3280,7 @@ CONFIG_TAP=m
 CONFIG_VETH=m
 CONFIG_VIRTIO_NET=m
 CONFIG_NLMON=m
-# CONFIG_NETKIT is not set
+CONFIG_NETKIT=y
 CONFIG_NET_VRF=m
 CONFIG_VSOCKMON=m
 CONFIG_MHI_NET=m
diff --git a/srcpkgs/linux6.10/files/i386-dotconfig b/srcpkgs/linux6.10/files/i386-dotconfig
index 956364cd81b0da..008b1091752a6b 100644
--- a/srcpkgs/linux6.10/files/i386-dotconfig
+++ b/srcpkgs/linux6.10/files/i386-dotconfig
@@ -2916,7 +2916,7 @@ CONFIG_TUN_VNET_CROSS_LE=y
 CONFIG_VETH=m
 CONFIG_VIRTIO_NET=m
 CONFIG_NLMON=m
-# CONFIG_NETKIT is not set
+CONFIG_NETKIT=y
 CONFIG_NET_VRF=m
 # CONFIG_VSOCKMON is not set
 CONFIG_MHI_NET=m
diff --git a/srcpkgs/linux6.10/files/x86_64-dotconfig b/srcpkgs/linux6.10/files/x86_64-dotconfig
index e0718da186e76d..4e2e61538c66e0 100644
--- a/srcpkgs/linux6.10/files/x86_64-dotconfig
+++ b/srcpkgs/linux6.10/files/x86_64-dotconfig
@@ -3095,7 +3095,7 @@ CONFIG_TUN_VNET_CROSS_LE=y
 CONFIG_VETH=m
 CONFIG_VIRTIO_NET=m
 CONFIG_NLMON=m
-# CONFIG_NETKIT is not set
+CONFIG_NETKIT=y
 CONFIG_NET_VRF=m
 # CONFIG_VSOCKMON is not set
 # CONFIG_MHI_NET is not set
diff --git a/srcpkgs/linux6.10/template b/srcpkgs/linux6.10/template
index ace0eeedb53917..0076062a727d6f 100644
--- a/srcpkgs/linux6.10/template
+++ b/srcpkgs/linux6.10/template
@@ -1,7 +1,7 @@
 # Template file for 'linux6.10'
 pkgname=linux6.10
 version=6.10.6
-revision=1
+revision=2
 short_desc="Linux kernel and modules (${version%.*} series)"
 maintainer="Duncaen <duncaen@voidlinux.org>"
 license="GPL-2.0-only"

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: linux6.10: Enable netkit support
  2024-08-25  2:15 [PR PATCH] linux6.10: Enable netkit support tsndqst
@ 2024-08-25 12:25 ` tsndqst
  2024-09-09 18:00 ` [PR REVIEW] " vincele
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: tsndqst @ 2024-08-25 12:25 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 290 bytes --]

New comment by tsndqst on void-packages repository

https://github.com/void-linux/void-packages/pull/51978#issuecomment-2308812203

Comment:
This change can probably wait until the next kernel version bump.  I just wanted to request it now so it could be available some time in the future.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR REVIEW] linux6.10: Enable netkit support
  2024-08-25  2:15 [PR PATCH] linux6.10: Enable netkit support tsndqst
  2024-08-25 12:25 ` tsndqst
@ 2024-09-09 18:00 ` vincele
  2024-09-09 18:02 ` tsndqst
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: vincele @ 2024-09-09 18:00 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 219 bytes --]

New review comment by vincele on void-packages repository

https://github.com/void-linux/void-packages/pull/51978#discussion_r1750693141

Comment:
I'm not sure I'd bother with this one. Added it for consistency's sake?

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR REVIEW] linux6.10: Enable netkit support
  2024-08-25  2:15 [PR PATCH] linux6.10: Enable netkit support tsndqst
  2024-08-25 12:25 ` tsndqst
  2024-09-09 18:00 ` [PR REVIEW] " vincele
@ 2024-09-09 18:02 ` tsndqst
  2024-09-11 11:46 ` leahneukirchen
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: tsndqst @ 2024-09-09 18:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 161 bytes --]

New review comment by tsndqst on void-packages repository

https://github.com/void-linux/void-packages/pull/51978#discussion_r1750698448

Comment:
Pretty much. 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: linux6.10: Enable netkit support
  2024-08-25  2:15 [PR PATCH] linux6.10: Enable netkit support tsndqst
                   ` (2 preceding siblings ...)
  2024-09-09 18:02 ` tsndqst
@ 2024-09-11 11:46 ` leahneukirchen
  2024-09-11 11:58 ` [PR PATCH] [Updated] " tsndqst
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: leahneukirchen @ 2024-09-11 11:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 224 bytes --]

New comment by leahneukirchen on void-packages repository

https://github.com/void-linux/void-packages/pull/51978#issuecomment-2343446628

Comment:
Drop the revision bump then we can pick it up on next minor kernel release.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Updated] linux6.10: Enable netkit support
  2024-08-25  2:15 [PR PATCH] linux6.10: Enable netkit support tsndqst
                   ` (3 preceding siblings ...)
  2024-09-11 11:46 ` leahneukirchen
@ 2024-09-11 11:58 ` tsndqst
  2024-09-11 11:59 ` tsndqst
  2024-09-11 13:39 ` [PR PATCH] [Merged]: " leahneukirchen
  6 siblings, 0 replies; 8+ messages in thread
From: tsndqst @ 2024-09-11 11:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1579 bytes --]

There is an updated pull request by tsndqst against master on the void-packages repository

https://github.com/tsndqst/void-packages linux6.10_netkit
https://github.com/void-linux/void-packages/pull/51978

linux6.10: Enable netkit support
The BPF programmable network device was added in kernel 6.7.  Netkit device is used by [Cilium](https://www.cilium.io/) instead of `veth` interfaces to improve performance.  It would be nice to have this enabled in the default kernel as it would be a pain to recompile the kernel on my aarch64 Kubernetes cluster.

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/51978.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-linux6.10_netkit-51978.patch --]
[-- Type: text/x-diff, Size: 1723 bytes --]

From 6fd32a9780e9b5ae236d10cd809069fc93f847a0 Mon Sep 17 00:00:00 2001
From: Tim Sandquist <tim.sandquist@gmail.com>
Date: Sun, 18 Aug 2024 21:45:33 -0500
Subject: [PATCH] linux6.10: Enable netkit support

---
 srcpkgs/linux6.10/files/arm64-dotconfig  | 2 +-
 srcpkgs/linux6.10/files/i386-dotconfig   | 2 +-
 srcpkgs/linux6.10/files/x86_64-dotconfig | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/linux6.10/files/arm64-dotconfig b/srcpkgs/linux6.10/files/arm64-dotconfig
index 9d74f9b766b05f..6297573b5fa712 100644
--- a/srcpkgs/linux6.10/files/arm64-dotconfig
+++ b/srcpkgs/linux6.10/files/arm64-dotconfig
@@ -3279,7 +3279,7 @@ CONFIG_TAP=m
 CONFIG_VETH=m
 CONFIG_VIRTIO_NET=m
 CONFIG_NLMON=m
-# CONFIG_NETKIT is not set
+CONFIG_NETKIT=y
 CONFIG_NET_VRF=m
 CONFIG_VSOCKMON=m
 CONFIG_MHI_NET=m
diff --git a/srcpkgs/linux6.10/files/i386-dotconfig b/srcpkgs/linux6.10/files/i386-dotconfig
index 03061e33f2aa78..f2ea763ef1c8a7 100644
--- a/srcpkgs/linux6.10/files/i386-dotconfig
+++ b/srcpkgs/linux6.10/files/i386-dotconfig
@@ -2915,7 +2915,7 @@ CONFIG_TUN_VNET_CROSS_LE=y
 CONFIG_VETH=m
 CONFIG_VIRTIO_NET=m
 CONFIG_NLMON=m
-# CONFIG_NETKIT is not set
+CONFIG_NETKIT=y
 CONFIG_NET_VRF=m
 # CONFIG_VSOCKMON is not set
 CONFIG_MHI_NET=m
diff --git a/srcpkgs/linux6.10/files/x86_64-dotconfig b/srcpkgs/linux6.10/files/x86_64-dotconfig
index f294f51861b2e6..8eb54256af8673 100644
--- a/srcpkgs/linux6.10/files/x86_64-dotconfig
+++ b/srcpkgs/linux6.10/files/x86_64-dotconfig
@@ -3094,7 +3094,7 @@ CONFIG_TUN_VNET_CROSS_LE=y
 CONFIG_VETH=m
 CONFIG_VIRTIO_NET=m
 CONFIG_NLMON=m
-# CONFIG_NETKIT is not set
+CONFIG_NETKIT=y
 CONFIG_NET_VRF=m
 # CONFIG_VSOCKMON is not set
 # CONFIG_MHI_NET is not set

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: linux6.10: Enable netkit support
  2024-08-25  2:15 [PR PATCH] linux6.10: Enable netkit support tsndqst
                   ` (4 preceding siblings ...)
  2024-09-11 11:58 ` [PR PATCH] [Updated] " tsndqst
@ 2024-09-11 11:59 ` tsndqst
  2024-09-11 13:39 ` [PR PATCH] [Merged]: " leahneukirchen
  6 siblings, 0 replies; 8+ messages in thread
From: tsndqst @ 2024-09-11 11:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 175 bytes --]

New comment by tsndqst on void-packages repository

https://github.com/void-linux/void-packages/pull/51978#issuecomment-2343471813

Comment:
Updated.
Thanks @leahneukirchen 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PR PATCH] [Merged]: linux6.10: Enable netkit support
  2024-08-25  2:15 [PR PATCH] linux6.10: Enable netkit support tsndqst
                   ` (5 preceding siblings ...)
  2024-09-11 11:59 ` tsndqst
@ 2024-09-11 13:39 ` leahneukirchen
  6 siblings, 0 replies; 8+ messages in thread
From: leahneukirchen @ 2024-09-11 13:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1414 bytes --]

There's a merged pull request on the void-packages repository

linux6.10: Enable netkit support
https://github.com/void-linux/void-packages/pull/51978

Description:
The BPF programmable network device was added in kernel 6.7.  Netkit device is used by [Cilium](https://www.cilium.io/) instead of `veth` interfaces to improve performance.  It would be nice to have this enabled in the default kernel as it would be a pain to recompile the kernel on my aarch64 Kubernetes cluster.

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-09-11 13:39 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-25  2:15 [PR PATCH] linux6.10: Enable netkit support tsndqst
2024-08-25 12:25 ` tsndqst
2024-09-09 18:00 ` [PR REVIEW] " vincele
2024-09-09 18:02 ` tsndqst
2024-09-11 11:46 ` leahneukirchen
2024-09-11 11:58 ` [PR PATCH] [Updated] " tsndqst
2024-09-11 11:59 ` tsndqst
2024-09-11 13:39 ` [PR PATCH] [Merged]: " leahneukirchen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).