Revision: 19453
          http://sourceforge.net/p/edk2/code/19453
Author:   hwu1225
Date:     2015-12-22 13:58:09 +0000 (Tue, 22 Dec 2015)
Log Message:
-----------
MdePkg UefiScsiLib: Raise the Tpl of async IO callback to TPL_NOTIFY

Raise the Tpl of async SCSI I/O callback function to TPL_NOTIFY to match
the behavior in ScsiDiskDxe driver.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hao Wu <[email protected]>
Reviewed-by: Feng Tian <[email protected]>

Modified Paths:
--------------
    trunk/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.c

Modified: trunk/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.c
===================================================================
--- trunk/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.c 2015-12-22 13:57:42 UTC 
(rev 19452)
+++ trunk/edk2/MdePkg/Library/UefiScsiLib/UefiScsiLib.c 2015-12-22 13:58:09 UTC 
(rev 19453)
@@ -1485,7 +1485,7 @@
   //
   Status = gBS->CreateEvent (
                   EVT_NOTIFY_SIGNAL,
-                  TPL_CALLBACK,
+                  TPL_NOTIFY,
                   ScsiLibNotify,
                   Context,
                   &SelfEvent
@@ -1669,7 +1669,7 @@
   //
   Status = gBS->CreateEvent (
                   EVT_NOTIFY_SIGNAL,
-                  TPL_CALLBACK,
+                  TPL_NOTIFY,
                   ScsiLibNotify,
                   Context,
                   &SelfEvent
@@ -1853,7 +1853,7 @@
   //
   Status = gBS->CreateEvent (
                   EVT_NOTIFY_SIGNAL,
-                  TPL_CALLBACK,
+                  TPL_NOTIFY,
                   ScsiLibNotify,
                   Context,
                   &SelfEvent
@@ -2037,7 +2037,7 @@
   //
   Status = gBS->CreateEvent (
                   EVT_NOTIFY_SIGNAL,
-                  TPL_CALLBACK,
+                  TPL_NOTIFY,
                   ScsiLibNotify,
                   Context,
                   &SelfEvent


------------------------------------------------------------------------------
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to