search for: kmansley

Displaying 10 results from an estimated 10 matches for "kmansley".

Did you mean: mansley
2007 Jun 07
4
blkif_map error starting fourth guest domain
I''m having problems starting more than three domains. It sometimes works fine, but more often than not the 4th domain''s root block device times out and so the domU kernel panics as there''s no /dev/root: XENBUS: Timeout connecting to device: device/vbd/2057 (state 6) XENBUS: Timeout connecting to device: device/vif/0 (state 6) XENBUS: Timeout connecting to device:
2007 Apr 05
3
Swiotlb
While writing a driver for a device doing lots of DMA I''ve hit an "swiotlb_full()" problem. This surprised me somewhat as I wouldn''t have expected to need the use of the software TLB - it''s a 64 bit capable device on a server with only 2 GB of RAM, and so I''d have expected to be using a hardware TLB. Is this a peculiarity of Xen, or should I be right
2008 Feb 26
0
[PATCH] Fix request_module/modprobe deadlock in netfront accelerator
...ctly what - I''ve not managed to reproduce it myself) seems to try to flush the workqueue, and so it deadlocks. This patch fixes the problem by giving the accel watch work item its own workqueue, and so modprobe can successfully flush the system-wide one. Signed-off-by Kieran Mansley <kmansley@solarflare.com> diff -r 1edfea26a2a9 drivers/xen/netfront/accel.c --- a/drivers/xen/netfront/accel.c +++ b/drivers/xen/netfront/accel.c @@ -60,6 +60,9 @@ static struct list_head accelerators_lis /* Lock to protect access to accelerators_list */ static spinlock_t accelerators_lock; +/* Workq...
2007 May 08
0
[PATCH 1/4] Support accelerated network plugin modules
Add two new functions: xenbus_for_each_backend and xenbus_for_each_frontend to iterate the backend and frontend buses respectively and apply the supplied test to each one. Signed-off-by: Kieran Mansley <kmansley@solarflare.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Oct 30
0
[Patch 6/8] Netfront accelerator bug fixes
cleanup accelerators list on netfront unload Signed-off-by <kmansley@solarflare.com> diff -r fdfd708d2ec4 drivers/xen/netfront/accel.c --- a/drivers/xen/netfront/accel.c Wed Oct 24 15:38:35 2007 +0100 +++ b/drivers/xen/netfront/accel.c Wed Oct 24 16:25:57 2007 +0100 @@ -75,6 +75,24 @@ void netif_init_accel(void) spin_lock_init(&accelerators_lock); } +vo...
2010 Jan 07
0
[PATCH 3/3] Update SFC net drivers
...3.0.2.2074 Add support for direct guest access and acceleration of SFC9000 series NICs. Improve handling of NIC reset in sfc_netback Remove nic_index state and replace with if_index from struct net_device Remove duplication of header files with sfc_resource driver Signed-off-by: Kieran Mansley <kmansley@solarflare.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Oct 03
0
[PATCH 6/6] Network acceleration improvements
Signed-off-by: Kieran Mansley <kmansley@solarflare.com> Cleanup vif_state on device removal diff -r f992a517aba5 drivers/xen/netfront/accel.c --- a/drivers/xen/netfront/accel.c Wed Oct 03 13:41:33 2007 +0100 +++ b/drivers/xen/netfront/accel.c Wed Oct 03 13:45:55 2007 +0100 @@ -500,6 +500,30 @@ EXPORT_SYMBOL_GPL(netfront_accelerator...
2007 Oct 03
0
[PATCH 3/3] TLB flushing and IO memory mapping
Signed-off-by: Kieran Mansley <kmansley@solarflare.com> Allow iomem permissions to be set up through grant table ops diff -r 749b60ccc177 xen/arch/x86/mm.c --- a/xen/arch/x86/mm.c Wed Jul 25 14:03:08 2007 +0100 +++ b/xen/arch/x86/mm.c Wed Jul 25 14:03:12 2007 +0100 @@ -594,6 +594,14 @@ get_##level##_linear_pagetable(...
2006 Dec 01
1
[PATCH 2/10] Add support for netfront/netback acceleration drivers
...g dom0. This is in response to the RFC we posted to xen-devel with an outline of our approach at the end of September. To follow will be another set of patches to provide our hardware specific drivers and plugins. The above set are all hardware-agnostic and so of wider relevance. Signed-off-by: kmansley@solarflare.com The following describes each of the patches that are attached. readonlyiomem: - Add ability to grant and map iomem pages readonly Support mapping iomem readonly (as well as existing read/write) diff -r b58bcd6551e2 linux-2.6-xen-sparse/arch/i386/mm/ioremap-xen.c --- a/linux-2....
2006 Dec 01
0
[PATCH 3/10] Add support for netfront/netback acceleration drivers
...g dom0. This is in response to the RFC we posted to xen-devel with an outline of our approach at the end of September. To follow will be another set of patches to provide our hardware specific drivers and plugins. The above set are all hardware-agnostic and so of wider relevance. Signed-off-by: kmansley@solarflare.com The following describes each of the patches that are attached. domctlkernelfix - Copy xen/include/public/domctl.h to linux-2.6-xen-sparse/include/xen. One of the dom0_ops (iomem_permission) that we were previously using (to grant a domU access to an iomem page from dom0) was r...