Commit 8ce953aa authored by Lars Ellenberg's avatar Lars Ellenberg Committed by Philipp Reisner

drbd: silence -Wmissing-prototypes warnings

Signed-off-by: default avatarPhilipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: default avatarLars Ellenberg <lars.ellenberg@linbit.com>
parent 3e0c78d3
...@@ -2877,7 +2877,7 @@ void drbd_delete_device(struct drbd_device *device) ...@@ -2877,7 +2877,7 @@ void drbd_delete_device(struct drbd_device *device)
kref_sub(&device->kref, refs, drbd_destroy_device); kref_sub(&device->kref, refs, drbd_destroy_device);
} }
int __init drbd_init(void) static int __init drbd_init(void)
{ {
int err; int err;
......
...@@ -2913,7 +2913,7 @@ static struct drbd_connection *the_only_connection(struct drbd_resource *resourc ...@@ -2913,7 +2913,7 @@ static struct drbd_connection *the_only_connection(struct drbd_resource *resourc
return list_first_entry(&resource->connections, struct drbd_connection, connections); return list_first_entry(&resource->connections, struct drbd_connection, connections);
} }
int nla_put_status_info(struct sk_buff *skb, struct drbd_device *device, static int nla_put_status_info(struct sk_buff *skb, struct drbd_device *device,
const struct sib_info *sib) const struct sib_info *sib)
{ {
struct drbd_resource *resource = device->resource; struct drbd_resource *resource = device->resource;
......
...@@ -3371,8 +3371,7 @@ static int receive_protocol(struct drbd_connection *connection, struct packet_in ...@@ -3371,8 +3371,7 @@ static int receive_protocol(struct drbd_connection *connection, struct packet_in
* return: NULL (alg name was "") * return: NULL (alg name was "")
* ERR_PTR(error) if something goes wrong * ERR_PTR(error) if something goes wrong
* or the crypto hash ptr, if it worked out ok. */ * or the crypto hash ptr, if it worked out ok. */
static static struct crypto_hash *drbd_crypto_alloc_digest_safe(const struct drbd_device *device,
struct crypto_hash *drbd_crypto_alloc_digest_safe(const struct drbd_device *device,
const char *alg, const char *name) const char *alg, const char *name)
{ {
struct crypto_hash *tfm; struct crypto_hash *tfm;
......
...@@ -288,6 +288,7 @@ extern void complete_master_bio(struct drbd_device *device, ...@@ -288,6 +288,7 @@ extern void complete_master_bio(struct drbd_device *device,
extern void request_timer_fn(unsigned long data); extern void request_timer_fn(unsigned long data);
extern void tl_restart(struct drbd_connection *connection, enum drbd_req_event what); extern void tl_restart(struct drbd_connection *connection, enum drbd_req_event what);
extern void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what); extern void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what);
extern void tl_abort_disk_io(struct drbd_device *device);
/* this is in drbd_main.c */ /* this is in drbd_main.c */
extern void drbd_restart_request(struct drbd_request *req); extern void drbd_restart_request(struct drbd_request *req);
......
...@@ -410,7 +410,7 @@ _drbd_request_state(struct drbd_device *device, union drbd_state mask, ...@@ -410,7 +410,7 @@ _drbd_request_state(struct drbd_device *device, union drbd_state mask,
return rv; return rv;
} }
static void print_st(struct drbd_device *device, char *name, union drbd_state ns) static void print_st(struct drbd_device *device, const char *name, union drbd_state ns)
{ {
drbd_err(device, " %s = { cs:%s ro:%s/%s ds:%s/%s %c%c%c%c%c%c }\n", drbd_err(device, " %s = { cs:%s ro:%s/%s ds:%s/%s %c%c%c%c%c%c }\n",
name, name,
...@@ -1606,7 +1606,7 @@ static int w_after_conn_state_ch(struct drbd_work *w, int unused) ...@@ -1606,7 +1606,7 @@ static int w_after_conn_state_ch(struct drbd_work *w, int unused)
return 0; return 0;
} }
void conn_old_common_state(struct drbd_connection *connection, union drbd_state *pcs, enum chg_state_flags *pf) static void conn_old_common_state(struct drbd_connection *connection, union drbd_state *pcs, enum chg_state_flags *pf)
{ {
enum chg_state_flags flags = ~0; enum chg_state_flags flags = ~0;
struct drbd_peer_device *peer_device; struct drbd_peer_device *peer_device;
...@@ -1695,7 +1695,7 @@ conn_is_valid_transition(struct drbd_connection *connection, union drbd_state ma ...@@ -1695,7 +1695,7 @@ conn_is_valid_transition(struct drbd_connection *connection, union drbd_state ma
return rv; return rv;
} }
void static void
conn_set_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val, conn_set_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
union drbd_state *pns_min, union drbd_state *pns_max, enum chg_state_flags flags) union drbd_state *pns_min, union drbd_state *pns_max, enum chg_state_flags flags)
{ {
......
...@@ -169,7 +169,7 @@ struct lru_cache *lc_create(const char *name, struct kmem_cache *cache, ...@@ -169,7 +169,7 @@ struct lru_cache *lc_create(const char *name, struct kmem_cache *cache,
return NULL; return NULL;
} }
void lc_free_by_index(struct lru_cache *lc, unsigned i) static void lc_free_by_index(struct lru_cache *lc, unsigned i)
{ {
void *p = lc->lc_element[i]; void *p = lc->lc_element[i];
WARN_ON(!p); WARN_ON(!p);
......
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