Date: Mon, 23 Mar 2015 09:35:54 -0500 (CDT) From: Dan Mack <mack@macktronics.com> To: Alexander Motin <mav@FreeBSD.org> Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-10@freebsd.org Subject: Re: svn commit: r280363 - stable/10/usr.sbin/bhyve Message-ID: <alpine.BSF.2.20.1503230934390.39102@olive.macktronics.com> In-Reply-To: <201503231148.t2NBmQ7o024956@svn.freebsd.org> References: <201503231148.t2NBmQ7o024956@svn.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
I just tried to build 280369 and got this:
--- all_subdir_bhyve ---
/usr/src/usr.sbin/bhyve/pci_ahci.c:1512:8: error: use of undeclared identifier 'dsm'
ncq = dsm = 0;
^
1 error generated.
*** [pci_ahci.o] Error code 1
This is on 10.1-Stable
Dan
On Mon, 23 Mar 2015, Alexander Motin wrote:
> Author: mav
> Date: Mon Mar 23 11:48:25 2015
> New Revision: 280363
> URL: https://svnweb.freebsd.org/changeset/base/280363
>
> Log:
> MFC r280293: Add missing variable initialization.
>
> Reported by: Coverity
> CID: 1288938
>
> Modified:
> stable/10/usr.sbin/bhyve/pci_ahci.c
> Directory Properties:
> stable/10/ (props changed)
>
> Modified: stable/10/usr.sbin/bhyve/pci_ahci.c
> ==============================================================================
> --- stable/10/usr.sbin/bhyve/pci_ahci.c Mon Mar 23 11:47:01 2015 (r280362)
> +++ stable/10/usr.sbin/bhyve/pci_ahci.c Mon Mar 23 11:48:25 2015 (r280363)
> @@ -1509,7 +1509,7 @@ ata_ioreq_cb(struct blockif_req *br, int
>
> DPRINTF("%s %d\n", __func__, err);
>
> - ncq = 0;
> + ncq = dsm = 0;
> aior = br->br_param;
> p = aior->io_pr;
> cfis = aior->cfis;
> _______________________________________________
> svn-src-all@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/svn-src-all
> To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
>
dan
--
Dan Mack
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?alpine.BSF.2.20.1503230934390.39102>
