From owner-svn-doc-head@freebsd.org Tue Apr 10 16:44:51 2018 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62F6BF8602D; Tue, 10 Apr 2018 16:44:51 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from mail.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 385877C99F; Tue, 10 Apr 2018 16:44:50 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (ralph.baldwin.cx [66.234.199.215]) by mail.baldwin.cx (Postfix) with ESMTPSA id 02F5910AFD2; Tue, 10 Apr 2018 12:44:48 -0400 (EDT) From: John Baldwin To: Eitan Adler Cc: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: Re: svn commit: r51540 - head/en_US.ISO8859-1/books/handbook/virtualization Date: Tue, 10 Apr 2018 09:33:18 -0700 Message-ID: <1867954.MSNVI2QpNu@ralph.baldwin.cx> User-Agent: KMail/4.14.10 (FreeBSD/11.1-STABLE; KDE/4.14.30; amd64; ; ) In-Reply-To: <201804090800.w3980lsg065537@repo.freebsd.org> References: <201804090800.w3980lsg065537@repo.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mail.baldwin.cx); Tue, 10 Apr 2018 12:44:48 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.99.2 at mail.baldwin.cx X-Virus-Status: Clean X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Apr 2018 16:44:51 -0000 On Monday, April 09, 2018 08:00:47 AM Eitan Adler wrote: > Author: eadler > Date: Mon Apr 9 08:00:47 2018 > New Revision: 51540 > URL: https://svnweb.freebsd.org/changeset/doc/51540 > > Log: > handbook: prefer use of kld_list over loader.conf > > While these are not semantically identical, prefer using kld_list where > possible. Eh, /etc/rc.d/kld isn't guaranteed to run before /etc/rc.d/netif. That said, cloned_interfaces invokes 'ifconfig' without '-n' which means that ifconfig(8) will autoload the modules. Your change below left out 'if_bridge' from kld_list, and it should probably drop 'if_tap'. I'd probably also sort the list while at it ("nmdm vmm"). -- John Baldwin