From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Rafael J. Wysocki" Subject: Re: lockdep report in hibernate code Date: Tue, 23 Oct 2007 23:39:08 +0200 Message-ID: <200710232339.08968.rjw@sisk.pl> References: <1193062264.9793.11.camel@johannes.berg> <200710230039.30224.rjw@sisk.pl> <1193135694.9793.67.camel@johannes.berg> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1193135694.9793.67.camel@johannes.berg> Content-Disposition: inline List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-pm-bounces@lists.linux-foundation.org Errors-To: linux-pm-bounces@lists.linux-foundation.org To: Johannes Berg Cc: linux-pm List-Id: linux-pm@vger.kernel.org On Tuesday, 23 October 2007 12:34, Johannes Berg wrote: > On Tue, 2007-10-23 at 00:39 +0200, Rafael J. Wysocki wrote: > > > > Oct 22 15:37:59 quad kernel: [ 362.782679] [ INFO: possible circular locking dependency detected ] > > > Oct 22 15:37:59 quad kernel: [ 362.782687] 2.6.23-g55b70a03-dirty #268 > > > Oct 22 15:37:59 quad kernel: [ 362.782696] ------------------------------------------------------- > > > Oct 22 15:37:59 quad kernel: [ 362.782704] pm-hibernate/4231 is trying to acquire lock: > > > Oct 22 15:37:59 quad kernel: [ 362.782710] (pm_mutex){--..}, at: [] .disk_store+0x70/0x17c > > > Oct 22 15:37:59 quad kernel: [ 362.782742] > > > Oct 22 15:37:59 quad kernel: [ 362.782744] but task is already holding lock: > > > Oct 22 15:37:59 quad kernel: [ 362.782751] (&buffer->mutex){--..}, at: [] .sysfs_write_file+0x58/0x19c > > > Oct 22 15:37:59 quad kernel: [ 362.782771] > > > Oct 22 15:37:59 quad kernel: [ 362.782773] which lock already depends on the new lock. > > > > That's strange and almost certainly not true. > > Uh, are you saying lockdep got it wrong? Hard to imagine. See, it tells > you: > > > Oct 22 15:37:59 quad kernel: [ 362.782783] the existing dependency chain (in reverse order) is: > > Oct 22 15:37:59 quad kernel: [ 362.782795] > > Oct 22 15:37:59 quad kernel: [ 362.782797] -> #1 (&buffer->mutex){--..}: > > Oct 22 15:37:59 quad kernel: [ 362.782831] [] .__lock_acquire+0xcf0/0xf60 > > Oct 22 15:37:59 quad kernel: [ 362.782910] [] .lock_acquire+0xd0/0x11c > > Oct 22 15:37:59 quad kernel: [ 362.782982] [] .mutex_lock_nested+0x150/0x3e8 > > Oct 22 15:37:59 quad kernel: [ 362.783061] [] .sysfs_read_file+0x58/0x1a0 > > Oct 22 15:37:59 quad kernel: [ 362.783137] [] .vfs_read+0xd8/0x1b0 > > Oct 22 15:37:59 quad kernel: [ 362.783211] [] .sys_read+0x5c/0xac > > Oct 22 15:37:59 quad kernel: [ 362.783285] [] .try_name+0x88/0x260 > > Oct 22 15:37:59 quad kernel: [ 362.783362] [] .name_to_dev_t+0x244/0x2e8 > > Oct 22 15:37:59 quad kernel: [ 362.783439] [] .software_resume+0x7c/0x200 > > Oct 22 15:37:59 quad kernel: [ 362.783516] [] .kernel_init+0x214/0x3e8 > > Oct 22 15:37:59 quad kernel: [ 362.783588] [] .kernel_thread+0x4c/0x68 > > Oct 22 15:37:59 quad kernel: [ 362.783623] > > So let's look through the code. > > software_resume() does: > > 459 mutex_lock(&pm_mutex); > [...] > 465 swsusp_resume_device = name_to_dev_t(resume_file); > > which, according to the trace above takes a buffer mutex. This can be > verified easily, I haven't bothered. > > The problem here is that the buffer mutexes are not distinguishable. I don't quite get the "which lock already depends on the new lock" part. Well, I have always had problems with understanding what lockdep actually traces ...