* [edk2-devel] [PATCH 1/1] MdePkg: Updated the definition of FileName on EFI_FILE_INFO [not found] <cover.1703227206.git.suqiangx.ren@intel.com> @ 2023-12-22 6:40 ` SuqiangX Ren 2023-12-23 2:01 ` [edk2-devel] 回复: " gaoliming via groups.io 2023-12-23 19:17 ` [edk2-devel] " Pedro Falcato 0 siblings, 2 replies; 4+ messages in thread From: SuqiangX Ren @ 2023-12-22 6:40 UTC (permalink / raw) To: devel; +Cc: Michael D Kinney, Liming Gao, Zhiguang Liu, Yi Li Add the description of FileName to align with UEFI spec 2.10. REF: UEFI spec 2.10 Table 13.5.16 Signed-off-by: RenSuqiang <suqiangx.ren@intel.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Zhiguang Liu <zhiguang.liu@intel.com> Cc: Yi Li <yi1.li@intel.com> --- MdePkg/Include/Guid/FileInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdePkg/Include/Guid/FileInfo.h b/MdePkg/Include/Guid/FileInfo.h index 2b7edf36aabc..dad547a847d3 100644 --- a/MdePkg/Include/Guid/FileInfo.h +++ b/MdePkg/Include/Guid/FileInfo.h @@ -46,7 +46,7 @@ typedef struct { /// UINT64 Attribute; /// - /// The Null-terminated name of the file. + /// The Null-terminated name of the file.For a root directory, the name is an empty string. /// CHAR16 FileName[1]; } EFI_FILE_INFO; -- 2.26.2.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#112838): https://edk2.groups.io/g/devel/message/112838 Mute This Topic: https://groups.io/mt/103314485/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=- ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [edk2-devel] 回复: [PATCH 1/1] MdePkg: Updated the definition of FileName on EFI_FILE_INFO 2023-12-22 6:40 ` [edk2-devel] [PATCH 1/1] MdePkg: Updated the definition of FileName on EFI_FILE_INFO SuqiangX Ren @ 2023-12-23 2:01 ` gaoliming via groups.io 2023-12-23 19:17 ` [edk2-devel] " Pedro Falcato 1 sibling, 0 replies; 4+ messages in thread From: gaoliming via groups.io @ 2023-12-23 2:01 UTC (permalink / raw) To: 'RenSuqiang', devel Cc: 'Michael D Kinney', 'Zhiguang Liu', 'Yi Li' Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> > -----邮件原件----- > 发件人: RenSuqiang <suqiangx.ren@intel.com> > 发送时间: 2023年12月22日 14:41 > 收件人: devel@edk2.groups.io > 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao > <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>; Yi Li > <yi1.li@intel.com> > 主题: [PATCH 1/1] MdePkg: Updated the definition of FileName on > EFI_FILE_INFO > > Add the description of FileName to align with UEFI spec 2.10. > > REF: UEFI spec 2.10 Table 13.5.16 > > Signed-off-by: RenSuqiang <suqiangx.ren@intel.com> > Cc: Michael D Kinney <michael.d.kinney@intel.com> > Cc: Liming Gao <gaoliming@byosoft.com.cn> > Cc: Zhiguang Liu <zhiguang.liu@intel.com> > Cc: Yi Li <yi1.li@intel.com> > --- > MdePkg/Include/Guid/FileInfo.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/MdePkg/Include/Guid/FileInfo.h > b/MdePkg/Include/Guid/FileInfo.h > index 2b7edf36aabc..dad547a847d3 100644 > --- a/MdePkg/Include/Guid/FileInfo.h > +++ b/MdePkg/Include/Guid/FileInfo.h > @@ -46,7 +46,7 @@ typedef struct { > /// > UINT64 Attribute; > /// > - /// The Null-terminated name of the file. > + /// The Null-terminated name of the file.For a root directory, the name is > an empty string. > /// > CHAR16 FileName[1]; > } EFI_FILE_INFO; > -- > 2.26.2.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#112854): https://edk2.groups.io/g/devel/message/112854 Mute This Topic: https://groups.io/mt/103329359/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=- ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [edk2-devel] [PATCH 1/1] MdePkg: Updated the definition of FileName on EFI_FILE_INFO 2023-12-22 6:40 ` [edk2-devel] [PATCH 1/1] MdePkg: Updated the definition of FileName on EFI_FILE_INFO SuqiangX Ren 2023-12-23 2:01 ` [edk2-devel] 回复: " gaoliming via groups.io @ 2023-12-23 19:17 ` Pedro Falcato 2023-12-26 5:28 ` Ren, Suqiang 1 sibling, 1 reply; 4+ messages in thread From: Pedro Falcato @ 2023-12-23 19:17 UTC (permalink / raw) To: devel, suqiangx.ren; +Cc: Michael D Kinney, Liming Gao, Zhiguang Liu, Yi Li On Fri, Dec 22, 2023 at 6:40 AM SuqiangX Ren <suqiangx.ren@intel.com> wrote: > > Add the description of FileName to align with UEFI spec 2.10. > > REF: UEFI spec 2.10 Table 13.5.16 > > Signed-off-by: RenSuqiang <suqiangx.ren@intel.com> > Cc: Michael D Kinney <michael.d.kinney@intel.com> > Cc: Liming Gao <gaoliming@byosoft.com.cn> > Cc: Zhiguang Liu <zhiguang.liu@intel.com> > Cc: Yi Li <yi1.li@intel.com> > --- > MdePkg/Include/Guid/FileInfo.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/MdePkg/Include/Guid/FileInfo.h b/MdePkg/Include/Guid/FileInfo.h > index 2b7edf36aabc..dad547a847d3 100644 > --- a/MdePkg/Include/Guid/FileInfo.h > +++ b/MdePkg/Include/Guid/FileInfo.h > @@ -46,7 +46,7 @@ typedef struct { > /// > UINT64 Attribute; > /// > - /// The Null-terminated name of the file. > + /// The Null-terminated name of the file.For a root directory, the name is an empty string. nit: add a space between '.' and 'For' -- Pedro -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#112858): https://edk2.groups.io/g/devel/message/112858 Mute This Topic: https://groups.io/mt/103314485/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=- ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [edk2-devel] [PATCH 1/1] MdePkg: Updated the definition of FileName on EFI_FILE_INFO 2023-12-23 19:17 ` [edk2-devel] " Pedro Falcato @ 2023-12-26 5:28 ` Ren, Suqiang 0 siblings, 0 replies; 4+ messages in thread From: Ren, Suqiang @ 2023-12-26 5:28 UTC (permalink / raw) To: devel@edk2.groups.io, pedro.falcato@gmail.com Cc: Kinney, Michael D, Gao, Liming, Liu, Zhiguang, Li, Yi1 Thanks for review, patch updated. Thanks Ren, Suqiang -----Original Message----- From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Pedro Falcato Sent: Sunday, December 24, 2023 3:18 AM To: devel@edk2.groups.io; Ren, SuqiangX <suqiangx.ren@intel.com> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Liu, Zhiguang <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com> Subject: Re: [edk2-devel] [PATCH 1/1] MdePkg: Updated the definition of FileName on EFI_FILE_INFO On Fri, Dec 22, 2023 at 6:40 AM SuqiangX Ren <suqiangx.ren@intel.com> wrote: > > Add the description of FileName to align with UEFI spec 2.10. > > REF: UEFI spec 2.10 Table 13.5.16 > > Signed-off-by: Suqiang Ren <suqiangx.ren@intel.com> > Cc: Michael D Kinney <michael.d.kinney@intel.com> > Cc: Liming Gao <gaoliming@byosoft.com.cn> > Cc: Zhiguang Liu <zhiguang.liu@intel.com> > Cc: Yi Li <yi1.li@intel.com> > --- > MdePkg/Include/Guid/FileInfo.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/MdePkg/Include/Guid/FileInfo.h > b/MdePkg/Include/Guid/FileInfo.h index 2b7edf36aabc..dad547a847d3 > 100644 > --- a/MdePkg/Include/Guid/FileInfo.h > +++ b/MdePkg/Include/Guid/FileInfo.h > @@ -46,7 +46,7 @@ typedef struct { > /// > UINT64 Attribute; > /// > - /// The Null-terminated name of the file. > + /// The Null-terminated name of the file.For a root directory, the name is an empty string. nit: add a space between '.' and 'For' -- Pedro -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#112907): https://edk2.groups.io/g/devel/message/112907 Mute This Topic: https://groups.io/mt/103314485/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=- ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-12-26 5:28 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <cover.1703227206.git.suqiangx.ren@intel.com> 2023-12-22 6:40 ` [edk2-devel] [PATCH 1/1] MdePkg: Updated the definition of FileName on EFI_FILE_INFO SuqiangX Ren 2023-12-23 2:01 ` [edk2-devel] 回复: " gaoliming via groups.io 2023-12-23 19:17 ` [edk2-devel] " Pedro Falcato 2023-12-26 5:28 ` Ren, Suqiang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox