[PATCH v2 3/5] ntdll: Pass async parameter to add_fd_completion server call.

Jacek Caban jacek at codeweavers.com
Wed Feb 20 11:46:34 CST 2019


Hi Paul,

The patch looks mostly good for me.

On 2/20/19 6:33 PM, Paul Gofman wrote:
>   -    if (send_completion) NTDLL_AddCompletion( hFile, cvalue, status, total );
> -    if (async_read && (options & FILE_NO_INTERMEDIATE_BUFFERING) && status == STATUS_SUCCESS)
> -        return STATUS_PENDING;
> -    return status;
> +    ret_status = async_read && (options & FILE_NO_INTERMEDIATE_BUFFERING) && status == STATUS_SUCCESS
> +            ? STATUS_PENDING : status;
> +
> +    if (send_completion) NTDLL_AddCompletion( hFile, cvalue, status, total, ret_status == STATUS_PENDING );
> +    return ret_status;
>   }


Do you really need a separated ret_status variable? It seems that you 
could just set status to STATUS_PENDING instead.


>   
>   
> @@ -1089,7 +1090,7 @@ NTSTATUS WINAPI NtReadFileScatter( HANDLE file, HANDLE event, PIO_APC_ROUTINE ap
>       if (event) NtSetEvent( event, NULL );
>       if (apc) NtQueueApcThread( GetCurrentThread(), (PNTAPCFUNC)apc,
>                                  (ULONG_PTR)apc_user, (ULONG_PTR)io_status, 0 );
> -    if (send_completion) NTDLL_AddCompletion( file, cvalue, status, total );
> +    if (send_completion) NTDLL_AddCompletion( file, cvalue, status, total, TRUE );
>   
>       return STATUS_PENDING;
>   
> @@ -1408,7 +1409,7 @@ err:
>           if (status != STATUS_PENDING && hEvent) NtResetEvent( hEvent, NULL );
>       }
>   
> -    if (send_completion) NTDLL_AddCompletion( hFile, cvalue, status, total );
> +    if (send_completion) NTDLL_AddCompletion( hFile, cvalue, status, total, status == STATUS_PENDING );


Unless I'm missing, send_completion will never be set if status == 
STATUS_PENDING in this case, so you could just pass FALSE.


>   
>       return status;
>   }
> @@ -1500,7 +1501,7 @@ NTSTATUS WINAPI NtWriteFileGather( HANDLE file, HANDLE event, PIO_APC_ROUTINE ap
>           if (status != STATUS_PENDING && event) NtResetEvent( event, NULL );
>       }
>   
> -    if (send_completion) NTDLL_AddCompletion( file, cvalue, status, total );
> +    if (send_completion) NTDLL_AddCompletion( file, cvalue, status, total, status == STATUS_PENDING );
>   


Same as above.


Thanks,

Jacek

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-devel/attachments/20190220/866a74af/attachment.html>


More information about the wine-devel mailing list