From: Jan Kara <jack@suse.cz>
To: Eric Whitney <enwlinux@gmail.com>
Cc: linux-ext4@vger.kernel.org
Subject: Re: new kernel warning when running xfstest ext4/271 on 3.12
Date: Tue, 15 Oct 2013 15:26:05 +0200 [thread overview]
Message-ID: <20131015132605.GE12428@quack.suse.cz> (raw)
In-Reply-To: <20131014021606.GA31336@wallace>
[-- Attachment #1: Type: text/plain, Size: 4323 bytes --]
On Sun 13-10-13 22:16:06, Eric Whitney wrote:
> Since 3.12-rc1, I've noticed a new warning message in my kernel logs when
> running ext4 regression tests with xfstests on both my x86-64 (KVM guest) and
> ARM (Pandaboard ES) SUTs. (I'm using xfstests-bld to run xfstests.) It
> remains visible in 3.12-rc4.
>
> The warning appears when running ext4/271 after mounting the test file system
> with the dioread_nolock option.
>
> After running ext4/271, the kernel log contains the following trace repeated
> 21 times, apparently once for each write performed by dd in the test:
Attached patch should fix this.
Honza
>
> EXT4-fs (vdc): mounted filesystem without journal. Opts: dioread_nolock,noload
> ------------[ cut here ]------------
> WARNING: CPU: 1 PID: 1366 at fs/ext4/page-io.c:205 ext4_put_io_end_defer+0xf5/0x100()
> Modules linked in: snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_timer psmouse serio_raw snd soundcore virtio_balloon snd_page_alloc i2c_piix4 mac_hid lp parport floppy
> CPU: 1 PID: 1366 Comm: dd Not tainted 3.12.0-rc4-ext4testing+ #1
> Hardware name: Bochs Bochs, BIOS Bochs 01/01/2011
> 0000000000000009 ffff88003fd03d10 ffffffff816e3b66 0000000000000000
> ffff88003fd03d48 ffffffff8104eb4c ffff88003d1a1168 ffff88003d209c10
> 0000000000000000 0000000000001000 ffff88003bb57490 ffff88003fd03d58
> Call Trace:
> <IRQ> [<ffffffff816e3b66>] dump_stack+0x45/0x56
> [<ffffffff8104eb4c>] warn_slowpath_common+0x8c/0xc0
> [<ffffffff8104eb9a>] warn_slowpath_null+0x1a/0x20
> [<ffffffff81245df5>] ext4_put_io_end_defer+0xf5/0x100
> [<ffffffff81245ec6>] ext4_end_bio+0xc6/0xe0
> [<ffffffff811d206d>] bio_endio+0x1d/0x30
> [<ffffffff8133313a>] blk_update_request+0xba/0x450
> [<ffffffff813333e0>] ? blk_update_request+0x360/0x450
> [<ffffffff813334f7>] blk_update_bidi_request+0x27/0xa0
> [<ffffffff81336720>] __blk_end_bidi_request+0x20/0x50
> [<ffffffff8133676f>] __blk_end_request_all+0x1f/0x30
> [<ffffffff81480a20>] virtblk_done+0x100/0x260
> [<ffffffff81412b11>] vring_interrupt+0x31/0x50
> [<ffffffff810a6394>] handle_irq_event_percpu+0x54/0x1f0
> [<ffffffff810a6578>] handle_irq_event+0x48/0x70
> [<ffffffff810a8de7>] handle_edge_irq+0x77/0x110
> [<ffffffff810044de>] handle_irq+0x1e/0x30
> [<ffffffff816f70ba>] do_IRQ+0x5a/0xe0
> [<ffffffff816ecdaf>] common_interrupt+0x6f/0x6f
> <EOI> [<ffffffff810be18e>] ? lock_acquire+0x9e/0x100
> [<ffffffff811a76ad>] ? path_init+0x26d/0x4c0
> [<ffffffff8107ca94>] lg_local_lock+0x34/0x70
> [<ffffffff811a76ad>] ? path_init+0x26d/0x4c0
> [<ffffffff811a76ad>] path_init+0x26d/0x4c0
> [<ffffffff81370898>] ? __raw_spin_lock_init+0x38/0x70
> [<ffffffff811abbb1>] path_openat+0x81/0x660
> [<ffffffff81165031>] ? handle_mm_fault+0x2d1/0xaf0
> [<ffffffff816f0638>] ? __do_page_fault+0x148/0x570
> [<ffffffff811ac4b3>] do_filp_open+0x43/0xa0
> [<ffffffff816ec897>] ? _raw_spin_unlock+0x27/0x30
> [<ffffffff811b9876>] ? __alloc_fd+0xd6/0x130
> [<ffffffff8119a62c>] do_sys_open+0x13c/0x230
> [<ffffffff8119a742>] SyS_open+0x22/0x30
> [<ffffffff816f5192>] system_call_fastpath+0x16/0x1b
> ---[ end trace bd3f4c22c85fc732 ]---
>
> The test itself concludes successfully as written, though it's worth noting
> the test does not check the integrity of the data written.
>
> The same warning can be triggered by the following simple sequence of
> commands, extracted from ext4/271:
>
> mkfs.ext4 /dev/vdc
> mount -o dioread_nolock,noload /dev/vdc /vdc
> touch /vdc/file
> chattr +S /vdc/file
> dd if=/dev/zero of=/vdc/file bs=4k count=1
>
> (FWIW, if you omit the touch and chattr commands, the warning won't be
> triggered unless a second instance of the dd command is issued.)
>
> The warning bisects cleanly to this patch:
> 7b7a8665ed direct-io: Implement generic deferred AIO completions
>
> Apparently, !io_end->handle is unexpectedly true in this test case. A
> WARN_ON for that condition was newly added in the patch.
>
> It's not yet clear to me how serious this warning is, but the new message is
> at least a minor regression.
>
> Thanks,
> Eric
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
[-- Attachment #2: 0001-ext4-Fix-assertion-in-ext4_add_complete_io.patch --]
[-- Type: text/x-patch, Size: 1507 bytes --]
>From 3575f7ab985e3f8ddbddf88e72b93ece20a113e6 Mon Sep 17 00:00:00 2001
From: Jan Kara <jack@suse.cz>
Date: Tue, 15 Oct 2013 15:17:48 +0200
Subject: [PATCH] ext4: Fix assertion in ext4_add_complete_io()
It doesn't make sense to require io_end->handle when we are in nojournal
mode. So update the assertion accordingly to avoid false warnings from
ext4_add_complete_io().
Reported-by: Eric Whitney <enwlinux@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
---
fs/ext4/page-io.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/fs/ext4/page-io.c b/fs/ext4/page-io.c
index d7d0c7b46ed4..d488f80ee32d 100644
--- a/fs/ext4/page-io.c
+++ b/fs/ext4/page-io.c
@@ -197,14 +197,15 @@ static void dump_completed_IO(struct inode *inode, struct list_head *head)
static void ext4_add_complete_io(ext4_io_end_t *io_end)
{
struct ext4_inode_info *ei = EXT4_I(io_end->inode);
+ struct ext4_sb_info *sbi = EXT4_SB(io_end->inode->i_sb);
struct workqueue_struct *wq;
unsigned long flags;
/* Only reserved conversions from writeback should enter here */
WARN_ON(!(io_end->flag & EXT4_IO_END_UNWRITTEN));
- WARN_ON(!io_end->handle);
+ WARN_ON(!io_end->handle && sbi->s_journal);
spin_lock_irqsave(&ei->i_completed_io_lock, flags);
- wq = EXT4_SB(io_end->inode->i_sb)->rsv_conversion_wq;
+ wq = sbi->rsv_conversion_wq;
if (list_empty(&ei->i_rsv_conversion_list))
queue_work(wq, &ei->i_rsv_conversion_work);
list_add_tail(&io_end->list, &ei->i_rsv_conversion_list);
--
1.8.1.4
prev parent reply other threads:[~2013-10-15 13:26 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-14 2:16 new kernel warning when running xfstest ext4/271 on 3.12 Eric Whitney
2013-10-15 3:51 ` jon ernst
2013-10-15 13:12 ` Jan Kara
2013-10-15 13:26 ` Jan Kara [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20131015132605.GE12428@quack.suse.cz \
--to=jack@suse.cz \
--cc=enwlinux@gmail.com \
--cc=linux-ext4@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).