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:	Fri, 23 Jan 2015 10:07:31 -0800
From:	Jason Low <jason.low2@...com>
To:	Peter Zijlstra <peterz@...radead.org>
Cc:	Ingo Molnar <mingo@...nel.org>,
	"Paul E. McKenney" <paulmck@...ux.vnet.ibm.com>,
	Oleg Nesterov <oleg@...hat.com>,
	Mike Galbraith <umgwanakikbuti@...il.com>,
	Frederic Weisbecker <fweisbec@...il.com>,
	Scott J Norton <scott.norton@...com>,
	Chegu Vinod <chegu_vinod@...com>,
	Aswin Chandramouleeswaran <aswin@...com>,
	linux-kernel@...r.kernel.org, jason.low2@...com
Subject: Re: [RFC PATCH] sched, timer: Use atomics for thread_group_cputimer
 stats

On Fri, 2015-01-23 at 10:33 +0100, Peter Zijlstra wrote:
> > +		.running = ATOMIC_INIT(0),                              \
> > +	atomic_t running;
> > +		atomic_set(&sig->cputimer.running, 1);
> > @@ -174,7 +174,7 @@ static inline bool cputimer_running(struct task_struct *tsk)
> > +	if (!atomic_read(&cputimer->running))
> > +	if (!atomic_read(&cputimer->running)) {
> > +		atomic_set(&cputimer->running, 1);
> > +	if (atomic_read(&tsk->signal->cputimer.running))
> > +	atomic_set(&cputimer->running, 0);
> > +	if (atomic_read(&sig->cputimer.running)) {
> > +	if (atomic_read(&tsk->signal->cputimer.running))
> 
> That doesn't really need an atomic_t.

Yeah, I was wondering about that, and made it atomic since we had:

    raw_spin_lock_irqsave(&cputimer->lock, flags);
    cputimer->running = 0;
    raw_spin_unlock_irqrestore(&cputimer->lock, flags);

in stop_process_timers().

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ