From: Ruiyu Ni <ruiyu.ni@intel.com>
To: edk2-devel@lists.01.org
Subject: [PATCH] MdeModulePkg/DxeCore: Remove redundant code in Tpl.c
Date: Tue, 14 Nov 2017 10:47:25 +0800 [thread overview]
Message-ID: <20171114024725.82392-1-ruiyu.ni@intel.com> (raw)
(MdeModulePkg\Core\Dxe\Event\Tpl.c) line 120-122
-----------------------------------------------------------------
120 if (OldTpl >= TPL_HIGH_LEVEL && NewTpl < TPL_HIGH_LEVEL) {
121 gEfiCurrentTpl = TPL_HIGH_LEVEL;
122 }
-----------------------------------------------------------------
First, the newly assigned *gEfiCurrentTpl* is never used before next
re-assignment by the code that follows.
Second, The "OldTpl" comes from "gEfiCurrentTpl".
If "OldTpl >= TPL_HIGH_LEVEL" holds, the timer interrupt *must* have
been disabled according to the semantic of TPL_HIGH_LEVEL.
Since Uefi FW executes as single-threaded *strictly*, no other code
will possibly visit the "gEfiCurrentTpl".
So the 3 lines of code should be redundant.
Contributed-under: TianoCore Contribution Agreement 1.1
Suggested-by: Ming Shao <ming.shao@intel.com>
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
---
MdeModulePkg/Core/Dxe/Event/Tpl.c | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/MdeModulePkg/Core/Dxe/Event/Tpl.c b/MdeModulePkg/Core/Dxe/Event/Tpl.c
index e3caf832b8..5f60fd077f 100644
--- a/MdeModulePkg/Core/Dxe/Event/Tpl.c
+++ b/MdeModulePkg/Core/Dxe/Event/Tpl.c
@@ -113,15 +113,6 @@ CoreRestoreTpl (
ASSERT (VALID_TPL (NewTpl));
//
- // If lowering below HIGH_LEVEL, make sure
- // interrupts are enabled
- //
-
- if (OldTpl >= TPL_HIGH_LEVEL && NewTpl < TPL_HIGH_LEVEL) {
- gEfiCurrentTpl = TPL_HIGH_LEVEL;
- }
-
- //
// Dispatch any pending events
//
while (gEventPending != 0) {
@@ -131,6 +122,10 @@ CoreRestoreTpl (
}
gEfiCurrentTpl = PendingTpl;
+ //
+ // If lowering below HIGH_LEVEL, make sure
+ // interrupts are enabled
+ //
if (gEfiCurrentTpl < TPL_HIGH_LEVEL) {
CoreSetInterruptState (TRUE);
}
--
2.12.2.windows.2
reply other threads:[~2017-11-14 2:43 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20171114024725.82392-1-ruiyu.ni@intel.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