]> git.baikalelectronics.ru Git - kernel.git/commit
ext3: Don't warn from writepage when readonly inode is spotted after error
authorJan Kara <jack@suse.cz>
Thu, 22 Dec 2011 15:49:05 +0000 (16:49 +0100)
committerJan Kara <jack@suse.cz>
Mon, 9 Jan 2012 12:52:09 +0000 (13:52 +0100)
commit124ae92d44240756d4bc1822aa1dcdb7bd9d1326
treed94d7312b242ee85318188b3bc8fd23481c2f529
parente303baae86fc3261a06acdd06ed43243477383a5
ext3: Don't warn from writepage when readonly inode is spotted after error

WARN_ON_ONCE(IS_RDONLY(inode)) tends to trip when filesystem hits error and is
remounted read-only. This unnecessarily scares users (well, they should be
scared because of filesystem error, but the stack trace distracts them from the
right source of their fear ;-). We could as well just remove the WARN_ON but
it's not hard to fix it to not trip on filesystem with errors and not use more
cycles in the common case so that's what we do.

CC: stable@kernel.org
Signed-off-by: Jan Kara <jack@suse.cz>
fs/ext3/inode.c