From owner-freebsd-bugs@FreeBSD.ORG Thu Mar 13 20:20:01 2014 Return-Path: Delivered-To: freebsd-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7BE377FD for ; Thu, 13 Mar 2014 20:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4D485AAE for ; Thu, 13 Mar 2014 20:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2DKK1dd046493 for ; Thu, 13 Mar 2014 20:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2DKK1mA046492; Thu, 13 Mar 2014 20:20:01 GMT (envelope-from gnats) Date: Thu, 13 Mar 2014 20:20:01 GMT Message-Id: <201403132020.s2DKK1mA046492@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org Cc: From: Alan Somers Subject: Re: kern/187015: panic: make_dev_credv: bad si_name (error=17, si_name=agpgart) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Alan Somers List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2014 20:20:01 -0000 The following reply was made to PR kern/187015; it has been noted by GNATS. From: Alan Somers To: bug-followup@FreeBSD.org, sem@semmy.ru Cc: Subject: Re: kern/187015: panic: make_dev_credv: bad si_name (error=17, si_name=agpgart) Date: Thu, 13 Mar 2014 14:12:50 -0600 It looks like agp_generic_attach is trying to create two device nodes both named "/dev/agpgart" with no unit numbers. That's a no-no, which is why you're getting EEXIST (errno 17). As a workaround, try disabling merely one of your two AGP devices. That will probably fix the panic. The next question is: why do you have two AGP devices?