lkml.org 
[lkml]   [2007]   [Jan]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH, RFC] reimplement flush_workqueue()
On Mon, Dec 18, 2006 at 01:34:16AM +0300, Oleg Nesterov wrote:
> void fastcall flush_workqueue(struct workqueue_struct *wq)
> {
> - might_sleep();
> -
> + mutex_lock(&workqueue_mutex);
> if (is_single_threaded(wq)) {
> /* Always use first cpu's area. */
> - flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, singlethread_cpu),
> - -1);
> + flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, singlethread_cpu));
> } else {
> int cpu;
>
> - mutex_lock(&workqueue_mutex);
> for_each_online_cpu(cpu)


Can compiler optimizations lead to cpu_online_map being cached in a register
while running this loop? AFAICS cpu_online_map is not declared to be
volatile. If it can be cached, then we have the danger of invoking
flush_cpu_workqueue() on a dead cpu (because flush_cpu_workqueue drops
workqueue_mutex, cpu hp events can change cpu_online_map while we are in
flush_cpu_workqueue).

> - flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, cpu), cpu);
> - mutex_unlock(&workqueue_mutex);
> + flush_cpu_workqueue(per_cpu_ptr(wq->cpu_wq, cpu));


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

\
 
 \ /
  Last update: 2007-01-04 13:05    [W:0.231 / U:1.316 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site