Re: [PATCH 05/11] tools: add option inactive to nodedev-dumpxml

2024-02-01 Thread Boris Fiuczynski
On 2/1/24 17:39, Jonathon Jongsma wrote: @@ -608,7 +613,15 @@ cmdNodeDeviceDumpXML(vshControl *ctl, const vshCmd *cmd)   if (!device)   return false; -    if (!(xml = virNodeDeviceGetXMLDesc(device, 0))) +    if (vshCommandOptBool(cmd, "inactive")) { +    flags |=

Re: [PATCH 05/11] tools: add option inactive to nodedev-dumpxml

2024-02-01 Thread Jonathon Jongsma
On 2/1/24 8:35 AM, Boris Fiuczynski wrote: On 1/31/24 22:34, Jonathon Jongsma wrote: On 1/19/24 10:38 AM, Boris Fiuczynski wrote: Allow to dump the XML of the persisted mdev when the mdev has been started instead of the current state only. Signed-off-by: Boris Fiuczynski ---  

Re: [PATCH 05/11] tools: add option inactive to nodedev-dumpxml

2024-02-01 Thread Boris Fiuczynski
On 1/31/24 22:34, Jonathon Jongsma wrote: On 1/19/24 10:38 AM, Boris Fiuczynski wrote: Allow to dump the XML of the persisted mdev when the mdev has been started instead of the current state only. Signed-off-by: Boris Fiuczynski ---   docs/manpages/virsh.rst |  7 +--  

Re: [PATCH 05/11] tools: add option inactive to nodedev-dumpxml

2024-01-31 Thread Jonathon Jongsma
On 1/19/24 10:38 AM, Boris Fiuczynski wrote: Allow to dump the XML of the persisted mdev when the mdev has been started instead of the current state only. Signed-off-by: Boris Fiuczynski --- docs/manpages/virsh.rst | 7 +-- tools/virsh-nodedev.c | 15 ++- 2 files

[PATCH 05/11] tools: add option inactive to nodedev-dumpxml

2024-01-19 Thread Boris Fiuczynski
Allow to dump the XML of the persisted mdev when the mdev has been started instead of the current state only. Signed-off-by: Boris Fiuczynski --- docs/manpages/virsh.rst | 7 +-- tools/virsh-nodedev.c | 15 ++- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git