Commit 8ad7c62b authored by Adrian Bunk's avatar Adrian Bunk Committed by David S. Miller

[SCTP] net/sctp/auth.c: make 3 functions static

This patch makes three needlessly global functions static.
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Acked-by: default avatarVlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b4caea8a
...@@ -88,7 +88,6 @@ static inline void sctp_auth_key_hold(struct sctp_auth_bytes *key) ...@@ -88,7 +88,6 @@ static inline void sctp_auth_key_hold(struct sctp_auth_bytes *key)
void sctp_auth_key_put(struct sctp_auth_bytes *key); void sctp_auth_key_put(struct sctp_auth_bytes *key);
struct sctp_shared_key *sctp_auth_shkey_create(__u16 key_id, gfp_t gfp); struct sctp_shared_key *sctp_auth_shkey_create(__u16 key_id, gfp_t gfp);
void sctp_auth_shkey_free(struct sctp_shared_key *sh_key);
void sctp_auth_destroy_keys(struct list_head *keys); void sctp_auth_destroy_keys(struct list_head *keys);
int sctp_auth_asoc_init_active_key(struct sctp_association *asoc, gfp_t gfp); int sctp_auth_asoc_init_active_key(struct sctp_association *asoc, gfp_t gfp);
struct sctp_shared_key *sctp_auth_get_shkey( struct sctp_shared_key *sctp_auth_get_shkey(
......
...@@ -107,7 +107,7 @@ struct sctp_shared_key *sctp_auth_shkey_create(__u16 key_id, gfp_t gfp) ...@@ -107,7 +107,7 @@ struct sctp_shared_key *sctp_auth_shkey_create(__u16 key_id, gfp_t gfp)
} }
/* Free the shared key stucture */ /* Free the shared key stucture */
void sctp_auth_shkey_free(struct sctp_shared_key *sh_key) static void sctp_auth_shkey_free(struct sctp_shared_key *sh_key)
{ {
BUG_ON(!list_empty(&sh_key->key_list)); BUG_ON(!list_empty(&sh_key->key_list));
sctp_auth_key_put(sh_key->key); sctp_auth_key_put(sh_key->key);
...@@ -220,7 +220,7 @@ static struct sctp_auth_bytes *sctp_auth_make_key_vector( ...@@ -220,7 +220,7 @@ static struct sctp_auth_bytes *sctp_auth_make_key_vector(
/* Make a key vector based on our local parameters */ /* Make a key vector based on our local parameters */
struct sctp_auth_bytes *sctp_auth_make_local_vector( static struct sctp_auth_bytes *sctp_auth_make_local_vector(
const struct sctp_association *asoc, const struct sctp_association *asoc,
gfp_t gfp) gfp_t gfp)
{ {
...@@ -232,7 +232,7 @@ struct sctp_auth_bytes *sctp_auth_make_local_vector( ...@@ -232,7 +232,7 @@ struct sctp_auth_bytes *sctp_auth_make_local_vector(
} }
/* Make a key vector based on peer's parameters */ /* Make a key vector based on peer's parameters */
struct sctp_auth_bytes *sctp_auth_make_peer_vector( static struct sctp_auth_bytes *sctp_auth_make_peer_vector(
const struct sctp_association *asoc, const struct sctp_association *asoc,
gfp_t gfp) gfp_t gfp)
{ {
......
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