From 896639df69557341ee1c9bdd712145061687440c Mon Sep 17 00:00:00 2001 From: Olga Kornievskaia Date: Wed, 16 May 2012 14:46:10 -0400 Subject: [PATCH] [making] making asynch io printout optional --- sys/nfs41_driver.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/nfs41_driver.c b/sys/nfs41_driver.c index 3e609a1..e843ee9 100644 --- a/sys/nfs41_driver.c +++ b/sys/nfs41_driver.c @@ -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; }