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, 26 Sep 2017 17:03:11 +0200
From:   Peter Zijlstra <peterz@...radead.org>
To:     Anna-Maria Gleixner <anna-maria@...utronix.de>
Cc:     LKML <linux-kernel@...r.kernel.org>,
        Ingo Molnar <mingo@...hat.com>,
        Christoph Hellwig <hch@....org>, keescook@...omium.org,
        John Stultz <john.stultz@...aro.org>,
        Thomas Gleixner <tglx@...utronix.de>
Subject: Re: [PATCH 17/25] hrtimer: Implementation of softirq hrtimer handling

On Thu, Aug 31, 2017 at 12:23:42PM -0000, Anna-Maria Gleixner wrote:
>  static void __run_hrtimer(struct hrtimer_cpu_base *cpu_base,
>  			  struct hrtimer_clock_base *base,
> -			  struct hrtimer *timer, ktime_t *now)
> +			  struct hrtimer *timer, ktime_t *now,
> +			  bool hardirq)
>  {
>  	enum hrtimer_restart (*fn)(struct hrtimer *);
>  	int restart;
> @@ -1241,11 +1298,19 @@ static void __run_hrtimer(struct hrtimer
>  	 * protected against migration to a different CPU even if the lock
>  	 * is dropped.
>  	 */
> -	raw_spin_unlock(&cpu_base->lock);
> +	if (hardirq)
> +		raw_spin_unlock(&cpu_base->lock);
> +	else
> +		raw_spin_unlock_irq(&cpu_base->lock);
> +
>  	trace_hrtimer_expire_entry(timer, now);
>  	restart = fn(timer);
>  	trace_hrtimer_expire_exit(timer);
> -	raw_spin_lock(&cpu_base->lock);
> +
> +	if (hardirq)
> +		raw_spin_lock(&cpu_base->lock);
> +	else
> +		raw_spin_lock_irq(&cpu_base->lock);
>  

That's just nasty...

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ