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 <hao.a.wu@intel.com>
Reviewed-by: Feng Tian <feng.tian@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19453 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Hao Wu 2015-12-22 13:58:09 +00:00 committed by hwu1225
parent a717086c5f
commit c018a25762
1 changed files with 4 additions and 4 deletions

View File

@ -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