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] [day] [month] [year] [list]
Date:	Tue, 28 Jun 2011 15:16:54 -0300
From:	"Gustavo F. Padovan" <padovan@...fusion.mobi>
To:	Tejun Heo <tj@...nel.org>
Cc:	linux-kernel@...r.kernel.org, marcel@...tmann.org,
	a.p.zijlstra@...llo.nl, akpm@...ux-foundation.org
Subject: Re: [RFC 1/1] workqueue: Add mod_delayed_work()

Hi Tejun,

* Tejun Heo <tj@...nel.org> [2011-06-25 13:43:31 +0200]:

> Hello,
> 
> On Fri, Jun 24, 2011 at 07:27:37PM -0300, Gustavo F. Padovan wrote:
> > mod_delayed_work() updates a timer if the work is pending otherwise calls
> > queue_delayed_work_on() to queue the work with the specified delay.
> > 
> > Call cancel_delayed_work_sync() and then queue_delayed_work() again to
> > change a timer's delays is too expensive (and requires process context).
> > Istead we call mod_delayed_work() to only modify the timer's timeout.
> 
> Yes, this part of the interface is lacking.  It might be best to
> modify queue_delayed_work() to adjust the timer according to the new
> timeout but we would need to audit the current users to make sure
> nothing breaks and I agree introducing a new function probably makes
> sense.
> 
> > +int mod_delayed_work(struct workqueue_struct *wq,
> > +			struct delayed_work *dwork, unsigned long delay)
> > +{
> > +	struct timer_list *timer = &dwork->timer;
> > +	struct work_struct *work = &dwork->work;
> > +
> > +	if (!test_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(work)))
> > +		return queue_delayed_work_on(-1, wq, dwork, delay);
> > +
> > +	BUG_ON(!timer_pending(timer));
> > +
> > +	mod_timer(timer, jiffies + delay);
> > +
> > +	return 0;
> > +}
> 
> But I think the current implementation is as it is because modifying
> delayed work safely wasn't very simple.  The above code is broken in
> multiple ways - a delayed work could be pending without timer pending,
> and timer may expire after test_bit() but before the rest of the code.
> 
> I haven't thought about it too hard but think it would require the
> timer sync part of __cancel_work_timer() (sans wait_on_work()) to get
> it correctly.  Care to delve into it?

Sure, I can do that. I'm kind of stuck in the Bluetooth changes I need to do
due to this workqueue patch. I'll send a -v2 soon.

	Gustavo
--
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