From owner-p4-projects@FreeBSD.ORG Sat Jun 17 20:29:40 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 11BB616A47D; Sat, 17 Jun 2006 20:29:40 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E289716A47B for ; Sat, 17 Jun 2006 20:29:39 +0000 (UTC) (envelope-from kmacy@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 124EF43D64 for ; Sat, 17 Jun 2006 20:29:33 +0000 (GMT) (envelope-from kmacy@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k5HKTWk4001137 for ; Sat, 17 Jun 2006 20:29:32 GMT (envelope-from kmacy@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5HKTWLn001134 for perforce@freebsd.org; Sat, 17 Jun 2006 20:29:32 GMT (envelope-from kmacy@freebsd.org) Date: Sat, 17 Jun 2006 20:29:32 GMT Message-Id: <200606172029.k5HKTWLn001134@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to kmacy@freebsd.org using -f From: Kip Macy To: Perforce Change Reviews Cc: Subject: PERFORCE change 99462 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 20:29:40 -0000 http://perforce.freebsd.org/chv.cgi?CH=99462 Change 99462 by kmacy@kmacy_storage:sun4v_work on 2006/06/17 20:28:53 fix hv_cnputchar to return error code fix console to handle H_EWOULDBLOCK Affected files ... .. //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/hcall.S#8 edit .. //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/hvcons.c#5 edit Differences ... ==== //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/hcall.S#8 (text+ko) ==== @@ -402,9 +402,8 @@ ENTRY(hv_cnputchar) mov CONS_WRITE, %o5 ta FAST_TRAP - tst %o0 retl - movnz %xcc, -1, %o0 + nop SET_SIZE(hv_cnputchar) /* ==== //depot/projects/kmacy_sun4v/src/sys/sun4v/sun4v/hvcons.c#5 (text+ko) ==== @@ -46,7 +46,7 @@ #include #include -#define HVCN_POLL_FREQ 4 +#define HVCN_POLL_FREQ 10 static d_open_t hvcn_open; @@ -64,6 +64,7 @@ static struct resource *hvcn_irq; static void *hvcn_intrhand; +static int prevchar = 0; static int polltime; static struct callout_handle hvcn_timeouthandle = CALLOUT_HANDLE_INITIALIZER(&hvcn_timeouthandle); @@ -243,7 +244,6 @@ int error; error = 0; - do { if (c == '\n') error = hv_cnputchar('\r'); @@ -266,21 +266,23 @@ static void hvcn_tty_start(struct tty *tp) { - int error; + int c; - if (tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP)) { - ttwwakeup(tp); - return; - } + if (!(tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP))) { + tp->t_state |= TS_BUSY; + + if (prevchar && (hv_cnputchar(prevchar) != H_EWOULDBLOCK)) + prevchar = 0; + while (tp->t_outq.c_cc != 0) { + c = prevchar = getc(&tp->t_outq); - tp->t_state |= TS_BUSY; - error = 0; - while (tp->t_outq.c_cc != 0 && error != H_EWOULDBLOCK) - error = hv_cnputchar(getc(&tp->t_outq)); - - tp->t_state &= ~TS_BUSY; - - ttwwakeup(tp); + if (hv_cnputchar(prevchar) == H_EWOULDBLOCK) + break; + prevchar = 0; + } + tp->t_state &= ~TS_BUSY; + ttwwakeup(tp); + } } static void @@ -303,8 +305,9 @@ while ((c = hvcncheckc(NULL)) != -1) if (tp->t_state & TS_ISOPEN) ttyld_rint(tp, c); - + if (tp->t_outq.c_cc != 0 || prevchar != 0) + hvcn_tty_start(tp); } static void