[making] making asynch io printout optional
This commit is contained in:
parent
3b8d469b61
commit
896639df69
1 changed files with 4 additions and 0 deletions
|
|
@ -5798,7 +5798,9 @@ NTSTATUS nfs41_Read(
|
|||
if (status) goto out;
|
||||
|
||||
if (async) {
|
||||
#ifdef DEBUG_READ
|
||||
DbgP("This is asynchronous read, returning control back to the user\n");
|
||||
#endif
|
||||
status = STATUS_PENDING;
|
||||
goto out;
|
||||
}
|
||||
|
|
@ -5915,7 +5917,9 @@ NTSTATUS nfs41_Write(
|
|||
if (status) goto out;
|
||||
|
||||
if (async) {
|
||||
#ifdef DEBUG_WRITE
|
||||
DbgP("This is asynchronous write, returning control back to the user\n");
|
||||
#endif
|
||||
status = STATUS_PENDING;
|
||||
goto out;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue