Re: [PATCH] virtio-net: Copy all for dhclient workaround

2025-05-13 Thread Jason Wang
On Mon, May 12, 2025 at 6:11 PM Michael Tokarev wrote: > > On 05.04.2025 11:04, Akihiko Odaki wrote: > > The goal of commit 7987d2be5a8b ("virtio-net: Copy received header to > > buffer") was to remove the need to patch the (const) input buffer with a > > recomputed UDP checksum by copying headers

Re: [PATCH] virtio-net: Copy all for dhclient workaround

2025-05-12 Thread Michael Tokarev
On 05.04.2025 11:04, Akihiko Odaki wrote: The goal of commit 7987d2be5a8b ("virtio-net: Copy received header to buffer") was to remove the need to patch the (const) input buffer with a recomputed UDP checksum by copying headers to a RW region and inject the checksum there. The patch computed the

Re: [PATCH] virtio-net: Copy all for dhclient workaround

2025-04-18 Thread Akihiko Odaki
On 2025/04/11 22:20, Antoine Damhet wrote: On Fri, Apr 11, 2025 at 05:01:01PM +0900, Akihiko Odaki wrote: On 2025/04/07 17:29, Antoine Damhet wrote: On Sat, Apr 05, 2025 at 05:04:28PM +0900, Akihiko Odaki wrote: The goal of commit 7987d2be5a8b ("virtio-net: Copy received header to buffer") was

Re: [PATCH] virtio-net: Copy all for dhclient workaround

2025-04-11 Thread Antoine Damhet
On Fri, Apr 11, 2025 at 05:01:01PM +0900, Akihiko Odaki wrote: > On 2025/04/07 17:29, Antoine Damhet wrote: > > On Sat, Apr 05, 2025 at 05:04:28PM +0900, Akihiko Odaki wrote: > > > The goal of commit 7987d2be5a8b ("virtio-net: Copy received header to > > > buffer") was to remove the need to patch t

Re: [PATCH] virtio-net: Copy all for dhclient workaround

2025-04-11 Thread Akihiko Odaki
On 2025/04/07 17:29, Antoine Damhet wrote: On Sat, Apr 05, 2025 at 05:04:28PM +0900, Akihiko Odaki wrote: The goal of commit 7987d2be5a8b ("virtio-net: Copy received header to buffer") was to remove the need to patch the (const) input buffer with a recomputed UDP checksum by copying headers to a

Re: [PATCH] virtio-net: Copy all for dhclient workaround

2025-04-07 Thread Antoine Damhet
On Sat, Apr 05, 2025 at 05:04:28PM +0900, Akihiko Odaki wrote: > The goal of commit 7987d2be5a8b ("virtio-net: Copy received header to > buffer") was to remove the need to patch the (const) input buffer with a > recomputed UDP checksum by copying headers to a RW region and inject the > checksum the

Re: [PATCH] virtio-net: Copy all for dhclient workaround

2025-04-06 Thread Jason Wang
On Sat, Apr 5, 2025 at 4:04 PM Akihiko Odaki wrote: > > The goal of commit 7987d2be5a8b ("virtio-net: Copy received header to > buffer") was to remove the need to patch the (const) input buffer with a > recomputed UDP checksum by copying headers to a RW region and inject the > checksum there. The

[PATCH] virtio-net: Copy all for dhclient workaround

2025-04-05 Thread Akihiko Odaki
The goal of commit 7987d2be5a8b ("virtio-net: Copy received header to buffer") was to remove the need to patch the (const) input buffer with a recomputed UDP checksum by copying headers to a RW region and inject the checksum there. The patch computed the checksum only from the header fields (missin