Lines Matching refs:param
731 struct hmdfs_writepage_context *param = NULL;
738 param = kzalloc(sizeof(*param), GFP_NOFS);
739 if (!param) {
748 param->count = hmdfs_get_writecount(page);
749 if (!param->count)
751 param->rsem_held = rsem_held;
752 hmdfs_remote_fetch_fid(info, ¶m->fid);
753 param->sync_all = sync;
754 param->caller = current;
756 param->page = page;
757 param->timeout = jiffies + msecs_to_jiffies(sbi->wb_timeout_ms);
758 INIT_DELAYED_WORK(¶m->retry_dwork, hmdfs_remote_writepage_retry);
759 ret = hmdfs_remote_do_writepage(info->conn, param);
765 kfree(param);