From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Gleixner Subject: Re: RT/ext4/jbd2 circular dependency Date: Wed, 29 Oct 2014 21:31:33 +0100 (CET) Message-ID: References: <544156FE.7070905@windriver.com> <54415991.1070907@pavlinux.ru> <544940EF.7090907@windriver.com> <544E7144.4080809@windriver.com> <54513BDA.1050804@windriver.com> <54514B71.7000809@windriver.com> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: Austin Schuh , pavel@pavlinux.ru, "J. Bruce Fields" , linux-ext4@vger.kernel.org, tytso@mit.edu, adilger.kernel@dilger.ca, rt-users To: Chris Friesen Return-path: Received: from www.linutronix.de ([62.245.132.108]:58799 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755513AbaJ2Ubn (ORCPT ); Wed, 29 Oct 2014 16:31:43 -0400 In-Reply-To: <54514B71.7000809@windriver.com> Sender: linux-rt-users-owner@vger.kernel.org List-ID: On Wed, 29 Oct 2014, Chris Friesen wrote: > On 10/29/2014 01:26 PM, Thomas Gleixner wrote: > > On Wed, 29 Oct 2014, Chris Friesen wrote: > > > On 10/29/2014 12:05 PM, Thomas Gleixner wrote: > > > It seems plausible that the reason why page writeback never completes is > > > that > > > it's blocking trying to take inode->i_data_sem for reading, as seen in the > > > following stack trace (from a hung system): > > > > > > [] rt_down_read+0x2c/0x40 > > > [] ext4_map_blocks+0x41/0x270 > > > [] mpage_da_map_and_submit+0xac/0x4c0 > > > [] write_cache_pages_da+0x3f9/0x420 > > > [] ext4_da_writepages+0x340/0x720 > > > [] do_writepages+0x24/0x40 > > > [] writeback_single_inode+0x181/0x4b0 > > > [] writeback_sb_inodes+0x1b2/0x290 > > > [] __writeback_inodes_wb+0x9e/0xd0 > > > [] wb_writeback+0x223/0x3f0 > > > [] wb_check_old_data_flush+0x9f/0xb0 > > > [] wb_do_writeback+0x12f/0x250 > > > [] bdi_writeback_thread+0x94/0x320 > > > > Well, the point is that the JBD write out is not completed. The above > > is just the consequence. So really looking at ext4 inode write backs > > and something stuck on BJ_Shadow or the inode sem is the wrong > > place. It's all just caused by the JDB writeout not being completed > > for whatever reason. > > I'll willingly confess my ignorance of filesystem code before I started > looking at this issue. I was under the impression that the above stack trace > (for the "flush-147:3" task, in this case) was performing the write out of the > page that had been flagged for writeback by JBD...is that not the case? If > not, then could you point me in the right direction? jbd2_journal_commit_transaction journal_submit_data_buffers journal_submit_inode_data_buffers generic_writepages set_page_writeback(page) [PG_writeback] generic_writepages() is issuing the writeout to the block layer and the underlying physical device. journal_finish_inode_data_buffers filemap_fdatawait filemap_fdatawait_range wait_on_page_writeback(page) wait_on_page_bit(page, PG_writeback) <--stuck here That parts waits for the IO completion. And because that thing is stuck everything else gets stuck as well. Thanks, tglx