From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web08.4150.1662636726175268227 for ; Thu, 08 Sep 2022 04:32:06 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=VWzJkdcD; spf=pass (domain: redhat.com, ip: 170.10.133.124, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1662636724; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=e96n4s367Vu15AyPtf4ldpqC+YnW6ZZwysfkhnS4msc=; b=VWzJkdcD0pnBlItzasd9OsyL/jZkEGCIFFupE+bAzjPYeY8FJZm5s3EefsHKIX9bZCkMCb 1L/aWRVcAV/IgbIE1ETEbUjpI0r16Wx8GrUewCB7a2cf900jWqzxRkpRHOYklPqyM1SlrS mXUfdpa1m4Sy62gDluHba6Qq9NKfWgY= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-632-LsL9uFJFNGSDBcUAUY7jxg-1; Thu, 08 Sep 2022 07:32:02 -0400 X-MC-Unique: LsL9uFJFNGSDBcUAUY7jxg-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 960B5811E76; Thu, 8 Sep 2022 11:32:01 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (unknown [10.39.195.1]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EE9F82026D4C; Thu, 8 Sep 2022 11:31:59 +0000 (UTC) Subject: Re: [PATCH v3 0/3] Ovmf: Allow IPv4 and IPv6 to be disabled at runtime To: Gerd Hoffmann , Ard Biesheuvel Cc: devel@edk2.groups.io, Yuan Yu , Pawel Polawski , Oliver Steffen , Jiewen Yao , "Brian J . Johnson" References: <20220906115926.115493-1-ardb@kernel.org> <20220907054649.liakrvekiznskrcl@sirius.home.kraxel.org> From: "Laszlo Ersek" Message-ID: <19a2fb55-aaec-7250-922a-c90a258128ef@redhat.com> Date: Thu, 8 Sep 2022 13:31:58 +0200 MIME-Version: 1.0 In-Reply-To: <20220907054649.liakrvekiznskrcl@sirius.home.kraxel.org> X-Scanned-By: MIMEDefang 2.78 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 09/07/22 07:46, Gerd Hoffmann wrote: > On Tue, Sep 06, 2022 at 01:59:23PM +0200, Ard Biesheuvel wrote: >> Add some generic plumbing and wire it up for the QEMU based Ovmf >> platform so that IPv4 and/or IPv6 networking can be turned off from the >> QEMU command line. >> >> This is a follow-up to Yuan's patch '[PATCH v1 0/2] Add support to >> disable VirtIo net at runtime' which only targeted the virtio network >> driver specifically.i >> >> Changes since v2: >> - implement Gerd's suggestion to use a DSC include file for network >> component overrides >> - add Laszlo's ack to patch #1 >> >> Changes since v1: >> - instead of a NULL class library that calls the Exit() boot service >> from its constructor, use a replacement for the UefiDriverEntryPoint >> library >> >> Cc: Yuan Yu >> Cc: Laszlo Ersek >> Cc: Gerd Hoffmann >> Cc: Pawel Polawski >> Cc: Oliver Steffen >> Cc: Jiewen Yao >> Cc: Brian J. Johnson > > Acked-by: Gerd Hoffmann I'm happy to defer to Gerd on the DSC management :) Laszo