Re: [PATCH] MAINTAINERS: Update maintainer list for virtio i2c

2022-12-13 Thread Viresh Kumar
On 14-12-22, 13:36, Conghui wrote: > This updates the maintainer for virtio i2c drvier > > Signed-off-by: Conghui > Acked-by: Jian Jun Chen > --- > MAINTAINERS | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/MAINTAINERS b/MAINTAINERS > index a8c8f6b42436..44747f4641a6

Re: [PATCH] vdpa_sim_net: should not drop the multicast/broadcast packet

2022-12-13 Thread Jason Wang
On Wed, Dec 14, 2022 at 1:43 PM Cindy Lu wrote: > > In the receive_filter(), should not drop the packet with the > broadcast/multicast address. Add the check for this > > Signed-off-by: Cindy Lu Acked-by: Jason Wang Thanks > --- > drivers/vdpa/vdpa_sim/vdpa_sim_net.c | 3 +++ > 1 file

Re: [PATCH net-next v6] virtio/vsock: replace virtio_vsock_pkt with sk_buff

2022-12-13 Thread Stefano Garzarella
On Tue, Dec 13, 2022 at 10:06:23AM -0500, Michael S. Tsirkin wrote: On Tue, Dec 13, 2022 at 11:22:32AM +0100, Stefano Garzarella wrote: > + if (len <= GOOD_COPY_LEN && !skb_queue_empty_lockless(>rx_queue)) { Same here. If there are no major changes to be made, I think the next version is the

Re: [PATH v2 0/8] vdpa/mlx5: Add debugfs subtree and fixes

2022-12-13 Thread Michael S. Tsirkin
Yes it's all going into the next pull, thanks! On Tue, Dec 13, 2022 at 07:33:08AM +, Eli Cohen wrote: > Michael? > > > -Original Message- > > From: Eli Cohen > > Sent: Thursday, 24 November 2022 8:34 > > To: m...@redhat.com; jasow...@redhat.com; linux-ker...@vger.kernel.org; > >

Re: [PATCH] vdpa: conditionally fill max max queue pair for stats

2022-12-13 Thread Michael S. Tsirkin
On Tue, Dec 13, 2022 at 03:12:23PM +0800, Jason Wang wrote: > On Wed, Sep 7, 2022 at 4:11 PM Eli Cohen wrote: > > > > > From: Jason Wang > > > Sent: Wednesday, 7 September 2022 9:53 > > > To: Eli Cohen > > > Cc: m...@redhat.com; virtualization@lists.linux-foundation.org; linux- > > >

Re: [PATCH net] virtio-net: correctly enable callback during start_xmit

2022-12-13 Thread Michael S. Tsirkin
On Tue, Dec 13, 2022 at 02:57:54PM +0800, Jason Wang wrote: > On Tue, Dec 13, 2022 at 2:38 PM Michael S. Tsirkin wrote: > > > > On Tue, Dec 13, 2022 at 11:43:36AM +0800, Jason Wang wrote: > > > On Tue, Dec 13, 2022 at 11:38 AM Xuan Zhuo > > > wrote: > > > > > > > > On Mon, 12 Dec 2022 04:25:22

Re: [PATCH net-next v6] virtio/vsock: replace virtio_vsock_pkt with sk_buff

2022-12-13 Thread Michael S. Tsirkin
On Tue, Dec 13, 2022 at 11:22:32AM +0100, Stefano Garzarella wrote: > > + if (len <= GOOD_COPY_LEN && !skb_queue_empty_lockless(>rx_queue)) { > > Same here. > > If there are no major changes to be made, I think the next version is the > final ones, though we are now in the merge window, so

Re: [RFC PATCH v4 4/4] test/vsock: vsock_perf utility

2022-12-13 Thread Stefano Garzarella
On Tue, Dec 06, 2022 at 08:54:28PM +, Arseniy Krasnov wrote: This adds utility to check vsock rx/tx performance. Usage as sender: ./vsock_perf --sender --port --bytes Little typo "". I mean replace `)` with `>` Usage as receiver: ./vsock_perf --port --rcvlowat Signed-off-by:

Re: [RFC PATCH v4 2/4] test/vsock: rework message bounds test

2022-12-13 Thread Stefano Garzarella
On Tue, Dec 06, 2022 at 08:50:55PM +, Arseniy Krasnov wrote: This updates message bound test making it more complex. Instead of sending 1 bytes messages with one MSG_EOR bit, it sends messages of random length(one half of messages are smaller than page size, second half are bigger) with

Re: [RFC PATCH v4 1/4] vsock: return errors other than -ENOMEM to socket

2022-12-13 Thread Stefano Garzarella
On Tue, Dec 06, 2022 at 08:49:19PM +, Arseniy Krasnov wrote: From: Bobby Eshleman This removes behaviour, where error code returned from any transport was always switched to ENOMEM. For example when user tries to send too big message via SEQPACKET socket, transport layers return EMSGSIZE,

Re: [PATCH net-next v6] virtio/vsock: replace virtio_vsock_pkt with sk_buff

2022-12-13 Thread Stefano Garzarella
On Tue, Dec 13, 2022 at 07:25:49AM +, Bobby Eshleman wrote: This commit changes virtio/vsock to use sk_buff instead of virtio_vsock_pkt. Beyond better conforming to other net code, using sk_buff allows vsock to use sk_buff-dependent features in the future (such as sockmap) and improves

Re: [PATCH 3/3 v5] virtio: vdpa: new SolidNET DPU driver.

2022-12-13 Thread Alvaro Karsz
> + SNET_WRN(pdev, "Can't start HWMON, CONFIG_HWMON is not > enabled\n"); I'm really sorry, but SNET_WRN should be SNET_WARN. I will fix it Alvaro ___ Virtualization mailing list Virtualization@lists.linux-foundation.org

[PATCH 3/3 v5] virtio: vdpa: new SolidNET DPU driver.

2022-12-13 Thread Alvaro Karsz
This commit includes: 1) The driver to manage the controlplane over vDPA bus. 2) A HW monitor device to read health values from the DPU. Signed-off-by: Alvaro Karsz -- v2: - Auto detect the BAR used for communication. - When waiting for the DPU to write a config, wait for 5secs

[PATCH] vdpasim: fix memory leak when freeing IOTLBs

2022-12-13 Thread Jason Wang
After commit bda324fd037a ("vdpasim: control virtqueue support"), vdpasim->iommu became an array of IOTLB, so we should clean the mappings of each free one by one instead of just deleting the ranges in the first IOTLB which may leak maps. Fixes: bda324fd037a ("vdpasim: control virtqueue support")