From owner-svn-src-head@FreeBSD.ORG Tue Dec 9 08:56:02 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 43956A23; Tue, 9 Dec 2014 08:56:02 +0000 (UTC) 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 300642AA; Tue, 9 Dec 2014 08:56:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB98u25i022383; Tue, 9 Dec 2014 08:56:02 GMT (envelope-from hselasky@FreeBSD.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB98u2e2022382; Tue, 9 Dec 2014 08:56:02 GMT (envelope-from hselasky@FreeBSD.org) Message-Id: <201412090856.sB98u2e2022382@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: hselasky set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky Date: Tue, 9 Dec 2014 08:56:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r275636 - head/sys/ofed/include/linux X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Dec 2014 08:56:02 -0000 Author: hselasky Date: Tue Dec 9 08:56:01 2014 New Revision: 275636 URL: https://svnweb.freebsd.org/changeset/base/275636 Log: Move OFED init a bit earlier so that PXE boot works. MFC after: 3 days Sponsored by: Mellanox Technologies Modified: head/sys/ofed/include/linux/module.h Modified: head/sys/ofed/include/linux/module.h ============================================================================== --- head/sys/ofed/include/linux/module.h Tue Dec 9 07:55:37 2014 (r275635) +++ head/sys/ofed/include/linux/module.h Tue Dec 9 08:56:01 2014 (r275636) @@ -49,9 +49,9 @@ #define EXPORT_SYMBOL_GPL(name) /* OFED pre-module initialization */ -#define SI_SUB_OFED_PREINIT (SI_SUB_KTHREAD_INIT - 2) +#define SI_SUB_OFED_PREINIT (SI_SUB_ROOT_CONF - 2) /* OFED default module initialization */ -#define SI_SUB_OFED_MODINIT (SI_SUB_KTHREAD_INIT - 1) +#define SI_SUB_OFED_MODINIT (SI_SUB_ROOT_CONF - 1) #include