All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Elder <elder@dreamhost.com>
To: ceph-devel@vger.kernel.org
Subject: [PATCH 1/4] libceph: make ceph_msgr_wq private
Date: Tue, 28 Feb 2012 20:46:26 -0800	[thread overview]
Message-ID: <4F4DADA2.2010309@dreamhost.com> (raw)
In-Reply-To: <4F4DAD34.2030202@dreamhost.com>

The messenger workqueue has no need to be public.  So give it static
scope.

Signed-off-by: Alex Elder <elder@dreamhost.com>
---
  include/linux/ceph/messenger.h |    2 --
  net/ceph/messenger.c           |    2 +-
  2 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/include/linux/ceph/messenger.h b/include/linux/ceph/messenger.h
index 6b5af5f..5ca0f82 100644
--- a/include/linux/ceph/messenger.h
+++ b/include/linux/ceph/messenger.h
@@ -14,8 +14,6 @@
  struct ceph_msg;
  struct ceph_connection;

-extern struct workqueue_struct *ceph_msgr_wq;       /* receive work 
queue */
-
  /*
   * Ceph defines these callbacks for handling connection events.
   */
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c
index 03868cd..9c0f73a 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)
  {
-- 
1.7.5.4


  reply	other threads:[~2012-02-29  4:46 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-29  4:44 [PATCH 0/4] libceph: miscellaneous cleanups Alex Elder
2012-02-29  4:46 ` Alex Elder [this message]
2012-02-29  4:46 ` [PATCH 2/4] libceph: encapsulate some messenger cleanup code Alex Elder
2012-02-29 17:44   ` [PATCH, v2] " Alex Elder
2012-02-29  4:46 ` [PATCH 3/4] libceph: make ceph_tcp_connect() return int Alex Elder
2012-02-29  4:46 ` [PATCH 4/4] libceph: a few small changes Alex Elder
2012-03-02 21:40   ` Sage Weil
2012-03-02 23:28     ` Alex Elder
2012-03-02 21:42 ` [PATCH 0/4] libceph: miscellaneous cleanups Sage Weil

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4F4DADA2.2010309@dreamhost.com \
    --to=elder@dreamhost.com \
    --cc=ceph-devel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.