search for: 3ac19fda0bc2

Displaying 3 results from an estimated 3 matches for "3ac19fda0bc2".

2007 Mar 05
2
[PATCH] Make save/restore of multiple VCPU contexts arch dependent
We need to look at how to support this on ia64, so how about making this an architecture dependent feature for now? Not sure what powerpc needs here, so I''m just lumping it into the old way bucket. Thanks, Alex Signed-off-by: Alex Williamson <alex.williamson@hp.com> --- diff -r 3ac19fda0bc2 tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Fri Mar 02 12:11:52 2007 +0000 +++ b/tools/python/xen/xend/XendDomainInfo.py Mon Mar 05 10:30:22 2007 -0700 @@ -775,13 +775,18 @@ class XendDomainInfo: t.write(''vm'', self.vmpath)...
2007 Mar 03
5
[PATCH] Compile issue with tools/libfsimage/iso9660
Compile issue with tools/libfsimage/iso9660 char vs unsigned char signedness causes a warning when compiling iso9660 (xen-unstable). This patch changes the unsigned char * for char *. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> diff -r 8eff89a69521 tools/libfsimage/iso9660/fsys_iso9660.c --- a/tools/libfsimage/iso9660/fsys_iso9660.c Fri Mar 02 18:42:00 2007 -0500 +++
2007 Mar 20
62
RFC: [0/2] Remove netloop by lazy copying in netback
Hi Keir: These two patches remove the need for netloop by performing the copying in netback and only if it is necessary. The rationale is that most packets will be processed without delay allowing them to be freed without copying at all. So instead of copying every packet destined to dom0 we''ll only copy those that linger longer than a specified amount of time (currently 0.5s). As it