WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] console=com?L broken

To: xen-devel@xxxxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] console=com?L broken
From: Christian Limpach <chris@xxxxxx>
Date: Wed, 10 Mar 2004 17:05:19 +0100
Delivery-date: Wed, 10 Mar 2004 16:20:48 +0000
Envelope-to: steven.hand@xxxxxxxxxxxx
List-archive: <http://sourceforge.net/mailarchive/forum.php?forum=xen-devel>
List-help: <mailto:xen-devel-request@lists.sourceforge.net?subject=help>
List-id: List for Xen developers <xen-devel.lists.sourceforge.net>
List-post: <mailto:xen-devel@lists.sourceforge.net>
List-subscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=subscribe>
List-unsubscribe: <https://lists.sourceforge.net/lists/listinfo/xen-devel>, <mailto:xen-devel-request@lists.sourceforge.net?subject=unsubscribe>
Sender: xen-devel-admin@xxxxxxxxxxxxxxxxxxxxx
User-agent: Internet Messaging Program (IMP) 3.2.2
Hello!

console=com?L doesn't work because the output routine clears the 7 lower
bits instead of the high bit.

*** xen/drivers/char/serial.c   2004/03/10 15:46:16     1.1
--- xen/drivers/char/serial.c   2004/03/10 15:46:34
***************
*** 129,135 ****
      if ( handle & SERHND_HI )
          c |= 0x80;
      else if ( handle & SERHND_LO )
!         c &= ~0x7f;
  
      while ( !(inb(uart->io_base + LSR) & LSR_THRE) )
          barrier();
--- 129,135 ----
      if ( handle & SERHND_HI )
          c |= 0x80;
      else if ( handle & SERHND_LO )
!         c &= 0x7f;
  
      while ( !(inb(uart->io_base + LSR) & LSR_THRE) )
          barrier();

-- 
Christian Limpach <chris@xxxxxx>



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] console=com?L broken, Christian Limpach <=