From mboxrd@z Thu Jan 1 00:00:00 1970 From: Al Viro Subject: Re: [PATCH v2] fs: Fix hang with BSD accounting on frozen filesystem Date: Sat, 4 May 2013 19:58:57 +0100 Message-ID: <20130504185857.GG25399@ZenIV.linux.org.uk> References: <1367619083-8093-1-git-send-email-jack@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-fsdevel@vger.kernel.org, Nikola Ciprich , LKML To: Jan Kara Return-path: Received: from zeniv.linux.org.uk ([195.92.253.2]:46606 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758427Ab3EDS7A (ORCPT ); Sat, 4 May 2013 14:59:00 -0400 Content-Disposition: inline In-Reply-To: <1367619083-8093-1-git-send-email-jack@suse.cz> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On Sat, May 04, 2013 at 12:11:23AM +0200, Jan Kara wrote: > When BSD process accounting is enabled and logs information to a > filesystem which gets frozen, system easily becomes unusable because > each attempt to account process information blocks. Thus e.g. every task > gets blocked in exit. > > It seems better to drop accounting information (which can already happen > when filesystem is running out of space) instead of locking system up. > So we just skip the write if the filesystem is frozen. Applied, with one modification - file_start_write_trylock() added and used instead of sb_start_write_trylock()