|
@@ -121,11 +121,12 @@ static inline int fastcall mutex_is_locked(struct mutex *lock)
|
|
* Also see Documentation/mutex-design.txt.
|
|
* Also see Documentation/mutex-design.txt.
|
|
*/
|
|
*/
|
|
extern void fastcall mutex_lock(struct mutex *lock);
|
|
extern void fastcall mutex_lock(struct mutex *lock);
|
|
-extern int fastcall mutex_lock_interruptible(struct mutex *lock);
|
|
|
|
|
|
+extern int __must_check fastcall mutex_lock_interruptible(struct mutex *lock);
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_LOCK_ALLOC
|
|
#ifdef CONFIG_DEBUG_LOCK_ALLOC
|
|
extern void mutex_lock_nested(struct mutex *lock, unsigned int subclass);
|
|
extern void mutex_lock_nested(struct mutex *lock, unsigned int subclass);
|
|
-extern int mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass);
|
|
|
|
|
|
+extern int __must_check mutex_lock_interruptible_nested(struct mutex *lock,
|
|
|
|
+ unsigned int subclass);
|
|
#else
|
|
#else
|
|
# define mutex_lock_nested(lock, subclass) mutex_lock(lock)
|
|
# define mutex_lock_nested(lock, subclass) mutex_lock(lock)
|
|
# define mutex_lock_interruptible_nested(lock, subclass) mutex_lock_interruptible(lock)
|
|
# define mutex_lock_interruptible_nested(lock, subclass) mutex_lock_interruptible(lock)
|