1
0
Fork 0

drbd: Make w_make_resync_request() static

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
hifive-unleashed-5.1
Andreas Gruenbacher 2011-08-25 16:56:34 +02:00 committed by Philipp Reisner
parent a8cd15ba79
commit 4d010392f4
2 changed files with 2 additions and 3 deletions

View File

@ -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);

View File

@ -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;