Re: [PATCH] VMCI: Update maintainers for VMCI

2022-07-25 Thread Vishnu Dasa via Virtualization
> On Jul 25, 2022, at 11:05 AM, Greg KH wrote: > > On Mon, Jul 25, 2022 at 09:32:46AM -0700, vd...@vmware.com wrote: >> From: Vishnu Dasa >> >> Remove Rajesh as a maintainer for the VMCI driver. > > Why? Rajesh is no longer with VMware and won't be working on VMCI. > >> >> Acked-by: Brya

Re: [PATCH] VMCI: Update maintainers for VMCI

2022-07-25 Thread Greg KH
On Mon, Jul 25, 2022 at 09:32:46AM -0700, vd...@vmware.com wrote: > From: Vishnu Dasa > > Remove Rajesh as a maintainer for the VMCI driver. Why? > > Acked-by: Bryan Tan > Signed-off-by: Vishnu Dasa I need an ack from the person that is being removed here, for obvious reasons. Any specific

[PATCH] VMCI: Update maintainers for VMCI

2022-07-25 Thread vdasa--- via Virtualization
From: Vishnu Dasa Remove Rajesh as a maintainer for the VMCI driver. Acked-by: Bryan Tan Signed-off-by: Vishnu Dasa --- MAINTAINERS | 1 - 1 file changed, 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 25a9365e0cca..356fc4014c2a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -2170

Re: [PATCH v5 1/1] Create debugfs file with virtio balloon usage information

2022-07-25 Thread David Hildenbrand
On 25.07.22 13:27, Alexander Atanasov wrote: > Hi, > > On 18/07/2022 14:35, David Hildenbrand wrote: >> On 14.07.22 15:20, Alexander Atanasov wrote: >>> Allow the guest to know how much it is ballooned by the host. >>> It is useful when debugging out of memory conditions. >>> >>> When host gets ba

[CLOSED] Re: [CFP LPC 2022] Confidential Computing Microconference

2022-07-25 Thread Jörg Rödel
Hi again, On Fri, May 20, 2022 at 05:48:18PM +0200, Jörg Rödel wrote: > Please submit your proposals on the LPC website at: > > https://lpc.events/event/16/abstracts/ Thanks a lot for the numerous topic submissions! I am very exicted and I am looking forward to great discussions at this mi

Re: [PATCH V6] virtio-net: fix the race between refill work and close

2022-07-25 Thread Xuan Zhuo
On Mon, 25 Jul 2022 15:21:59 +0800, Jason Wang wrote: > We try using cancel_delayed_work_sync() to prevent the work from > enabling NAPI. This is insufficient since we don't disable the source > of the refill work scheduling. This means an NAPI poll callback after > cancel_delayed_work_sync() can

Re: [PATCH V6] virtio-net: fix the race between refill work and close

2022-07-25 Thread Michael S. Tsirkin
On Mon, Jul 25, 2022 at 03:21:59PM +0800, Jason Wang wrote: > We try using cancel_delayed_work_sync() to prevent the work from > enabling NAPI. This is insufficient since we don't disable the source > of the refill work scheduling. This means an NAPI poll callback after > cancel_delayed_work_sync()

Re: [PATCH v12 38/40] virtio_net: support rx queue resize

2022-07-25 Thread Jason Wang
On Mon, Jul 25, 2022 at 3:23 PM Xuan Zhuo wrote: > > On Mon, 25 Jul 2022 14:57:11 +0800, Jason Wang wrote: > > On Mon, Jul 25, 2022 at 2:43 PM Xuan Zhuo > > wrote: > > > > > > On Thu, 21 Jul 2022 17:25:59 +0800, Jason Wang > > > wrote: > > > > > > > > 在 2022/7/20 11:04, Xuan Zhuo 写道: > > > >

Re: [PATCH v12 38/40] virtio_net: support rx queue resize

2022-07-25 Thread Xuan Zhuo
On Mon, 25 Jul 2022 14:57:11 +0800, Jason Wang wrote: > On Mon, Jul 25, 2022 at 2:43 PM Xuan Zhuo wrote: > > > > On Thu, 21 Jul 2022 17:25:59 +0800, Jason Wang wrote: > > > > > > 在 2022/7/20 11:04, Xuan Zhuo 写道: > > > > This patch implements the resize function of the rx queues. > > > > Based on

Re: [PATCH V6] virtio-net: fix the race between refill work and close

2022-07-25 Thread Jason Wang
On Mon, Jul 25, 2022 at 3:22 PM Jason Wang wrote: > > We try using cancel_delayed_work_sync() to prevent the work from > enabling NAPI. This is insufficient since we don't disable the source > of the refill work scheduling. This means an NAPI poll callback after > cancel_delayed_work_sync() can sc

[PATCH V6] virtio-net: fix the race between refill work and close

2022-07-25 Thread Jason Wang
We try using cancel_delayed_work_sync() to prevent the work from enabling NAPI. This is insufficient since we don't disable the source of the refill work scheduling. This means an NAPI poll callback after cancel_delayed_work_sync() can schedule the refill work then can re-enable the NAPI that leads