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