aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2008-12-10 18:18:31 -0500
committerDavid S. Miller <davem@davemloft.net>2008-12-10 18:18:31 -0500
commit5eaa65b240c5eb7bf2235eb9dd177c83e6e3832c (patch)
tree1a6b217cfc5b241b298a8765f68fcb5f711f9bc3 /net/rxrpc
parent2107fb8b5bf018be691afdd4c6ffaecf0c3307be (diff)
net: Make static
Sparse asked whether these could be static. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc')
-rw-r--r--net/rxrpc/ar-connection.c2
-rw-r--r--net/rxrpc/ar-connevent.c2
-rw-r--r--net/rxrpc/ar-security.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/net/rxrpc/ar-connection.c b/net/rxrpc/ar-connection.c
index 3869a5866752..0f1218b8d289 100644
--- a/net/rxrpc/ar-connection.c
+++ b/net/rxrpc/ar-connection.c
@@ -826,7 +826,7 @@ static void rxrpc_destroy_connection(struct rxrpc_connection *conn)
826/* 826/*
827 * reap dead connections 827 * reap dead connections
828 */ 828 */
829void rxrpc_connection_reaper(struct work_struct *work) 829static void rxrpc_connection_reaper(struct work_struct *work)
830{ 830{
831 struct rxrpc_connection *conn, *_p; 831 struct rxrpc_connection *conn, *_p;
832 unsigned long now, earliest, reap_time; 832 unsigned long now, earliest, reap_time;
diff --git a/net/rxrpc/ar-connevent.c b/net/rxrpc/ar-connevent.c
index 1ada43d51165..dc5cb1e19509 100644
--- a/net/rxrpc/ar-connevent.c
+++ b/net/rxrpc/ar-connevent.c
@@ -126,7 +126,7 @@ static int rxrpc_abort_connection(struct rxrpc_connection *conn,
126 * mark a call as being on a now-secured channel 126 * mark a call as being on a now-secured channel
127 * - must be called with softirqs disabled 127 * - must be called with softirqs disabled
128 */ 128 */
129void rxrpc_call_is_secure(struct rxrpc_call *call) 129static void rxrpc_call_is_secure(struct rxrpc_call *call)
130{ 130{
131 _enter("%p", call); 131 _enter("%p", call);
132 if (call) { 132 if (call) {
diff --git a/net/rxrpc/ar-security.c b/net/rxrpc/ar-security.c
index 60d1d364430a..dc62920ee19a 100644
--- a/net/rxrpc/ar-security.c
+++ b/net/rxrpc/ar-security.c
@@ -40,7 +40,7 @@ static void rxrpc_security_put(struct rxrpc_security *sec)
40/* 40/*
41 * look up an rxrpc security module 41 * look up an rxrpc security module
42 */ 42 */
43struct rxrpc_security *rxrpc_security_lookup(u8 security_index) 43static struct rxrpc_security *rxrpc_security_lookup(u8 security_index)
44{ 44{
45 struct rxrpc_security *sec = NULL; 45 struct rxrpc_security *sec = NULL;
46 46