diff options
author | David Teigland <teigland@redhat.com> | 2009-05-15 10:50:57 -0500 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2009-05-15 11:24:59 -0500 |
commit | 748285ccf7ea76d3d76d0d5f2945ad6fb91f5329 (patch) | |
tree | aeb56a0e18c2f54acccb65e5b6e8ac63f53dfc44 /fs/dlm/requestqueue.c | |
parent | 391fbdc5d527149578490db2f1619951d91f3561 (diff) | |
download | linux-3.10-748285ccf7ea76d3d76d0d5f2945ad6fb91f5329.tar.gz linux-3.10-748285ccf7ea76d3d76d0d5f2945ad6fb91f5329.tar.bz2 linux-3.10-748285ccf7ea76d3d76d0d5f2945ad6fb91f5329.zip |
dlm: use more NOFS allocation
Change some GFP_KERNEL allocations to use either GFP_NOFS or
ls_allocation (when available) which the fs sets to GFP_NOFS.
The point is to prevent allocations from going back into the
cluster fs in places where that might lead to deadlock.
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/requestqueue.c')
-rw-r--r-- | fs/dlm/requestqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/requestqueue.c b/fs/dlm/requestqueue.c index daa4183fbb8..7a2307c0891 100644 --- a/fs/dlm/requestqueue.c +++ b/fs/dlm/requestqueue.c @@ -35,7 +35,7 @@ void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms) struct rq_entry *e; int length = ms->m_header.h_length - sizeof(struct dlm_message); - e = kmalloc(sizeof(struct rq_entry) + length, GFP_KERNEL); + e = kmalloc(sizeof(struct rq_entry) + length, ls->ls_allocation); if (!e) { log_print("dlm_add_requestqueue: out of memory len %d", length); return; |