@@ -710,17 +710,17 @@ static umf_result_t file_open_ipc_handle(void *provider, void *providerIpcData,
710
710
(void )utils_close_fd (fd );
711
711
if (addr == NULL ) {
712
712
file_store_last_native_error (UMF_FILE_RESULT_ERROR_ALLOC_FAILED , errno );
713
- LOG_PERR ("file mapping failed (path: %s, size: %zu, protection: %i , "
714
- "fd: %i, offset: %zu)" ,
713
+ LOG_PERR ("file mapping failed (path: %s, size: %zu, protection: %u , "
714
+ "visibility: %u, fd: %i, offset: %zu)" ,
715
715
file_ipc_data -> path , size_aligned , file_ipc_data -> protection ,
716
- fd , offset_aligned );
716
+ file_ipc_data -> visibility , fd , offset_aligned );
717
717
return UMF_RESULT_ERROR_MEMORY_PROVIDER_SPECIFIC ;
718
718
}
719
719
720
- LOG_DEBUG ("file mapped (path: %s, size: %zu, protection: %i, fd: %i, "
721
- "offset: %zu) at address %p" ,
722
- file_ipc_data -> path , size_aligned , file_ipc_data -> protection , fd ,
723
- offset_aligned , addr );
720
+ LOG_DEBUG ("file mapped (path: %s, size: %zu, protection: %u, visibility: "
721
+ "%u, fd: %i, offset: %zu) at address %p" ,
722
+ file_ipc_data -> path , size_aligned , file_ipc_data -> protection ,
723
+ file_ipc_data -> visibility , fd , offset_aligned , addr );
724
724
725
725
* ptr = addr ;
726
726
0 commit comments