File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 21
21
22
22
umf_memory_provider_ops_t * umfDevDaxMemoryProviderOps (void ) {
23
23
// not supported
24
+ LOG_ERR ("DevDax memory provider is disabled!" );
24
25
return NULL ;
25
26
}
26
27
@@ -30,12 +31,14 @@ umf_result_t umfDevDaxMemoryProviderParamsCreate(
30
31
(void )hParams ;
31
32
(void )path ;
32
33
(void )size ;
34
+ LOG_ERR ("DevDax memory provider is disabled!" );
33
35
return UMF_RESULT_ERROR_NOT_SUPPORTED ;
34
36
}
35
37
36
38
umf_result_t umfDevDaxMemoryProviderParamsDestroy (
37
39
umf_devdax_memory_provider_params_handle_t hParams ) {
38
40
(void )hParams ;
41
+ LOG_ERR ("DevDax memory provider is disabled!" );
39
42
return UMF_RESULT_ERROR_NOT_SUPPORTED ;
40
43
}
41
44
@@ -45,13 +48,15 @@ umf_result_t umfDevDaxMemoryProviderParamsSetDeviceDax(
45
48
(void )hParams ;
46
49
(void )path ;
47
50
(void )size ;
51
+ LOG_ERR ("DevDax memory provider is disabled!" );
48
52
return UMF_RESULT_ERROR_NOT_SUPPORTED ;
49
53
}
50
54
51
55
umf_result_t umfDevDaxMemoryProviderParamsSetProtection (
52
56
umf_devdax_memory_provider_params_handle_t hParams , unsigned protection ) {
53
57
(void )hParams ;
54
58
(void )protection ;
59
+ LOG_ERR ("DevDax memory provider is disabled!" );
55
60
return UMF_RESULT_ERROR_NOT_SUPPORTED ;
56
61
}
57
62
You can’t perform that action at this time.
0 commit comments