diff options
author | Brian Behlendorf <[email protected]> | 2012-08-18 11:17:23 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-08-27 12:01:37 -0700 |
commit | 8630650a8d9cfba379a5b73bd95e903d577e0d8d (patch) | |
tree | cfc66fcdfb264e8b59b94f3bf3a6ecd55faa197c /module/zfs/txg.c | |
parent | 86dd0fd9222b6103c6533036c47b908ece944460 (diff) |
Annotate KM_PUSHPAGE call paths with PF_NOFS
The txg_sync(), zfs_putpage(), zvol_write(), and zvol_discard()
call paths must only use KM_PUSHPAGE to avoid potential deadlocks
during direct reclaim.
This patch annotates these call paths so any accidental use of
KM_SLEEP will be quickly detected. In the interest of stability
if debugging is disabled the offending allocation will have its
GFP flags automatically corrected. When debugging is enabled
any misuse will be treated as a fatal error.
This patch is entirely for debugging. We should be careful to
NOT become dependant on it fixing up the incorrect allocations.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'module/zfs/txg.c')
-rw-r--r-- | module/zfs/txg.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/module/zfs/txg.c b/module/zfs/txg.c index c234567d7..aefda6f69 100644 --- a/module/zfs/txg.c +++ b/module/zfs/txg.c @@ -382,6 +382,15 @@ txg_sync_thread(dsl_pool_t *dp) callb_cpr_t cpr; uint64_t start, delta; +#ifdef _KERNEL + /* + * Annotate this process with a flag that indicates that it is + * unsafe to use KM_SLEEP during memory allocations due to the + * potential for a deadlock. KM_PUSHPAGE should be used instead. + */ + current->flags |= PF_NOFS; +#endif /* _KERNEL */ + txg_thread_enter(tx, &cpr); start = delta = 0; |