Re: [PATCH v8 10/12] vhost_net: add NetClientState->load() callback

2022-08-09 Thread Jason Wang
On Wed, Aug 10, 2022 at 1:40 AM Eugenio Pérez wrote: > > It allows per-net client operations right after device's successful > start. In particular, to load the device status. > > Vhost-vdpa net will use it to add the CVQ buffers to restore the device > status. > > Signed-off-by: Eugenio Pérez

[PATCH v8 10/12] vhost_net: add NetClientState->load() callback

2022-08-09 Thread Eugenio Pérez
It allows per-net client operations right after device's successful start. In particular, to load the device status. Vhost-vdpa net will use it to add the CVQ buffers to restore the device status. Signed-off-by: Eugenio Pérez --- v5: Rename start / load, naming it more specifically. ---