Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Oct 2017 15:15:10 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r324975 - stable/11/cddl/contrib/opensolaris/cmd/zdb
Message-ID:  <201710251515.v9PFFAuh013505@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: asomers
Date: Wed Oct 25 15:15:09 2017
New Revision: 324975
URL: https://svnweb.freebsd.org/changeset/base/324975

Log:
  MFC r324222:
  
  MFV r316863: 3871 fix issues introduced by 3604
  
  illumos/illumos-gate@de05b58863498b10283637eb9ac85e92fe85150e
  https://github.com/illumos/illumos-gate/commit/de05b58863498b10283637eb9ac85e92fe85150e
  
  https://www.illumos.org/issues/3871
    GCC 4.5.3 on Gentoo Linux did not like a few of the changes made in the issue
    3604 patch. It printed an error and a couple of warnings:
    ../../cmd/zdb/zdb.c: In function 'dump_bpobj':
    ../../cmd/zdb/zdb.c:1257:3: error: 'for' loop initial declarations are only
    allowed in C99 mode
    ../../cmd/zdb/zdb.c:1257:3: note: use option -std=c99 or -std=gnu99 to compile
    your code
    ../../cmd/zdb/zdb.c: In function 'dump_deadlist':
    ../../cmd/zdb/zdb.c:1323:8: warning: too many arguments for format
    ../../cmd/zdb/zdb.c:1323:8: warning: too many arguments for format
  
  Reviewed by: Paul Dagnelie <pcd@delphix.com>
  Reviewed by: Matthew Ahrens <mahrens@delphix.com>
  Reviewed by: Serapheim Dimitropoulos <serapheim@delphix.com>
  Approved by: Dan McDonald <danmcd@omniti.com>
  Author: Richard Yao <ryao@gentoo.org>

Modified:
  stable/11/cddl/contrib/opensolaris/cmd/zdb/zdb.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/cddl/contrib/opensolaris/cmd/zdb/zdb.c
==============================================================================
--- stable/11/cddl/contrib/opensolaris/cmd/zdb/zdb.c	Wed Oct 25 15:11:08 2017	(r324974)
+++ stable/11/cddl/contrib/opensolaris/cmd/zdb/zdb.c	Wed Oct 25 15:15:09 2017	(r324975)
@@ -1587,8 +1587,9 @@ dump_deadlist(dsl_deadlist_t *dl)
 	    dle = AVL_NEXT(&dl->dl_tree, dle)) {
 		if (dump_opt['d'] >= 5) {
 			char buf[128];
-			(void) snprintf(buf, sizeof (buf), "mintxg %llu -> "
-			    "obj %llu", (longlong_t)dle->dle_mintxg,
+			(void) snprintf(buf, sizeof (buf),
+			    "mintxg %llu -> obj %llu",
+			    (longlong_t)dle->dle_mintxg,
 			    (longlong_t)dle->dle_bpobj.bpo_object);
 			dump_full_bpobj(&dle->dle_bpobj, buf, 0);
 		} else {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710251515.v9PFFAuh013505>