aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAlex Elder <elder@dreamhost.com>2012-02-14 14:05:33 -0600
committerAlex Elder <elder@dreamhost.com>2012-03-22 10:47:50 -0500
commite0f43c9419c1900e5b50de4261e9686a45a0a2b8 (patch)
tree28a0452e2bc223513b376f9db711f878a848bddc /net
parent859eb7994876f26fd9f52d9589fbcab8e2fe8069 (diff)
downloadlinux-hpc-e0f43c9419c1900e5b50de4261e9686a45a0a2b8.tar.gz
libceph: make ceph_msgr_wq private
The messenger workqueue has no need to be public. So give it static scope. Signed-off-by: Alex Elder <elder@dreamhost.com> Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'net')
-rw-r--r--net/ceph/messenger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c
index 04d2b975ab0cb3..31f59ac03d8a7f 100644
--- a/net/ceph/messenger.c
+++ b/net/ceph/messenger.c
@@ -97,7 +97,7 @@ static void encode_my_addr(struct ceph_messenger *msgr)
/*
* work queue for all reading and writing to/from the socket.
*/
-struct workqueue_struct *ceph_msgr_wq;
+static struct workqueue_struct *ceph_msgr_wq;
int ceph_msgr_init(void)
{