Re: [PATCH vhost v5 1/6] virtio_balloon: remove the dependence where names[] is null

2024-03-26 Thread Xuan Zhuo
On Mon, 25 Mar 2024 10:12:51 +0100, David Hildenbrand wrote: > On 25.03.24 10:04, Xuan Zhuo wrote: > > Currently, the init_vqs function within the virtio_balloon driver relies > > on the condition that certain names array entries are null in order to > > skip the initialization of some virtual que

Re: [PATCH vhost v5 1/6] virtio_balloon: remove the dependence where names[] is null

2024-03-26 Thread Xuan Zhuo
On Tue, 26 Mar 2024 12:14:17 +0800, Jason Wang wrote: > On Mon, Mar 25, 2024 at 5:04 PM Xuan Zhuo wrote: > > > > Currently, the init_vqs function within the virtio_balloon driver relies > > on the condition that certain names array entries are null in order to > > skip the initialization of some

Re: [PATCH vhost v5 1/6] virtio_balloon: remove the dependence where names[] is null

2024-03-25 Thread Jason Wang
On Mon, Mar 25, 2024 at 5:04 PM Xuan Zhuo wrote: > > Currently, the init_vqs function within the virtio_balloon driver relies > on the condition that certain names array entries are null in order to > skip the initialization of some virtual queues (vqs). If there's a respin I would add something

Re: [PATCH vhost v5 1/6] virtio_balloon: remove the dependence where names[] is null

2024-03-25 Thread David Hildenbrand
On 25.03.24 10:04, Xuan Zhuo wrote: Currently, the init_vqs function within the virtio_balloon driver relies on the condition that certain names array entries are null in order to skip the initialization of some virtual queues (vqs). This behavior is unique to this part of the codebase. In an upc

[PATCH vhost v5 1/6] virtio_balloon: remove the dependence where names[] is null

2024-03-25 Thread Xuan Zhuo
Currently, the init_vqs function within the virtio_balloon driver relies on the condition that certain names array entries are null in order to skip the initialization of some virtual queues (vqs). This behavior is unique to this part of the codebase. In an upcoming commit, we plan to eliminate thi