[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] hvm: Remove noisy warnings associated with MOVS emulation.
# HG changeset patch # User kfraser@xxxxxxxxxxxxxxxxxxxxx # Date 1171899961 0 # Node ID b90180c2a057603ef5b2dfd1edd8f1f9a24d9a33 # Parent e846a7a444fa0eba895857d3597164f7abd3d508 hvm: Remove noisy warnings associated with MOVS emulation. Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx> --- xen/arch/x86/hvm/platform.c | 6 ------ 1 files changed, 6 deletions(-) diff -r e846a7a444fa -r b90180c2a057 xen/arch/x86/hvm/platform.c --- a/xen/arch/x86/hvm/platform.c Mon Feb 19 15:43:27 2007 +0000 +++ b/xen/arch/x86/hvm/platform.c Mon Feb 19 15:46:01 2007 +0000 @@ -1048,10 +1048,6 @@ void handle_mmio(unsigned long gpa) else dir = IOREQ_READ; - if ( addr & (size - 1) ) - gdprintk(XENLOG_WARNING, - "Unaligned ioport access: %lx, %d\n", addr, size); - /* * In case of a movs spanning multiple pages, we break the accesses * up into multiple pages (the device model works with non-continguous @@ -1065,8 +1061,6 @@ void handle_mmio(unsigned long gpa) if ( (addr & PAGE_MASK) != ((addr + size - 1) & PAGE_MASK) ) { unsigned long value = 0; - gdprintk(XENLOG_WARNING, - "Single io request in a movs crossing page boundary.\n"); mmio_op->flags |= OVERLAP; if ( dir == IOREQ_WRITE ) { _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |