Lines Matching refs:req
259 static inline void drbd_req_make_private_bio(struct drbd_request *req, struct bio *bio_src)
264 req->private_bio = bio;
266 bio->bi_private = req;
281 extern void _req_may_be_done(struct drbd_request *req,
283 extern int __req_mod(struct drbd_request *req, enum drbd_req_event what,
293 extern void drbd_restart_request(struct drbd_request *req);
297 static inline int _req_mod(struct drbd_request *req, enum drbd_req_event what)
299 struct drbd_device *device = req->device;
303 /* __req_mod possibly frees req, do not touch req after that! */
304 rv = __req_mod(req, what, &m);
315 static inline int req_mod(struct drbd_request *req,
319 struct drbd_device *device = req->device;
324 rv = __req_mod(req, what, &m);