Commit 9d05e7c4 authored by Lars Ellenberg's avatar Lars Ellenberg Committed by Philipp Reisner

drbd: rename drbd_restart_write to drbd_restart_request

Meanwhile, this is used to restart failed READ requests as well.
Signed-off-by: default avatarPhilipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: default avatarLars Ellenberg <lars.ellenberg@linbit.com>
parent 629663c9
...@@ -2434,7 +2434,7 @@ static void do_retry(struct work_struct *ws) ...@@ -2434,7 +2434,7 @@ static void do_retry(struct work_struct *ws)
} }
} }
void drbd_restart_write(struct drbd_request *req) void drbd_restart_request(struct drbd_request *req)
{ {
unsigned long flags; unsigned long flags;
spin_lock_irqsave(&retry.lock, flags); spin_lock_irqsave(&retry.lock, flags);
......
...@@ -144,7 +144,7 @@ static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const ...@@ -144,7 +144,7 @@ static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const
} }
if (s & RQ_POSTPONED) if (s & RQ_POSTPONED)
drbd_restart_write(req); drbd_restart_request(req);
else else
drbd_req_free(req); drbd_req_free(req);
} }
......
...@@ -269,7 +269,7 @@ extern void tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what); ...@@ -269,7 +269,7 @@ extern void tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what);
extern void _tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what); extern void _tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what);
/* this is in drbd_main.c */ /* this is in drbd_main.c */
extern void drbd_restart_write(struct drbd_request *req); extern void drbd_restart_request(struct drbd_request *req);
/* use this if you don't want to deal with calling complete_master_bio() /* use this if you don't want to deal with calling complete_master_bio()
* outside the spinlock, e.g. when walking some list on cleanup. */ * outside the spinlock, e.g. when walking some list on cleanup. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment