From: wysochanski@sourceware.org <wysochanski@sourceware.org>
To: lvm-devel@redhat.com
Subject: LVM2/lib/metadata metadata.c
Date: 12 Jun 2007 21:39:49 -0000 [thread overview]
Message-ID: <20070612213949.19231.qmail@sourceware.org> (raw)
CVSROOT: /cvs/lvm2
Module name: LVM2
Changes by: wysochanski at sourceware.org 2007-06-12 21:39:49
Modified files:
lib/metadata : metadata.c
Log message:
Change PV_HANDLE_DEREF to pv_field and add paren's
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/metadata/metadata.c.diff?cvsroot=lvm2&r1=1.111&r2=1.112
--- LVM2/lib/metadata/metadata.c 2007/06/12 21:20:20 1.111
+++ LVM2/lib/metadata/metadata.c 2007/06/12 21:39:49 1.112
@@ -29,10 +29,10 @@
#include <sys/param.h>
/*
- * FIXME: Check for valid handle before dereferencing member or log error?
+ * FIXME: Check for valid handle before dereferencing field or log error?
*/
-#define PV_HANDLE_DEREF(H, M) \
- (((struct physical_volume *)H)->M)
+#define pv_field(handle, field) \
+ (((struct physical_volume *)(handle))->field)
static struct physical_volume *_pv_read(struct cmd_context *cmd,
const char *pv_name,
@@ -1746,55 +1746,55 @@
*/
struct id get_pv_id (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, id);
+ return pv_field(pv_handle, id);
}
const struct format_type *get_pv_format_type (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, fmt);
+ return pv_field(pv_handle, fmt);
}
struct id get_pv_vgid (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, vgid);
+ return pv_field(pv_handle, vgid);
}
struct device *get_pv_dev (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, dev);
+ return pv_field(pv_handle, dev);
}
const char *get_pv_vg_name (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, vg_name);
+ return pv_field(pv_handle, vg_name);
}
uint64_t get_pv_size(void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, size);
+ return pv_field(pv_handle, size);
}
uint32_t get_pv_status (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, status);
+ return pv_field(pv_handle, status);
}
uint32_t get_pv_pe_size (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, pe_size);
+ return pv_field(pv_handle, pe_size);
}
uint64_t get_pv_pe_start (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, pe_start);
+ return pv_field(pv_handle, pe_start);
}
uint32_t get_pv_pe_count (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, pe_count);
+ return pv_field(pv_handle, pe_count);
}
uint32_t get_pv_pe_alloc_count (void *pv_handle)
{
- return PV_HANDLE_DEREF(pv_handle, pe_alloc_count);
+ return pv_field(pv_handle, pe_alloc_count);
}
next reply other threads:[~2007-06-12 21:39 UTC|newest]
Thread overview: 71+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-06-12 21:39 wysochanski [this message]
-- strict thread matches above, loose matches on Subject: below --
2007-06-13 21:14 LVM2/lib/metadata metadata.c wysochanski
2007-07-12 4:12 wysochanski
2007-08-06 21:11 wysochanski
2007-10-12 21:08 wysochanski
2008-01-16 22:52 agk
2008-01-22 16:02 agk
2008-08-13 13:42 zkabelac
2009-01-26 22:22 agk
2009-02-23 16:53 mbroz
2009-04-02 15:01 mbroz
2009-04-10 10:01 mbroz
2009-04-28 17:46 wysochanski
2009-05-13 1:48 agk
2009-06-10 16:14 wysochanski
2009-07-01 17:03 wysochanski
2009-07-16 20:18 wysochanski
2009-07-24 15:15 wysochanski
2009-07-26 1:52 wysochanski
2009-07-26 1:53 wysochanski
2009-07-26 12:41 wysochanski
2009-07-28 20:41 agk
2009-08-10 17:15 wysochanski
2009-09-02 21:39 wysochanski
2009-10-05 20:02 wysochanski
2009-10-05 20:02 wysochanski
2009-11-19 13:44 mornfall
2009-12-16 19:26 mornfall
2010-01-07 14:29 zkabelac
2010-01-21 21:04 wysochanski
2010-01-21 21:04 wysochanski
2010-02-24 18:15 wysochanski
2010-04-01 11:45 agk
2010-04-01 13:08 agk
2010-04-06 14:03 wysochanski
2010-04-08 15:18 wysochanski
2010-06-28 20:35 wysochanski
2010-06-28 20:35 wysochanski
2010-06-28 20:37 wysochanski
2010-06-28 20:38 wysochanski
2010-06-28 20:38 wysochanski
2010-06-30 14:27 agk
2010-06-30 14:48 wysochanski
2010-06-30 14:52 agk
2010-06-30 14:54 agk
2010-06-30 19:55 wysochanski
2010-07-06 17:26 agk
2010-07-06 17:27 agk
2010-07-06 17:29 agk
2010-07-06 20:09 agk
2010-07-08 17:41 wysochanski
2010-07-09 16:57 wysochanski
2010-07-30 16:47 wysochanski
2010-10-25 13:35 zkabelac
2010-11-30 11:15 mornfall
2010-12-14 17:07 mornfall
2011-02-14 19:27 mornfall
2011-02-15 2:07 ` Alasdair G Kergon
2011-02-15 10:22 ` Milan Broz
2011-02-21 12:13 prajnoha
2011-03-10 22:39 zkabelac
2011-03-30 13:35 zkabelac
2011-04-01 14:54 prajnoha
2012-01-25 8:50 zkabelac
2012-02-12 20:19 agk
2012-02-27 9:51 zkabelac
2012-02-28 11:10 zkabelac
2012-02-29 0:18 mornfall
2012-02-29 0:19 mornfall
2012-03-01 9:46 zkabelac
2012-03-12 14:43 zkabelac
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=20070612213949.19231.qmail@sourceware.org \
--to=wysochanski@sourceware.org \
--cc=lvm-devel@redhat.com \
/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.