From mboxrd@z Thu Jan 1 00:00:00 1970 From: rpeterso@sourceware.org Date: 18 Jun 2007 21:50:00 -0000 Subject: [Cluster-devel] cluster/gfs2 libgfs2/libgfs2.h libgfs2/ondisk. ... Message-ID: <20070618215000.29233.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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 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);