Commit 16f4e743 authored by Rashika Kheria's avatar Rashika Kheria Committed by Philipp Reisner

drivers: block: Mark functions as static in drbd_main.c

Mark functions _drbd_send_uuids(), fill_bitmap_rle_bits() and
init_submitter() as static in drbd/drbd_main.c because they are
not used outside this file.

This eliminates the following warnings in drbd/drbd_main.c:
drivers/block/drbd/drbd_main.c:826:5: warning: no previous prototype for ‘_drbd_send_uuids’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_main.c:1070:5: warning: no previous prototype for ‘fill_bitmap_rle_bits’ [-Wmissing-prototypes]
drivers/block/drbd/drbd_main.c:2592:5: warning: no previous prototype for ‘init_submitter’ [-Wmissing-prototypes]
Signed-off-by: default avatarRashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Signed-off-by: default avatarPhilipp Reisner <philipp.reisner@linbit.com>
parent 6d0abeca
...@@ -823,7 +823,7 @@ int drbd_send_protocol(struct drbd_tconn *tconn) ...@@ -823,7 +823,7 @@ int drbd_send_protocol(struct drbd_tconn *tconn)
return err; return err;
} }
int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags) static int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
{ {
struct drbd_socket *sock; struct drbd_socket *sock;
struct p_uuids *p; struct p_uuids *p;
...@@ -1067,7 +1067,7 @@ static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n) ...@@ -1067,7 +1067,7 @@ static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4); p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
} }
int fill_bitmap_rle_bits(struct drbd_conf *mdev, static int fill_bitmap_rle_bits(struct drbd_conf *mdev,
struct p_compressed_bm *p, struct p_compressed_bm *p,
unsigned int size, unsigned int size,
struct bm_xfer_ctx *c) struct bm_xfer_ctx *c)
...@@ -2592,7 +2592,7 @@ void conn_destroy(struct kref *kref) ...@@ -2592,7 +2592,7 @@ void conn_destroy(struct kref *kref)
kfree(tconn); kfree(tconn);
} }
int init_submitter(struct drbd_conf *mdev) static int init_submitter(struct drbd_conf *mdev)
{ {
/* opencoded create_singlethread_workqueue(), /* opencoded create_singlethread_workqueue(),
* to be able to say "drbd%d", ..., minor */ * to be able to say "drbd%d", ..., minor */
......
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