From owner-freebsd-bugs@freebsd.org Wed Nov 11 17:28:04 2015 Return-Path: Delivered-To: freebsd-bugs@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 7BC95A2CD75 for ; Wed, 11 Nov 2015 17:28:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 674C81FC3 for ; Wed, 11 Nov 2015 17:28:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id tABHS4Rc092149 for ; Wed, 11 Nov 2015 17:28:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 204415] vnic/bgx driver does not build as a module Date: Wed, 11 Nov 2015 17:28:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Nov 2015 17:28:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204415 --- Comment #1 from Ed Maste --- I tried creating a naive/straightforward module Makefile and found errors in the module dependencies -- for example, thunder_bgx depends on octeon_mdio which seems like it is probably a copy-and-paste leftover. Do we expect this to be split in four separate modules (vf, pf, bgx, mdio)? volta% ag 'MODULE_DEPEND|DRIVER_MODULE' nicvf_main.c 130:DRIVER_MODULE(nicvf, pci, nicvf_driver, nicvf_devclass, 0, 0); 131:MODULE_DEPEND(nicvf, pci, 1, 1, 1); 132:MODULE_DEPEND(nicvf, ether, 1, 1, 1); 133:MODULE_DEPEND(nicvf, vnic_pf, 1, 1, 1); thunder_mdio_fdt.c 61:EARLY_DRIVER_MODULE(thunder_mdio, ofwbus, thunder_mdio_fdt_driver, thunder_bgx.c 111:DRIVER_MODULE(thunder_bgx, pci, thunder_bgx_driver, thunder_bgx_devclass, 0, 0); 112:MODULE_DEPEND(thunder_bgx, pci, 1, 1, 1); 113:MODULE_DEPEND(thunder_bgx, ether, 1, 1, 1); 114:MODULE_DEPEND(thunder_bgx, octeon_mdio, 1, 1, 1); nic_main.c 148:DRIVER_MODULE(nicpf, pci, nicpf_driver, nicpf_devclass, 0, 0); 149:MODULE_DEPEND(nicpf, pci, 1, 1, 1); 150:MODULE_DEPEND(nicpf, ether, 1, 1, 1); 151:MODULE_DEPEND(nicpf, thunder_bgx, 1, 1, 1); thunder_mdio.c 124:DRIVER_MODULE(miibus, thunder_mdio, miibus_driver, miibus_devclass, 0, 0); 125:MODULE_DEPEND(thunder_mdio, ether, 1, 1, 1); 126:MODULE_DEPEND(thunder_mdio, miibus, 1, 1, 1); -- You are receiving this mail because: You are the assignee for the bug.