From: Alex Elder <elder@dreamhost.com>
To: Sage Weil <sage@newdream.net>
Cc: ceph-devel@vger.kernel.org
Subject: Re: [PATCH 1/4] rbd: a few small cleanups
Date: Fri, 02 Mar 2012 15:22:10 -0800 [thread overview]
Message-ID: <4F515622.5040009@dreamhost.com> (raw)
In-Reply-To: <Pine.LNX.4.64.1203021142250.6413@cobra.newdream.net>
On 03/02/2012 11:44 AM, Sage Weil wrote:
> The "sizeof *foo" weirds me out too, but probably just because I've never
> seen it. Visually it isn't as obvious that "foo * sizeof *bar" parses
> and associates correctly.
I've already redone all of my patches to put the parentheses around
the thing to the right of the sizeof operator. And I'll always put
them there from now on.
(I think of it more like a return operator--where I don't like
parentheses that aren't needed, and as I said elsewhere the
lack of them conveys a tiny bit of information.)
-Alex
> sage
>
> On Tue, 28 Feb 2012, Alex Elder wrote:
>
>> Some minor cleanups in "drivers/block/rbd.c:
>> - Use the more meaningful "RBD_MAX_OBJ_NAME_LEN" in place if "96"
>> in the definition of RBD_MAX_MD_NAME_LEN.
>> - Use DEFINE_SPINLOCK() to define and initialize node_lock.
>> - Drop a needless (char *) cast in parse_rbd_opts_token().
>> - Make a few minor formatting changes.
>>
>> Signed-off-by: Alex Elder<elder@dreamhost.com>
>> ---
>> drivers/block/rbd.c | 21 +++++++++------------
>> 1 files changed, 9 insertions(+), 12 deletions(-)
>>
>> diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
>> index 7f40cb4..7c8c07a 100644
>> --- a/drivers/block/rbd.c
>> +++ b/drivers/block/rbd.c
>> @@ -46,7 +46,7 @@
>>
>> #define RBD_MINORS_PER_MAJOR 256 /* max minors per blkdev */
>>
>> -#define RBD_MAX_MD_NAME_LEN (96 + sizeof(RBD_SUFFIX))
>> +#define RBD_MAX_MD_NAME_LEN (RBD_MAX_OBJ_NAME_LEN + sizeof(RBD_SUFFIX))
>> #define RBD_MAX_POOL_NAME_LEN 64
>> #define RBD_MAX_SNAP_NAME_LEN 32
>> #define RBD_MAX_OPT_LEN 1024
>> @@ -175,7 +175,7 @@ static struct bus_type rbd_bus_type = {
>> .name = "rbd",
>> };
>>
>> -static spinlock_t node_lock; /* protects client get/put */
>> +static DEFINE_SPINLOCK(node_lock); /* protects client get/put */
>>
>> static DEFINE_MUTEX(ctl_mutex); /* Serialize
>> open/close/setup/teardown */
>> static LIST_HEAD(rbd_dev_list); /* devices */
>> @@ -324,7 +324,7 @@ static int parse_rbd_opts_token(char *c, void *private)
>> substring_t argstr[MAX_OPT_ARGS];
>> int token, intval, ret;
>>
>> - token = match_token((char *)c, rbdopt_tokens, argstr);
>> + token = match_token(c, rbdopt_tokens, argstr);
>> if (token< 0)
>> return -EINVAL;
>>
>> @@ -372,7 +372,8 @@ static int rbd_get_client(struct rbd_device *rbd_dev,
>> const char *mon_addr,
>> rbd_opts->notify_timeout = RBD_NOTIFY_TIMEOUT_DEFAULT;
>>
>> ret = ceph_parse_options(&opt, options, mon_addr,
>> - mon_addr + strlen(mon_addr),
>> parse_rbd_opts_token, rbd_opts);
>> + mon_addr + strlen(mon_addr),
>> + parse_rbd_opts_token, rbd_opts);
>> if (ret< 0)
>> goto done_err;
>>
>> @@ -460,15 +461,13 @@ static int rbd_header_from_disk(struct rbd_image_header
>> *header,
>> u32 snap_count = le32_to_cpu(ondisk->snap_count);
>> int ret = -ENOMEM;
>>
>> - if (memcmp(ondisk, RBD_HEADER_TEXT, sizeof(RBD_HEADER_TEXT))) {
>> + if (memcmp(ondisk, RBD_HEADER_TEXT, sizeof(RBD_HEADER_TEXT)))
>> return -ENXIO;
>> - }
>>
>> init_rwsem(&header->snap_rwsem);
>> header->snap_names_len = le64_to_cpu(ondisk->snap_names_len);
>> header->snapc = kmalloc(sizeof(struct ceph_snap_context) +
>> - snap_count *
>> - sizeof(struct rbd_image_snap_ondisk),
>> + snap_count * sizeof *ondisk,
>> gfp_flags);
>> if (!header->snapc)
>> return -ENOMEM;
>> @@ -498,8 +497,7 @@ static int rbd_header_from_disk(struct rbd_image_header
>> *header,
>> header->snapc->num_snaps = snap_count;
>> header->total_snaps = snap_count;
>>
>> - if (snap_count&&
>> - allocated_snaps == snap_count) {
>> + if (snap_count&& allocated_snaps == snap_count) {
>> for (i = 0; i< snap_count; i++) {
>> header->snapc->snaps[i] =
>> le64_to_cpu(ondisk->snaps[i].id);
>> @@ -2421,7 +2419,7 @@ static int rbd_sysfs_init(void)
>> rbd_bus_type.bus_attrs = rbd_bus_attrs;
>>
>> ret = bus_register(&rbd_bus_type);
>> - if (ret< 0)
>> + if (ret< 0)
>> return ret;
>>
>> ret = device_register(&rbd_root_dev);
>> @@ -2442,7 +2440,6 @@ int __init rbd_init(void)
>> rc = rbd_sysfs_init();
>> if (rc)
>> return rc;
>> - spin_lock_init(&node_lock);
>> pr_info("loaded " DRV_NAME_LONG "\n");
>> return 0;
>> }
>> --
>> 1.7.5.4
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>
>>
next prev parent reply other threads:[~2012-03-02 23:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-29 3:31 [PATCH 0/4] rbd: miscellaneous cleanups Alex Elder
2012-02-29 3:35 ` [PATCH 1/4] rbd: a few small cleanups Alex Elder
2012-03-02 19:44 ` Sage Weil
2012-03-02 23:22 ` Alex Elder [this message]
2012-02-29 3:35 ` [PATCH 2/4] rbd: make ceph_parse_options() return a pointer Alex Elder
2012-02-29 3:35 ` [PATCH 3/4] rbd: do not duplicate ceph_client pointer in rbd_device Alex Elder
2012-02-29 3:35 ` [PATCH 4/4] rbd: use a single value of snap_name to mean no snap Alex Elder
2012-02-29 4:53 ` Yehuda Sadeh Weinraub
2012-02-29 5:35 ` Alex Elder
2012-03-02 19:46 ` [PATCH 0/4] rbd: 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=4F515622.5040009@dreamhost.com \
--to=elder@dreamhost.com \
--cc=ceph-devel@vger.kernel.org \
--cc=sage@newdream.net \
/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.