NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: kern/50219: USB keyboard not detected on server



The following reply was made to PR kern/50219; it has been noted by GNATS.

From: Nick Hudson <skrll%netbsd.org@localhost>
To: gnats-bugs%NetBSD.org@localhost, kern-bug-people%netbsd.org@localhost, 
 gnats-admin%netbsd.org@localhost, netbsd-bugs%netbsd.org@localhost
Cc: 
Subject: Re: kern/50219: USB keyboard not detected on server
Date: Wed, 09 Sep 2015 16:34:14 +0100

 This is a multi-part message in MIME format.
 --------------030803000706030807080904
 Content-Type: text/plain; charset=windows-1252; format=flowed
 Content-Transfer-Encoding: 7bit
 
 For the record extending the PCI MEM extent to cover 48bit physical 
 address space helps
 
 
 
 --------------030803000706030807080904
 Content-Type: text/x-patch;
  name="pr50219.diff"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="pr50219.diff"
 
 Index: sys/arch/x86/x86/bus_space.c
 ===================================================================
 RCS file: /cvsroot/src/sys/arch/x86/x86/bus_space.c,v
 retrieving revision 1.38
 diff -u -p -r1.38 bus_space.c
 --- sys/arch/x86/x86/bus_space.c	27 Jan 2012 18:53:07 -0000	1.38
 +++ sys/arch/x86/x86/bus_space.c	9 Sep 2015 15:31:02 -0000
 @@ -129,7 +129,7 @@ x86_bus_space_init(void)
  	ioport_ex = extent_create("ioport", 0x0, 0xffff,
  	    (void *)ioport_ex_storage, sizeof(ioport_ex_storage),
  	    EX_NOCOALESCE|EX_NOWAIT);
 -	iomem_ex = extent_create("iomem", 0x0, 0xffffffff,
 +	iomem_ex = extent_create("iomem", 0x0, 0xffffffffffff,
  	    (void *)iomem_ex_storage, sizeof(iomem_ex_storage),
  	    EX_NOCOALESCE|EX_NOWAIT);
  
 
 --------------030803000706030807080904--
 


Home | Main Index | Thread Index | Old Index