* [Cluster-devel] cluster/gfs2 libgfs2/libgfs2.h libgfs2/ondisk. ...
@ 2007-06-18 21:35 rpeterso
0 siblings, 0 replies; 2+ messages in thread
From: rpeterso @ 2007-06-18 21:35 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: cluster
Changes by: rpeterso at sourceware.org 2007-06-18 21:35:58
Modified files:
gfs2/libgfs2 : libgfs2.h ondisk.c
gfs2/tool : sb.c
Log message:
Resolves: bz 244163: Incorrect output of gfs2_tool sb <dev> all
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/libgfs2/libgfs2.h.diff?cvsroot=cluster&r1=1.13&r2=1.14
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/libgfs2/ondisk.c.diff?cvsroot=cluster&r1=1.5&r2=1.6
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/tool/sb.c.diff?cvsroot=cluster&r1=1.2&r2=1.3
--- cluster/gfs2/libgfs2/libgfs2.h 2007/05/15 18:11:10 1.13
+++ cluster/gfs2/libgfs2/libgfs2.h 2007/06/18 21:35:58 1.14
@@ -546,7 +546,7 @@
extern void print_it(const char *label, const char *fmt,
const char *fmt2, ...);
#define pv(struct, member, fmt, fmt2) do { \
- print_it(" "#member":", fmt, fmt2, struct->member); \
+ print_it(" "#member, fmt, fmt2, struct->member); \
} while (FALSE);
#define pv2(struct, member, fmt, fmt2) do { \
print_it(" ", fmt, fmt2, struct->member); \
--- cluster/gfs2/libgfs2/ondisk.c 2006/06/14 13:55:11 1.5
+++ cluster/gfs2/libgfs2/ondisk.c 2007/06/18 21:35:58 1.6
@@ -167,8 +167,8 @@
gfs2_inum_print(&sb->sb_master_dir);
gfs2_inum_print(&sb->sb_root_dir);
- pv(sb, sb_lockproto, "%s", "0x%x");
- pv(sb, sb_locktable, "%s", "0x%x");
+ pv(sb, sb_lockproto, "%s", NULL);
+ pv(sb, sb_locktable, "%s", NULL);
}
void gfs2_rindex_in(struct gfs2_rindex *ri, char *buf)
--- cluster/gfs2/tool/sb.c 2006/05/05 18:06:09 1.2
+++ cluster/gfs2/tool/sb.c 2007/06/18 21:35:58 1.3
@@ -36,11 +36,12 @@
extern int gfs2_sb_out(struct gfs2_sb *sb, char *buf);
-void print_it(const char *label, const char *fmt, ...)
+void print_it(const char *label, const char *fmt, const char *fmt2, ...)
{
va_list args;
- va_start(args, fmt);
- printf("%s", label);
+
+ va_start(args, fmt2);
+ printf("%s = ", label);
vprintf(fmt, args);
printf("\n");
va_end(args);
^ permalink raw reply [flat|nested] 2+ messages in thread* [Cluster-devel] cluster/gfs2 libgfs2/libgfs2.h libgfs2/ondisk. ...
@ 2007-06-18 21:50 rpeterso
0 siblings, 0 replies; 2+ messages in thread
From: rpeterso @ 2007-06-18 21:50 UTC (permalink / raw)
To: cluster-devel.redhat.com
CVSROOT: /cvs/cluster
Module name: cluster
Branch: RHEL5
Changes by: rpeterso at sourceware.org 2007-06-18 21:50:00
Modified files:
gfs2/libgfs2 : libgfs2.h ondisk.c
gfs2/tool : sb.c
Log message:
Resolves: bz 244163: Incorrect output of gfs2_tool sb <dev> all
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/libgfs2/libgfs2.h.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.7.2.6&r2=1.7.2.7
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/libgfs2/ondisk.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.5&r2=1.5.2.1
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/tool/sb.c.diff?cvsroot=cluster&only_with_tag=RHEL5&r1=1.2&r2=1.2.2.1
--- cluster/gfs2/libgfs2/libgfs2.h 2007/05/15 18:21:08 1.7.2.6
+++ cluster/gfs2/libgfs2/libgfs2.h 2007/06/18 21:50:00 1.7.2.7
@@ -546,7 +546,7 @@
extern void print_it(const char *label, const char *fmt,
const char *fmt2, ...);
#define pv(struct, member, fmt, fmt2) do { \
- print_it(" "#member":", fmt, fmt2, struct->member); \
+ print_it(" "#member, fmt, fmt2, struct->member); \
} while (FALSE);
#define pv2(struct, member, fmt, fmt2) do { \
print_it(" ", fmt, fmt2, struct->member); \
--- cluster/gfs2/libgfs2/ondisk.c 2006/06/14 13:55:11 1.5
+++ cluster/gfs2/libgfs2/ondisk.c 2007/06/18 21:50:00 1.5.2.1
@@ -167,8 +167,8 @@
gfs2_inum_print(&sb->sb_master_dir);
gfs2_inum_print(&sb->sb_root_dir);
- pv(sb, sb_lockproto, "%s", "0x%x");
- pv(sb, sb_locktable, "%s", "0x%x");
+ pv(sb, sb_lockproto, "%s", NULL);
+ pv(sb, sb_locktable, "%s", NULL);
}
void gfs2_rindex_in(struct gfs2_rindex *ri, char *buf)
--- cluster/gfs2/tool/sb.c 2006/05/05 18:06:09 1.2
+++ cluster/gfs2/tool/sb.c 2007/06/18 21:50:00 1.2.2.1
@@ -36,11 +36,12 @@
extern int gfs2_sb_out(struct gfs2_sb *sb, char *buf);
-void print_it(const char *label, const char *fmt, ...)
+void print_it(const char *label, const char *fmt, const char *fmt2, ...)
{
va_list args;
- va_start(args, fmt);
- printf("%s", label);
+
+ va_start(args, fmt2);
+ printf("%s = ", label);
vprintf(fmt, args);
printf("\n");
va_end(args);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-06-18 21:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-18 21:35 [Cluster-devel] cluster/gfs2 libgfs2/libgfs2.h libgfs2/ondisk. rpeterso
-- strict thread matches above, loose matches on Subject: below --
2007-06-18 21:50 rpeterso
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.