drbd: Make w_make_resync_request() static
Signed-off-by: Andreas Gruenbacher <agruen@linbit.com> Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
This commit is contained in:
parent
a8cd15ba79
commit
4d010392f4
|
@ -1321,7 +1321,6 @@ extern int w_e_end_ov_req(struct drbd_work *, int);
|
|||
extern int w_ov_finished(struct drbd_work *, int);
|
||||
extern int w_resync_timer(struct drbd_work *, int);
|
||||
extern int w_send_write_hint(struct drbd_work *, int);
|
||||
extern int w_make_resync_request(struct drbd_work *, int);
|
||||
extern int w_send_dblock(struct drbd_work *, int);
|
||||
extern int w_send_read_req(struct drbd_work *, int);
|
||||
extern int w_e_reissue(struct drbd_work *, int);
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
#include "drbd_req.h"
|
||||
|
||||
static int w_make_ov_request(struct drbd_work *, int);
|
||||
|
||||
static int w_make_resync_request(struct drbd_work *, int);
|
||||
|
||||
/* endio handlers:
|
||||
* drbd_md_io_complete (defined here)
|
||||
|
@ -565,7 +565,7 @@ static int drbd_rs_number_requests(struct drbd_device *device)
|
|||
return number;
|
||||
}
|
||||
|
||||
int w_make_resync_request(struct drbd_work *w, int cancel)
|
||||
static int w_make_resync_request(struct drbd_work *w, int cancel)
|
||||
{
|
||||
struct drbd_device_work *dw = device_work(w);
|
||||
struct drbd_device *device = dw->device;
|
||||
|
|
Loading…
Reference in New Issue