On 04/24/2018 03:24 AM, Peter Krempa wrote:
On Mon, Apr 23, 2018 at 19:59:59 -0400, John Ferlan wrote:
> Add the VIR_DOMAIN_DEF_COPY_NEWGENID to indicate that the generated
> domain definition should adjust the genid value before returning the
> @def to the caller.
>
> Signed-off-by: John Ferlan <jferlan(a)redhat.com>
> ---
> src/conf/domain_conf.c | 12 ++++++++++++
> src/conf/domain_conf.h | 5 +++++
> src/qemu/qemu_driver.c | 3 ++-
> src/test/test_driver.c | 3 ++-
> 4 files changed, 21 insertions(+), 2 deletions(-)
IMO all this code should not be necessary. Code paths which knowingly
need to change the GENID should do so explicitly rather than pulling the
logic here.
Honestly, I found it easier to have the code in one place rather than
cut-copy-paste in two places... But I can move it out.
However, I may have forgotten a transition though w/r/t domain copy.
Unfortunately clone could be a bugger since it uses parse and format,
but if startup always generates one, then that's perhaps covered.
John