Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 May 2019 13:00:20 +0000
From:      Alexey Dokuchaev <danfe@freebsd.org>
To:        Allan Jude <allanjude@freebsd.org>
Cc:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   Re: svn commit: r347953 - head/cddl/contrib/opensolaris/cmd/zfs
Message-ID:  <20190518130020.GA91640@FreeBSD.org>
In-Reply-To: <289b3593-421b-44e9-4c0b-d128f8648dcf@freebsd.org>
References:  <201905181227.x4ICRMsG073717@repo.freebsd.org> <20190518123708.GA73234@FreeBSD.org> <289b3593-421b-44e9-4c0b-d128f8648dcf@freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, May 18, 2019 at 04:53:35AM -0400, Allan Jude wrote:
> On 5/18/19 8:37 AM, Alexey Dokuchaev wrote:
> > On Sat, May 18, 2019 at 12:27:22PM +0000, Allan Jude wrote:
> >> New Revision: 347953
> >> URL: https://svnweb.freebsd.org/changeset/base/347953
> >>
> >> ...
> >> -				(void) nvlist_lookup_string(lnvl, propname,
> >> -				    &lvstr);
> >> -				(void) nvlist_lookup_string(rnvl, propname,
> >> -				    &rvstr);
> >> +				if ((nvlist_lookup_string(lnvl, propname,
> >> +						&lvstr) == ENOENT) ||
> >> +				    (nvlist_lookup_string(rnvl, propname,
> >> +						&rvstr) == ENOENT)) {
> >> +					goto compare_nums;
> >> +				}
> > 
> > Another thing not to like about ZoL: their completely bogus code style
> > and formatting practices (look at those "&rvstr) == ENOENT").  If they
> > are going to listen to us, can we at least try to convince them not to
> > break existing, much FreeBSD-like formatting?
> 
> They have strict CI that enforces Solaris cstyle, as that is what the
> code base has always used. No commit is merged until it passes that, and
> many other tests.

Hmm, OK then, sorry for the noise.  It looked rather bad in the email
client, but that's common issue with tabs, I should've checked better.

./danfe



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