From c018a257622401ce156e0d0daa28488475cdc3c0 Mon Sep 17 00:00:00 2001 From: Hao Wu Date: Tue, 22 Dec 2015 13:58:09 +0000 Subject: [PATCH] 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 Reviewed-by: Feng Tian git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19453 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Library/UefiScsiLib/UefiScsiLib.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MdePkg/Library/UefiScsiLib/UefiScsiLib.c b/MdePkg/Library/UefiScsiLib/UefiScsiLib.c index 0a08e4468e..d399e2344f 100644 --- a/MdePkg/Library/UefiScsiLib/UefiScsiLib.c +++ b/MdePkg/Library/UefiScsiLib/UefiScsiLib.c @@ -1485,7 +1485,7 @@ ScsiRead10CommandEx ( // Status = gBS->CreateEvent ( EVT_NOTIFY_SIGNAL, - TPL_CALLBACK, + TPL_NOTIFY, ScsiLibNotify, Context, &SelfEvent @@ -1669,7 +1669,7 @@ ScsiWrite10CommandEx ( // Status = gBS->CreateEvent ( EVT_NOTIFY_SIGNAL, - TPL_CALLBACK, + TPL_NOTIFY, ScsiLibNotify, Context, &SelfEvent @@ -1853,7 +1853,7 @@ ScsiRead16CommandEx ( // Status = gBS->CreateEvent ( EVT_NOTIFY_SIGNAL, - TPL_CALLBACK, + TPL_NOTIFY, ScsiLibNotify, Context, &SelfEvent @@ -2037,7 +2037,7 @@ ScsiWrite16CommandEx ( // Status = gBS->CreateEvent ( EVT_NOTIFY_SIGNAL, - TPL_CALLBACK, + TPL_NOTIFY, ScsiLibNotify, Context, &SelfEvent -- 2.39.2