From: "Zhiguang Liu" <zhiguang.liu@intel.com>
To: Laszlo Ersek <lersek@redhat.com>,
Ard Biesheuvel <ard.biesheuvel@arm.com>,
gaoliming <gaoliming@byosoft.com.cn>,
"devel@edk2.groups.io" <devel@edk2.groups.io>,
"Yao, Jiewen" <jiewen.yao@intel.com>,
"Feng, Bob C" <bob.c.feng@intel.com>,
"Tian, Hot" <hot.tian@intel.com>,
'Bret Barkelew' <bret@corthon.com>
Cc: "Bi, Dandan" <dandan.bi@intel.com>,
'Chao Zhang' <chao.b.zhang@intel.com>,
"Wang, Jian J" <jian.j.wang@intel.com>,
"Wu, Hao A" <hao.a.wu@intel.com>,
'Liming Gao' <liming.gao@intel.com>,
"Justen, Jordan L" <jordan.l.justen@intel.com>,
'Andrew Fish' <afish@apple.com>, "Ni, Ray" <ray.ni@intel.com>,
'Bret Barkelew' <brbarkel@microsoft.com>,
"Kinney, Michael D" <michael.d.kinney@intel.com>,
"debtech@gmail.com" <debtech@gmail.com>,
"awarkentin@vmware.com" <awarkentin@vmware.com>,
"michael.kubacki@outlook.com" <michael.kubacki@outlook.com>
Subject: Re: 回复: [edk2-devel] A proposal to reduce incompatible case
Date: Sat, 21 Nov 2020 06:07:55 +0000 [thread overview]
Message-ID: <CY4PR11MB1687B6FC7F5D9AB507CE2C9590FE0@CY4PR11MB1687.namprd11.prod.outlook.com> (raw)
In-Reply-To: <23ec860c-68cb-608e-d3b6-29c9513a30df@redhat.com>
Hi all,
Thanks all for the comments.
Hi Jiewen:
I think we are thinking from the different aspects.
I want the XXPkgLib.dsc.inc to specify the default library instance that the package will consumes.
You may want it to specify the default library instance that the package will produce.
I now think your way makes more sense, and also align with the implement in NetworkPkg.
I will follow your way when working on the demo code.
Hi Bret:
I see you point about that platform should be like platform and should only change in the stable tag.
I partly agree with you, but in fact there are some projects need to keep the Edk2 updated frequently.
And my proposal should also be an optional way to add the library instance.
Platform dsc can also choose the original way. I think it is at least harmless if some platforms choose not to use this way.
Hi Lazlo:
I agree with you that this proposal should only extract "Single-instance".
After all, this proposal is meant to reduce incompatible case like this VaribalePolicyLib.
I want to the platform to be "Seamless update" in such case.
However, if this lib has two instances, it is a platform's choice and platform owner should be aware the change.
Therefore, "Single-instance" and "Multiple-instance" should be totally different case, and we should only enable this proposal to "Single-instance".
Hi Liming and Ard,
Thanks for liking this idea.
I plan to work on the demo code next week and send it here for more comments.
BTW, about the file name, I want to it to follow the existing rule of NetworkPkg and ArmVirtPkg.
I think for MdeModulePkg, "MdeModuleLibs.dsc.inc" will be better.
Thanks
Zhiguang
> -----Original Message-----
> From: Laszlo Ersek <lersek@redhat.com>
> Sent: Friday, November 20, 2020 7:18 PM
> To: Ard Biesheuvel <ard.biesheuvel@arm.com>; gaoliming
> <gaoliming@byosoft.com.cn>; devel@edk2.groups.io; Yao, Jiewen
> <jiewen.yao@intel.com>; Liu, Zhiguang <zhiguang.liu@intel.com>;
> michael.kubacki@outlook.com; awarkentin@vmware.com;
> debtech@gmail.com; Feng, Bob C <bob.c.feng@intel.com>; Tian, Hot
> <hot.tian@intel.com>
> Cc: 'Bret Barkelew' <bret@corthon.com>; Bi, Dandan <dandan.bi@intel.com>;
> 'Chao Zhang' <chao.b.zhang@intel.com>; Wang, Jian J <jian.j.wang@intel.com>;
> Wu, Hao A <hao.a.wu@intel.com>; 'Liming Gao' <liming.gao@intel.com>;
> Justen, Jordan L <jordan.l.justen@intel.com>; 'Andrew Fish' <afish@apple.com>;
> Ni, Ray <ray.ni@intel.com>; 'Bret Barkelew' <brbarkel@microsoft.com>;
> Kinney, Michael D <michael.d.kinney@intel.com>
> Subject: Re: 回复: [edk2-devel] A proposal to reduce incompatible case
>
> On 11/20/20 10:02, Ard Biesheuvel wrote:
> > On 11/20/20 8:27 AM, gaoliming wrote:
> >> Zhiguang:
> >> This proposal can reduce the potential library class dependency.
> >> Each package has its xxxPkgLib.dsc.inc file that includes the library
> >> instances from this package.
> >> Platform DSC can include the required package lib.dsc.inc file for
> >> the library instances. Can you work out the code changes to
> >> demonstrate this idea?
> >>
> >
> > +1 for this idea. This would allow us to remove a *lot* of boilerplate
> > in the .DSC files, and focus on the libraries that actually matter for
> > the platform at hand.
>
> I feel like I'm in *cautious* agreement with this idea.
>
> In particular, I'd *only* like those lib class -> lib instance resolutions to be
> extracted, to DSC include files, that *cannot* involve platform choice. To put it
> differently, single-instance lib classes.
>
> ("Single-instance" can be interpreted per module type / per architecture of
> course -- so if a lib class has exactly 1 instance for PEIMs and exactly 1
> (different) instance for DXE_DRIVERs, then those resolutions qualify for
> extraction.)
>
> If a library class genuinely has multiple instances in core edk2, then extracting
> a "default" resolution would be *wrong*, in my opinion. Every platform needs
> to make the choice explicitly, in such cases. This applies even if a lib class only
> has two instances, a functional one, and a Null one. The functional one should
> not be assumed default.
>
> Example: extracting the UefiLib resolution is valid. Extracting a SerialPortLib
> class resolution is invalid.
>
> Basically, I'd like to avoid *overrides*. Overrides are terribly hard to reason
> about.
>
> ... If someone wants to work on this, they'll have to implement this with *super
> small* patches, where every patch extracts resolutions for just one lib class. I
> would reject any patch that required me to review the extraction of two or
> more lib classes, from an OVMF or ArmVirt DSC file, at the same time.
>
> There is big potential in this proposal for making platform DSC files
> *permanently* more difficult to understand & analyze. I don't immediately see
> this proposal as a good solution for avoiding the current kind of platform DSC
> breakage. Platform CI would be much better, in my opinion. The proposal does
> seem workable, but the implementation needs to be surgical, IMO.
>
> OK, I'll get off my soap box now.
>
> Thanks
> Laszlo
next prev parent reply other threads:[~2020-11-21 6:08 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-20 6:51 A proposal to reduce incompatible case Zhiguang Liu
2020-11-20 7:20 ` Yao, Jiewen
2020-11-20 7:24 ` Bret Barkelew
2020-11-20 7:27 ` 回复: [edk2-devel] " gaoliming
2020-11-20 9:02 ` Ard Biesheuvel
2020-11-20 11:17 ` Laszlo Ersek
2020-11-21 6:07 ` Zhiguang Liu [this message]
2020-11-29 12:31 ` Zhiguang Liu
2020-11-30 16:48 ` Laszlo Ersek
2020-11-30 20:53 ` Michael D Kinney
2020-12-01 1:54 ` Zhiguang Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CY4PR11MB1687B6FC7F5D9AB507CE2C9590FE0@CY4PR11MB1687.namprd11.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox