Re: [PATCH v2] net: add initial support for AF_XDP network backend

2023-08-04 Thread Ilya Maximets
On 7/25/23 08:55, Jason Wang wrote: > On Thu, Jul 20, 2023 at 9:26 PM Ilya Maximets wrote: >> >> On 7/20/23 09:37, Jason Wang wrote: >>> On Thu, Jul 6, 2023 at 4:58 AM Ilya Maximets wrote: AF_XDP is a network socket family that allows communication directly with the network device

Re: [PATCH v2] net: add initial support for AF_XDP network backend

2023-07-24 Thread Jason Wang
On Thu, Jul 20, 2023 at 9:26 PM Ilya Maximets wrote: > > On 7/20/23 09:37, Jason Wang wrote: > > On Thu, Jul 6, 2023 at 4:58 AM Ilya Maximets wrote: > >> > >> AF_XDP is a network socket family that allows communication directly > >> with the network device driver in the kernel, bypassing most or

Re: [PATCH v2] net: add initial support for AF_XDP network backend

2023-07-20 Thread Ilya Maximets
On 7/20/23 09:37, Jason Wang wrote: > On Thu, Jul 6, 2023 at 4:58 AM Ilya Maximets wrote: >> >> AF_XDP is a network socket family that allows communication directly >> with the network device driver in the kernel, bypassing most or all >> of the kernel networking stack. In the essence, the techno

Re: [PATCH v2] net: add initial support for AF_XDP network backend

2023-07-20 Thread Jason Wang
On Thu, Jul 6, 2023 at 4:58 AM Ilya Maximets wrote: > > AF_XDP is a network socket family that allows communication directly > with the network device driver in the kernel, bypassing most or all > of the kernel networking stack. In the essence, the technology is > pretty similar to netmap. But,