From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755348Ab1ACOym (ORCPT ); Mon, 3 Jan 2011 09:54:42 -0500 Received: from casper.infradead.org ([85.118.1.10]:45430 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755127Ab1ACOyk convert rfc822-to-8bit (ORCPT ); Mon, 3 Jan 2011 09:54:40 -0500 Subject: Re: [PATCH UPDATED] workqueue: relax lockdep annotation on flush_work() From: Peter Zijlstra To: Tejun Heo Cc: Ingo Molnar , "Rafael J. Wysocki" , linux-kernel@vger.kernel.org In-Reply-To: <20110103141735.GQ18831@htj.dyndns.org> References: <20101229125711.GL488@htj.dyndns.org> <1294047091.2016.38.camel@laptop> <20110103141735.GQ18831@htj.dyndns.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT Date: Mon, 03 Jan 2011 15:54:50 +0100 Message-ID: <1294066490.2016.81.camel@laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2011-01-03 at 15:17 +0100, Tejun Heo wrote: > @@ -2384,8 +2384,18 @@ static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr, > insert_wq_barrier(cwq, barr, work, worker); > spin_unlock_irq(&gcwq->lock); > > - lock_map_acquire(&cwq->wq->lockdep_map); > + /* > + * If @max_active is 1 or rescuer is in use, flushing another work > + * item on the same workqueue may lead to deadlock. Make sure the > + * flusher is not running on the same workqueue by verifying write > + * access. > + */ > + if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER) > + lock_map_acquire(&cwq->wq->lockdep_map); > + else > + lock_map_acquire_read(&cwq->wq->lockdep_map); > lock_map_release(&cwq->wq->lockdep_map); > + > return true; > already_gone: > spin_unlock_irq(&gcwq->lock); Ah, but this violates the rule that you must always use the most strict constraints. Code doesn't know if it will run in a rescue thread or not, hence it must assume it does.