* [PATCH v2] fs: Fix hang with BSD accounting on frozen filesystem
@ 2013-05-03 22:11 Jan Kara
2013-05-04 18:58 ` Al Viro
0 siblings, 1 reply; 2+ messages in thread
From: Jan Kara @ 2013-05-03 22:11 UTC (permalink / raw)
To: Al Viro; +Cc: linux-fsdevel, Nikola Ciprich, LKML, Jan Kara
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.
Reported-by: Nikola Ciprich <nikola.ciprich@linuxbox.cz>
Signed-off-by: Jan Kara <jack@suse.cz>
---
kernel/acct.c | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
Hi Al!
I'm sending an updated fix for BSD process accounting hang. Can you please
merge it? Thanks!
Honza
diff --git a/kernel/acct.c b/kernel/acct.c
index 85389fe..04606cc 100644
--- a/kernel/acct.c
+++ b/kernel/acct.c
@@ -540,10 +540,15 @@ static void do_acct_process(struct bsd_acct_struct *acct,
ac.ac_swaps = encode_comp_t(0);
/*
+ * Get freeze protection. If the fs is frozen, just skip the write
+ * as we could deadlock the system otherwise.
+ */
+ if (!sb_start_write_trylock(file_inode(file)->i_sb))
+ goto out;
+ /*
* Kernel segment override to datasegment and write it
* to the accounting file.
*/
- file_start_write(file);
fs = get_fs();
set_fs(KERNEL_DS);
/*
@@ -555,7 +560,7 @@ static void do_acct_process(struct bsd_acct_struct *acct,
sizeof(acct_t), &file->f_pos);
current->signal->rlim[RLIMIT_FSIZE].rlim_cur = flim;
set_fs(fs);
- file_end_write(file);
+ sb_end_write(file_inode(file)->i_sb);
out:
revert_creds(orig_cred);
}
--
1.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] fs: Fix hang with BSD accounting on frozen filesystem
2013-05-03 22:11 [PATCH v2] fs: Fix hang with BSD accounting on frozen filesystem Jan Kara
@ 2013-05-04 18:58 ` Al Viro
0 siblings, 0 replies; 2+ messages in thread
From: Al Viro @ 2013-05-04 18:58 UTC (permalink / raw)
To: Jan Kara; +Cc: linux-fsdevel, Nikola Ciprich, LKML
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()
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-05-04 18:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-03 22:11 [PATCH v2] fs: Fix hang with BSD accounting on frozen filesystem Jan Kara
2013-05-04 18:58 ` Al Viro
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).