diff options
| author | 2021-01-20 11:32:07 +0100 | |
|---|---|---|
| committer | 2021-01-26 15:10:58 +0100 | |
| commit | 2156ac1934166d6deb6cd0f6ffc4c1076ec63697 (patch) | |
| tree | 386a57a779e78fdb2e402ef5d9f5835bcef69bd8 /kernel/locking/rtmutex.c | |
| parent | futex: Provide and use pi_state_update_owner() (diff) | |
| download | linux-dev-2156ac1934166d6deb6cd0f6ffc4c1076ec63697.tar.xz linux-dev-2156ac1934166d6deb6cd0f6ffc4c1076ec63697.zip | |
rtmutex: Remove unused argument from rt_mutex_proxy_unlock()
Nothing uses the argument. Remove it as preparation to use
pi_state_update_owner().
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: stable@vger.kernel.org
Diffstat (limited to 'kernel/locking/rtmutex.c')
| -rw-r--r-- | kernel/locking/rtmutex.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/locking/rtmutex.c b/kernel/locking/rtmutex.c index cfdd5b93264d..2f8cd616d3b2 100644 --- a/kernel/locking/rtmutex.c +++ b/kernel/locking/rtmutex.c @@ -1716,8 +1716,7 @@ void rt_mutex_init_proxy_locked(struct rt_mutex *lock, * possible because it belongs to the pi_state which is about to be freed * and it is not longer visible to other tasks. */ -void rt_mutex_proxy_unlock(struct rt_mutex *lock, - struct task_struct *proxy_owner) +void rt_mutex_proxy_unlock(struct rt_mutex *lock) { debug_rt_mutex_proxy_unlock(lock); rt_mutex_set_owner(lock, NULL); |
