* [Patch 0/2] Fix the wrong Timer event check
@ 2016-10-28 6:34 Jiaxin Wu
2016-10-28 6:34 ` [Patch 1/2] MdeModulePkg: " Jiaxin Wu
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jiaxin Wu @ 2016-10-28 6:34 UTC (permalink / raw)
To: edk2-devel; +Cc: Ye Ting, Fu Siyuan, Zhang Lubo
Cc: Ye Ting <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Cc: Zhang Lubo <lubo.zhang@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com>
Jiaxin Wu (2):
MdeModulePkg: Fix the wrong Timer event check
NetworkPkg: Fix the wrong Timer event check
MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.c | 4 ++--
NetworkPkg/DnsDxe/DnsImpl.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
--
1.9.5.msysgit.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Patch 1/2] MdeModulePkg: Fix the wrong Timer event check
2016-10-28 6:34 [Patch 0/2] Fix the wrong Timer event check Jiaxin Wu
@ 2016-10-28 6:34 ` Jiaxin Wu
2016-10-28 6:34 ` [Patch 2/2] NetworkPkg: " Jiaxin Wu
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Jiaxin Wu @ 2016-10-28 6:34 UTC (permalink / raw)
To: edk2-devel; +Cc: Ye Ting, Fu Siyuan, Zhang Lubo
Cc: Ye Ting <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Cc: Zhang Lubo <lubo.zhang@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com>
---
MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.c b/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.c
index 7ed2e52..f2e17bb 100644
--- a/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.c
+++ b/MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.c
@@ -1,10 +1,10 @@
/** @file
Interface routine for Mtftp4.
(C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR>
-Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php<BR>
@@ -256,11 +256,11 @@ Mtftp4GetMapping (
);
if (EFI_ERROR (Status)) {
return FALSE;
}
- while (!EFI_ERROR (gBS->CheckEvent (Service->TimerToGetMap))) {
+ while (EFI_ERROR (gBS->CheckEvent (Service->TimerToGetMap))) {
Udp->Poll (Udp);
if (!EFI_ERROR (Udp->GetModeData (Udp, NULL, &Ip4Mode, NULL, NULL)) &&
Ip4Mode.IsConfigured) {
--
1.9.5.msysgit.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Patch 2/2] NetworkPkg: Fix the wrong Timer event check
2016-10-28 6:34 [Patch 0/2] Fix the wrong Timer event check Jiaxin Wu
2016-10-28 6:34 ` [Patch 1/2] MdeModulePkg: " Jiaxin Wu
@ 2016-10-28 6:34 ` Jiaxin Wu
2016-10-28 7:46 ` [Patch 0/2] " Ye, Ting
2016-10-28 7:48 ` Fu, Siyuan
3 siblings, 0 replies; 5+ messages in thread
From: Jiaxin Wu @ 2016-10-28 6:34 UTC (permalink / raw)
To: edk2-devel; +Cc: Ye Ting, Fu Siyuan, Zhang Lubo
Cc: Ye Ting <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Cc: Zhang Lubo <lubo.zhang@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com>
---
NetworkPkg/DnsDxe/DnsImpl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/NetworkPkg/DnsDxe/DnsImpl.c b/NetworkPkg/DnsDxe/DnsImpl.c
index 3f3b756..74deaa4 100644
--- a/NetworkPkg/DnsDxe/DnsImpl.c
+++ b/NetworkPkg/DnsDxe/DnsImpl.c
@@ -563,11 +563,11 @@ Dns4GetMapping (
);
if (EFI_ERROR (Status)) {
return FALSE;
}
- while (!EFI_ERROR (gBS->CheckEvent (Service->TimerToGetMap))) {
+ while (EFI_ERROR (gBS->CheckEvent (Service->TimerToGetMap))) {
Udp->Poll (Udp);
if (!EFI_ERROR (Udp->GetModeData (Udp, NULL, &Ip4Mode, NULL, NULL)) &&
Ip4Mode.IsConfigured) {
@@ -613,11 +613,11 @@ Dns6GetMapping (
);
if (EFI_ERROR (Status)) {
return FALSE;
}
- while (!EFI_ERROR (gBS->CheckEvent (Service->TimerToGetMap))) {
+ while (EFI_ERROR (gBS->CheckEvent (Service->TimerToGetMap))) {
Udp->Poll (Udp);
if (!EFI_ERROR (Udp->GetModeData (Udp, NULL, &Ip6Mode, NULL, NULL))) {
if (Ip6Mode.AddressList != NULL) {
FreePool (Ip6Mode.AddressList);
--
1.9.5.msysgit.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Patch 0/2] Fix the wrong Timer event check
2016-10-28 6:34 [Patch 0/2] Fix the wrong Timer event check Jiaxin Wu
2016-10-28 6:34 ` [Patch 1/2] MdeModulePkg: " Jiaxin Wu
2016-10-28 6:34 ` [Patch 2/2] NetworkPkg: " Jiaxin Wu
@ 2016-10-28 7:46 ` Ye, Ting
2016-10-28 7:48 ` Fu, Siyuan
3 siblings, 0 replies; 5+ messages in thread
From: Ye, Ting @ 2016-10-28 7:46 UTC (permalink / raw)
To: Wu, Jiaxin, edk2-devel@lists.01.org; +Cc: Fu, Siyuan, Zhang, Lubo
Series Reviewed-by: Ye Ting <ting.ye@intel.com>
-----Original Message-----
From: Wu, Jiaxin
Sent: Friday, October 28, 2016 2:34 PM
To: edk2-devel@lists.01.org
Cc: Ye, Ting <ting.ye@intel.com>; Fu, Siyuan <siyuan.fu@intel.com>; Zhang, Lubo <lubo.zhang@intel.com>
Subject: [Patch 0/2] Fix the wrong Timer event check
Cc: Ye Ting <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
Cc: Zhang Lubo <lubo.zhang@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com>
Jiaxin Wu (2):
MdeModulePkg: Fix the wrong Timer event check
NetworkPkg: Fix the wrong Timer event check
MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.c | 4 ++--
NetworkPkg/DnsDxe/DnsImpl.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
--
1.9.5.msysgit.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Patch 0/2] Fix the wrong Timer event check
2016-10-28 6:34 [Patch 0/2] Fix the wrong Timer event check Jiaxin Wu
` (2 preceding siblings ...)
2016-10-28 7:46 ` [Patch 0/2] " Ye, Ting
@ 2016-10-28 7:48 ` Fu, Siyuan
3 siblings, 0 replies; 5+ messages in thread
From: Fu, Siyuan @ 2016-10-28 7:48 UTC (permalink / raw)
To: Wu, Jiaxin, edk2-devel@lists.01.org; +Cc: Ye, Ting, Zhang, Lubo
Reviewed-by: Fu Siyuan siyuan.fu@intel.com
> -----Original Message-----
> From: Wu, Jiaxin
> Sent: Friday, October 28, 2016 2:34 PM
> To: edk2-devel@lists.01.org
> Cc: Ye, Ting <ting.ye@intel.com>; Fu, Siyuan <siyuan.fu@intel.com>; Zhang,
> Lubo <lubo.zhang@intel.com>
> Subject: [Patch 0/2] Fix the wrong Timer event check
>
> Cc: Ye Ting <ting.ye@intel.com>
> Cc: Fu Siyuan <siyuan.fu@intel.com>
> Cc: Zhang Lubo <lubo.zhang@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Jiaxin Wu <jiaxin.wu@intel.com>
>
> Jiaxin Wu (2):
> MdeModulePkg: Fix the wrong Timer event check
> NetworkPkg: Fix the wrong Timer event check
>
> MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Impl.c | 4 ++--
> NetworkPkg/DnsDxe/DnsImpl.c | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> --
> 1.9.5.msysgit.1
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-10-28 7:48 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-28 6:34 [Patch 0/2] Fix the wrong Timer event check Jiaxin Wu
2016-10-28 6:34 ` [Patch 1/2] MdeModulePkg: " Jiaxin Wu
2016-10-28 6:34 ` [Patch 2/2] NetworkPkg: " Jiaxin Wu
2016-10-28 7:46 ` [Patch 0/2] " Ye, Ting
2016-10-28 7:48 ` Fu, Siyuan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox