Lines Matching defs:fsf_req
39 struct zfcp_fsf_req *fsf_req = from_timer(fsf_req, t, timer);
40 struct zfcp_adapter *adapter = fsf_req->adapter;
47 static void zfcp_fsf_start_timer(struct zfcp_fsf_req *fsf_req,
50 fsf_req->timer.function = zfcp_fsf_request_timeout_handler;
51 fsf_req->timer.expires = jiffies + timeout;
52 add_timer(&fsf_req->timer);
55 static void zfcp_fsf_start_erp_timer(struct zfcp_fsf_req *fsf_req)
57 BUG_ON(!fsf_req->erp_action);
58 fsf_req->timer.function = zfcp_erp_timeout_handler;
59 fsf_req->timer.expires = jiffies + 30 * HZ;
60 add_timer(&fsf_req->timer);
2716 struct zfcp_fsf_req *fsf_req;
2724 fsf_req = zfcp_reqlist_find_rm(adapter->req_list, req_id);
2726 if (!fsf_req) {
2736 zfcp_fsf_req_complete(fsf_req);