commit | f43e660d440ccf58af6b97fc8f1290d81452198a | [log] [tgz] |
---|---|---|
author | Bradley Bolen <bradleybolen@gmail.com> | Wed Apr 04 12:42:16 2018 -0400 |
committer | Heiko Schocher <hs@denx.de> | Wed Apr 11 11:27:07 2018 +0200 |
tree | ce2619221e4b8a03e65ed93a86b9e9b38ce0440b | |
parent | 9ab1c4f1da4db87be8953a131e7223617f9f3142 [diff] |
ubifs: Change value of mutex_is_locked() The mutex lock and unlock functions are stubbed out and mutex_is_locked was 0. This caused asserts to fail in ubifs code when checking that the mutex was locked. For example, UBIFS assert failed in ubifs_change_lp at 540 UBIFS assert failed in ubifs_release_lprops at 278 Assume that the "mutex" is locked since that is the normal case when it is checked in the ubifs code. Signed-off-by: Bradley Bolen <bradleybolen@gmail.com>