From owner-svn-src-stable@freebsd.org Thu Oct 13 06:32:22 2016 Return-Path: Delivered-To: svn-src-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB2A1C0F312; Thu, 13 Oct 2016 06:32:22 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8792FAA1; Thu, 13 Oct 2016 06:32:22 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9D6WL3o095999; Thu, 13 Oct 2016 06:32:21 GMT (envelope-from np@FreeBSD.org) Received: (from np@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9D6WLJ4095998; Thu, 13 Oct 2016 06:32:21 GMT (envelope-from np@FreeBSD.org) Message-Id: <201610130632.u9D6WLJ4095998@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: np set sender to np@FreeBSD.org using -f From: Navdeep Parhar Date: Thu, 13 Oct 2016 06:32:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r307183 - stable/10/usr.sbin/bhyve X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Oct 2016 06:32:22 -0000 Author: np Date: Thu Oct 13 06:32:21 2016 New Revision: 307183 URL: https://svnweb.freebsd.org/changeset/base/307183 Log: bhyve(8): Fix typo from r294294 that prevented bhyve from working with vmnet devices. This is a direct commit to stable/10. Modified: stable/10/usr.sbin/bhyve/pci_virtio_net.c Modified: stable/10/usr.sbin/bhyve/pci_virtio_net.c ============================================================================== --- stable/10/usr.sbin/bhyve/pci_virtio_net.c Thu Oct 13 06:19:54 2016 (r307182) +++ stable/10/usr.sbin/bhyve/pci_virtio_net.c Thu Oct 13 06:32:21 2016 (r307183) @@ -851,7 +851,7 @@ pci_vtnet_init(struct vmctx *ctx, struct if (strncmp(devname, "vale", 4) == 0) pci_vtnet_netmap_setup(sc, devname); if ((strncmp(devname, "tap", 3) == 0) || - (strncmp(devname, "vmmnet", 5) == 0)) + (strncmp(devname, "vmnet", 5) == 0)) pci_vtnet_tap_setup(sc, devname); free(devname);