From owner-freebsd-bugs@FreeBSD.ORG Tue Jul 22 12:12:21 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EAE0FF95 for ; Tue, 22 Jul 2014 12:12:20 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D37B82E9F for ; Tue, 22 Jul 2014 12:12:20 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s6MCCKgx062149 for ; Tue, 22 Jul 2014 12:12:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 192031] New: [ctl] link_elf_obj: symbol icl_pdu_new_bhs undefined Date: Tue, 22 Jul 2014 12:12:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: nbe@renzel.net X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: 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.18 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jul 2014 12:12:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192031 Bug ID: 192031 Summary: [ctl] link_elf_obj: symbol icl_pdu_new_bhs undefined Product: Base System Version: 10.0-STABLE Hardware: amd64 OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: nbe@renzel.net Hi, ================================================================================ root@discofox:/usr/src/#uname -v FreeBSD 10.0-STABLE #11 r268979M: Tue Jul 22 09:29:37 CEST 2014 root@discofox.local:/usr/obj/usr/src/sys/GENERIC root@discofox:/usr/src/#svnlite info Path: . Working Copy Root Path: /usr/src URL: svn://svn.freebsd.org/base/stable/10 Relative URL: ^/stable/10 Repository Root: svn://svn.freebsd.org/base Repository UUID: ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f Revision: 268981 Node Kind: directory Schedule: normal Last Changed Author: jhb Last Changed Rev: 268976 Last Changed Date: 2014-07-22 06:39:16 +0200 (Tue, 22 Jul 2014) root@discofox:/usr/src/#svnlite diff Index: sys/amd64/conf/GENERIC =================================================================== --- sys/amd64/conf/GENERIC (revision 268981) +++ sys/amd64/conf/GENERIC (working copy) @@ -348,3 +348,9 @@ # VMware support device vmx # VMware VMXNET3 Ethernet + +# VT +nodevice sc +nodevice vga +device vt +device vt_vga Index: sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c =================================================================== --- sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c (revision 268981) +++ sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c (working copy) @@ -78,7 +78,7 @@ assfail(const char *a, const char *f, int l) { - panic("solaris assert: %s, file: %s, line: %d", a, f, l); + printf("solaris assert: %s, file: %s, line: %d", a, f, l); return (0); } @@ -88,6 +88,6 @@ const char *f, int l) { - panic("solaris assert: %s (0x%jx %s 0x%jx), file: %s, line: %d", + printf("solaris assert: %s (0x%jx %s 0x%jx), file: %s, line: %d", a, lv, op, rv, f, l); } root@discofox:/usr/src/#kldload iscsi root@discofox:/usr/src/#kldload ctl kldload: an error occurred while loading the module. Please check dmesg(8) for more details. root@discofox:/usr/src/#dmesg -a | tail -10 iic15: on iicbus15 info: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). info: [drm] Driver supports precise vblank timestamp query. drmn0: taking over the fictitious range 0xc0000000-0xd0000000 fbd0 on drmn0 VT: Replacing driver "vga" with new "fb". info: [drm] Initialized i915 1.6.0 20080730 Jul 22 14:08:27 discofox sshd[1141]: error: PAM: authentication error for root from 10.2.0.7 link_elf_obj: symbol icl_pdu_new_bhs undefined linker_load_file: Unsupported file type root@discofox:/usr/src/#nm /boot/kernel/iscsi.ko | grep icl_pdu_new_bhs 0000000000003580 t icl_pdu_new_bhs ================================================================================ Regards, Nils -- You are receiving this mail because: You are the assignee for the bug.