Lines Matching defs:param
725 struct hmdfs_writepage_context *param = NULL;
732 param = kzalloc(sizeof(*param), GFP_NOFS);
733 if (!param) {
742 param->count = hmdfs_get_writecount(page);
743 if (!param->count)
745 param->rsem_held = rsem_held;
746 hmdfs_remote_fetch_fid(info, ¶m->fid);
747 param->sync_all = sync;
748 param->caller = current;
750 param->page = page;
751 param->timeout = jiffies + msecs_to_jiffies(sbi->wb_timeout_ms);
752 INIT_DELAYED_WORK(¶m->retry_dwork, hmdfs_remote_writepage_retry);
753 ret = hmdfs_remote_do_writepage(info->conn, param);
759 kfree(param);