Commit 8792207a authored by Vasil Dimov's avatar Vasil Dimov

Followup to vasil.dimov@oracle.com-20100504104629-0ovtc5lae2ghn7he :

Add the missing parameter to mutex_create().
parent 7ee30ba8
...@@ -685,7 +685,8 @@ dict_init(void) ...@@ -685,7 +685,8 @@ dict_init(void)
&dict_foreign_err_mutex, SYNC_ANY_LATCH); &dict_foreign_err_mutex, SYNC_ANY_LATCH);
for (i = 0; i < DICT_INDEX_STAT_MUTEX_SIZE; i++) { for (i = 0; i < DICT_INDEX_STAT_MUTEX_SIZE; i++) {
mutex_create(&dict_index_stat_mutex[i], SYNC_INDEX_TREE); mutex_create(PFS_NOT_INSTRUMENTED,
&dict_index_stat_mutex[i], SYNC_INDEX_TREE);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment