ocfs2: use GFP_NOFS in some dlm operations
Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
This commit is contained in:
@@ -737,7 +737,7 @@ static int dlm_init_recovery_area(struct dlm_ctxt *dlm, u8 dead_node)
|
||||
}
|
||||
BUG_ON(num == dead_node);
|
||||
|
||||
ndata = kcalloc(1, sizeof(*ndata), GFP_KERNEL);
|
||||
ndata = kcalloc(1, sizeof(*ndata), GFP_NOFS);
|
||||
if (!ndata) {
|
||||
dlm_destroy_recovery_area(dlm, dead_node);
|
||||
return -ENOMEM;
|
||||
@@ -822,14 +822,14 @@ int dlm_request_all_locks_handler(struct o2net_msg *msg, u32 len, void *data)
|
||||
}
|
||||
BUG_ON(lr->dead_node != dlm->reco.dead_node);
|
||||
|
||||
item = kcalloc(1, sizeof(*item), GFP_KERNEL);
|
||||
item = kcalloc(1, sizeof(*item), GFP_NOFS);
|
||||
if (!item) {
|
||||
dlm_put(dlm);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
/* this will get freed by dlm_request_all_locks_worker */
|
||||
buf = (char *) __get_free_page(GFP_KERNEL);
|
||||
buf = (char *) __get_free_page(GFP_NOFS);
|
||||
if (!buf) {
|
||||
kfree(item);
|
||||
dlm_put(dlm);
|
||||
@@ -1302,8 +1302,8 @@ int dlm_mig_lockres_handler(struct o2net_msg *msg, u32 len, void *data)
|
||||
mlog(0, "all done flag. all lockres data received!\n");
|
||||
|
||||
ret = -ENOMEM;
|
||||
buf = kmalloc(be16_to_cpu(msg->data_len), GFP_KERNEL);
|
||||
item = kcalloc(1, sizeof(*item), GFP_KERNEL);
|
||||
buf = kmalloc(be16_to_cpu(msg->data_len), GFP_NOFS);
|
||||
item = kcalloc(1, sizeof(*item), GFP_NOFS);
|
||||
if (!buf || !item)
|
||||
goto leave;
|
||||
|
||||
|
Reference in New Issue
Block a user