Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Dec 2019 01:37:02 +0000 (UTC)
From:      Marcelo Araujo <araujo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r355839 - head/lib/libvmmapi
Message-ID:  <201912170137.xBH1b2bN038974@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: araujo
Date: Tue Dec 17 01:37:02 2019
New Revision: 355839
URL: https://svnweb.freebsd.org/changeset/base/355839

Log:
  Forgotten to remove the previous if statement in commit r355838.
  
  MFC after:	1 month
  Differential Revision:	https://reviews.freebsd.org/D19400

Modified:
  head/lib/libvmmapi/vmmapi.c

Modified: head/lib/libvmmapi/vmmapi.c
==============================================================================
--- head/lib/libvmmapi/vmmapi.c	Tue Dec 17 01:33:26 2019	(r355838)
+++ head/lib/libvmmapi/vmmapi.c	Tue Dec 17 01:37:02 2019	(r355839)
@@ -106,10 +106,8 @@ int
 vm_create(const char *name)
 {
 	/* Try to load vmm(4) module before creating a guest. */
-	if (modfind("vmm") < 0) {
-		if (modfind("vmm") < 0)
-			kldload("vmm");
-	}
+	if (modfind("vmm") < 0)
+		kldload("vmm");
 	return (CREATE((char *)name));
 }
 



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