From owner-svn-src-all@FreeBSD.ORG Fri Jun 5 20:38:23 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1B54610; Fri, 5 Jun 2015 20:38:23 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 BF98A1955; Fri, 5 Jun 2015 20:38:23 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t55KcNKg030822; Fri, 5 Jun 2015 20:38:23 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t55KcN69030821; Fri, 5 Jun 2015 20:38:23 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201506052038.t55KcN69030821@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Fri, 5 Jun 2015 20:38:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r284045 - in stable: 10/sys/modules/oce 9/sys/modules/oce X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jun 2015 20:38:23 -0000 Author: jhb Date: Fri Jun 5 20:38:22 2015 New Revision: 284045 URL: https://svnweb.freebsd.org/changeset/base/284045 Log: MFC 281932: Rename the kld for oce(4) to if_oce.ko. ifconfig(8) has special knowledge about kld filenames for network drivers that requires them to follow the pattern of if_. This also fixes the existing documentation in the manpage which says to use if_oce_load=YES in loader.conf. PR: 199095 Modified: stable/9/sys/modules/oce/Makefile Directory Properties: stable/9/sys/ (props changed) stable/9/sys/modules/ (props changed) Changes in other areas also in this revision: Modified: stable/10/sys/modules/oce/Makefile Directory Properties: stable/10/ (props changed) Modified: stable/9/sys/modules/oce/Makefile ============================================================================== --- stable/9/sys/modules/oce/Makefile Fri Jun 5 20:30:36 2015 (r284044) +++ stable/9/sys/modules/oce/Makefile Fri Jun 5 20:38:22 2015 (r284045) @@ -3,7 +3,7 @@ # .PATH: ${.CURDIR}/../../dev/oce -KMOD = oce +KMOD = if_oce SRCS = oce_if.c oce_hw.c oce_mbox.c oce_util.c oce_queue.c oce_sysctl.c SRCS += bus_if.h device_if.h pci_if.h opt_inet.h opt_inet6.h