From nobody Sat May 4 05:02:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1558615423; cv=none; d=zoho.com; s=zohoarc; b=ALzMdvmHUlrjE99XVjAtg4AIeENP/6vFm7qrROLJrb1JiT4kQD+sgCLVKHwmMdoM/C0uudq9DxvW7UGBdzFLsGLvhzPFdl0lovcGhTGnkr1runlGV6WUK20YAK0zcX0pTMfAYjinBdOi3m1APMAGq01yO0ugB3tNYQI1Kyqkguo= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1558615423; h=Content-Type:Content-Transfer-Encoding:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=SnX6XZZ7d18vgrRxeap9HTtI+20k1QVKC3YlWEbZ2Us=; b=RW+jBJscwlv9FJTYe7GxmbGROs8u5Lu8/VM65B33frrn1fFQ22wdwnjYEjpmT5e6q+iY6+8E0CgLqh6GWjXWJjmzIlut63eWcueHszHu5UlsSTTZMEgJCASM7CGUbfvHfOEXNY+vNVCXPFWR6bwrxbgL3L5psAfcwBogEjkC4HI= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1558615423050836.1998678448856; Thu, 23 May 2019 05:43:43 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 4BA7230024AD; Thu, 23 May 2019 12:43:30 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5B2CA6198B; Thu, 23 May 2019 12:43:19 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 7FE5C1806B13; Thu, 23 May 2019 12:43:10 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x4NCh6ul003732 for ; Thu, 23 May 2019 08:43:06 -0400 Received: by smtp.corp.redhat.com (Postfix) id E09A02E029; Thu, 23 May 2019 12:43:06 +0000 (UTC) Received: from icr.brq.redhat.com (unknown [10.43.2.100]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6B0452C272 for ; Thu, 23 May 2019 12:43:03 +0000 (UTC) From: =?UTF-8?q?J=C3=A1n=20Tomko?= To: libvir-list@redhat.com Date: Thu, 23 May 2019 14:43:02 +0200 Message-Id: <9bc91ceab35bdc106769637aa74c3b0dcac873c7.1558615376.git.jtomko@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-loop: libvir-list@redhat.com Subject: [libvirt] [PATCH] virDomainDefPostParse: use DOMAIN_DEVICE_ITERATE_MISSING_INFO X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.40]); Thu, 23 May 2019 12:43:33 +0000 (UTC) Apart from virDomainDefValidate, virDomainDefPostParse is another place where operating on info-less devices makes sense. Signed-off-by: J=C3=A1n Tomko --- src/conf/domain_conf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 926c2139b7..006920e954 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -5803,7 +5803,8 @@ virDomainDefPostParse(virDomainDefPtr def, /* iterate the devices */ ret =3D virDomainDeviceInfoIterateInternal(def, virDomainDefPostParseDeviceIt= erator, - DOMAIN_DEVICE_ITERATE_ALL_CON= SOLES, + DOMAIN_DEVICE_ITERATE_ALL_CON= SOLES | + DOMAIN_DEVICE_ITERATE_MISSING= _INFO, &data); =20 if (virDomainDefPostParseCheckFailure(def, parseFlags, ret) < 0) --=20 2.19.2 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list