From owner-freebsd-stable@FreeBSD.ORG Tue Oct 2 21:11:20 2012 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AD36B106566C; Tue, 2 Oct 2012 21:11:20 +0000 (UTC) (envelope-from randy@psg.com) Received: from ran.psg.com (ran.psg.com [IPv6:2001:418:1::36]) by mx1.freebsd.org (Postfix) with ESMTP id 887248FC0A; Tue, 2 Oct 2012 21:11:20 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=rair.psg.com.psg.com) by ran.psg.com with esmtp (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TJ9kN-000Fb6-Hx; Tue, 02 Oct 2012 21:11:19 +0000 Date: Tue, 02 Oct 2012 22:11:18 +0100 Message-ID: From: Randy Bush To: Andriy Gapon In-Reply-To: <506AC4C3.1060103@FreeBSD.org> References: <201210010855.02130.jhb@freebsd.org> <201210010948.38713.jhb@freebsd.org> <506AC4C3.1060103@FreeBSD.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) Emacs/22.3 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII Cc: freebsd-stable@FreeBSD.org, John Baldwin Subject: Re: atkbd attach excitement during boot X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2012 21:11:20 -0000 > on 01/10/2012 17:56 Randy Bush said the following: >>> Humm. It seems this wasn't the actual faulting instruction. Can you do >>> 'l *0xffffffff80704740'? >> >> (gdb) l *0xffffffff80704740 >> 0xffffffff80704740 is in sckbdevent (/usr/src/sys/dev/syscons/syscons.c:743). >> 738 * the Xaccel-2.1 keyboard hang, but it can't hurt. XXX >> 739 */ >> 740 while ((c = scgetc(sc, SCGETC_NONBLOCK)) != NOKEY) { >> 741 >> 742 cur_tty = SC_DEV(sc, sc->cur_scp->index); >> 743 if (!tty_opened(cur_tty)) >> 744 continue; >> 745 >> 746 if ((*sc->cur_scp->tsw->te_input)(sc->cur_scp, c, cur_tty)) >> 747 continue; > > See r233661. thanks. now works. randy