lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 24 May 2016 12:21:26 +0200
From:	Peter Zijlstra <peterz@...radead.org>
To:	Davidlohr Bueso <dave@...olabs.net>
Cc:	mingo@...nel.org, Waiman.Long@....com,
	linux-kernel@...r.kernel.org, Davidlohr Bueso <dbueso@...e.de>
Subject: Re: [PATCH] spinlock: Get rid of spin_can_lock()

On Mon, May 23, 2016 at 06:54:02AM -0700, Davidlohr Bueso wrote:
> ... it has no users and we already have the the regular spin_is_lock()
> call anyway -- although iirc this was going to be different
> than the simple negation for lock elision implementations. Lets drop it.
> 
> Signed-off-by: Davidlohr Bueso <dbueso@...e.de>
> ---
>  include/linux/spinlock.h | 11 -----------
>  1 file changed, 11 deletions(-)
> 
> diff --git a/include/linux/spinlock.h b/include/linux/spinlock.h
> index 47dd0cebd204..047c6f6c3268 100644
> --- a/include/linux/spinlock.h
> +++ b/include/linux/spinlock.h
> @@ -264,12 +264,6 @@ static inline void do_raw_spin_unlock(raw_spinlock_t *lock) __releases(lock)
>  	1 : ({ local_irq_restore(flags); 0; }); \
>  })
>  
> -/**
> - * raw_spin_can_lock - would raw_spin_trylock() succeed?
> - * @lock: the spinlock in question.
> - */
> -#define raw_spin_can_lock(lock)	(!raw_spin_is_locked(lock))

Its also complete crack; there's absolutely no guarantee the trylock
would still succeed the instruction after we do this.

The only way to test if the trylock would work is actually doing it.

So yeah, queued and killed.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ