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

2024-03-26 Thread Daniel Verkamp
On Mon, Mar 25, 2024 at 2:11 AM David Hildenbrand wrote: > > On 25.03.24 07:08, Xuan Zhuo wrote: > > On Fri, 22 Mar 2024 22:02:27 +0100, David Hildenbrand > > wrote: > >> On 22.03.24 20:16, Daniel Verkamp wrote: > >>> On Thu, Mar 21, 2024 at 3:16 AM Xuan Zhuo > >>> wrote: > >

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

2024-03-25 Thread Jason Wang
On Tue, Mar 26, 2024 at 12:11 PM Jason Wang wrote: > > On Mon, Mar 25, 2024 at 5:44 PM Cornelia Huck wrote: > > > > On Mon, Mar 25 2024, Xuan Zhuo wrote: > > > > > On Fri, 22 Mar 2024 22:02:27 +0100, David Hildenbrand > > > wrote: > > >> On 22.03.24 20:16, Daniel Verkamp wrote: > > >> > On

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

2024-03-25 Thread Jason Wang
On Mon, Mar 25, 2024 at 5:44 PM Cornelia Huck wrote: > > On Mon, Mar 25 2024, Xuan Zhuo wrote: > > > On Fri, 22 Mar 2024 22:02:27 +0100, David Hildenbrand > > wrote: > >> On 22.03.24 20:16, Daniel Verkamp wrote: > >> > On Thu, Mar 21, 2024 at 3:16 AM Xuan Zhuo > >> > wrote: > >> >> > >> >>

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

2024-03-25 Thread Cornelia Huck
On Mon, Mar 25 2024, Xuan Zhuo wrote: > On Fri, 22 Mar 2024 22:02:27 +0100, David Hildenbrand > wrote: >> On 22.03.24 20:16, Daniel Verkamp wrote: >> > On Thu, Mar 21, 2024 at 3:16 AM Xuan Zhuo >> > wrote: >> >> >> >> Currently, the init_vqs function within the virtio_balloon driver relies

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

2024-03-25 Thread David Hildenbrand
On 25.03.24 07:08, Xuan Zhuo wrote: On Fri, 22 Mar 2024 22:02:27 +0100, David Hildenbrand wrote: On 22.03.24 20:16, Daniel Verkamp wrote: On Thu, Mar 21, 2024 at 3:16 AM Xuan Zhuo wrote: Currently, the init_vqs function within the virtio_balloon driver relies on the condition that certain

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

2024-03-25 Thread Xuan Zhuo
On Fri, 22 Mar 2024 22:02:27 +0100, David Hildenbrand wrote: > On 22.03.24 20:16, Daniel Verkamp wrote: > > On Thu, Mar 21, 2024 at 3:16 AM Xuan Zhuo > > wrote: > >> > >> Currently, the init_vqs function within the virtio_balloon driver relies > >> on the condition that certain names array

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

2024-03-25 Thread Xuan Zhuo
On Fri, 22 Mar 2024 12:56:46 +0100, David Hildenbrand wrote: > On 21.03.24 11:15, 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

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

2024-03-22 Thread David Hildenbrand
On 22.03.24 20:16, Daniel Verkamp wrote: On Thu, Mar 21, 2024 at 3:16 AM 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

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

2024-03-22 Thread Daniel Verkamp
On Thu, Mar 21, 2024 at 3:16 AM 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

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

2024-03-22 Thread David Hildenbrand
On 21.03.24 11:15, 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

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

2024-03-21 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