diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2021-01-20 11:32:07 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2021-01-26 15:10:58 +0100 |
commit | 2156ac1934166d6deb6cd0f6ffc4c1076ec63697 (patch) | |
tree | 386a57a779e78fdb2e402ef5d9f5835bcef69bd8 /kernel/futex.c | |
parent | futex: Provide and use pi_state_update_owner() (diff) | |
download | linux-2156ac1934166d6deb6cd0f6ffc4c1076ec63697.tar.xz linux-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/futex.c')
-rw-r--r-- | kernel/futex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/futex.c b/kernel/futex.c index 7837f9e561fa..cfca221c1bc5 100644 --- a/kernel/futex.c +++ b/kernel/futex.c @@ -818,7 +818,7 @@ static void put_pi_state(struct futex_pi_state *pi_state) list_del_init(&pi_state->list); raw_spin_unlock(&owner->pi_lock); } - rt_mutex_proxy_unlock(&pi_state->pi_mutex, owner); + rt_mutex_proxy_unlock(&pi_state->pi_mutex); raw_spin_unlock_irqrestore(&pi_state->pi_mutex.wait_lock, flags); } |