Archive for the ‘Tuning’ Category

Meaning of the 'sysctl.max_lock_depth'

This tunable limits the amount of deadlock-checking the kernel will do. The default value is 1024. You can see those codes in the following snippet. 146/* 147 * Max number of times we’ll walk the boosting chain: 148 */ 149int max_lock_depth = 1024; 150 151/* 152 * Adjust the priority chain. Also used for deadlock [...]