search for: perard

Displaying 20 results from an estimated 66 matches for "perard".

Did you mean: gerard
2013 Nov 28
2
[PATCH] docs: Update xen_platform_pci in man xl.cfg
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- docs/man/xl.cfg.pod.5 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 index 3b227b7..ecdc816 100644 --- a/docs/man/xl.cfg.pod.5 +++ b/docs/man/xl.cfg.pod.5 @@ -1007,6 +1007,9 @@ drivers are available for var...
2012 Jul 27
9
[PATCH 0/3] libxl cd-insert/eject with qemu-xen
This patch series provides the facility to eject and insert a cdrom when the used device-model is qemu-xen. The only difference between both device-model is a call to a QMP command as `xl cd-insert ...` will still update xenstore, even if it''s not used by QEMU. Anthony PERARD (3): libxl_qmp, Introduce libxl__qmp_insert_cdrom. libxl_dm: Set an id to cdrom drives with qemuu. libxl: Fix cd-insert with qemu-xen. tools/libxl/libxl.c | 12 ++++++------ tools/libxl/libxl_dm.c | 7 ++++--- tools/libxl/libxl_internal.h | 1 + tools/libxl/libxl_qmp....
2011 Jun 29
5
[PATCH] xen: introduce xen_change_state_handler
From: Anthony PERARD <anthony.perard@citrix.com> Remove the call to xenstore_record_dm_state from xen_main_loop_prepare that is HVM specific. Add a new vm_change_state_handler shared between xen_pv and xen_hvm machines to record the VM state to xenstore. Signed-off-by: Anthony PERARD <anthony.perard@citrix.c...
2012 Jun 01
2
[PATCH] pygrub Makefile cleanup.
This patch removes the extra command `install pygrub` because this is already done by the setup.py script. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- This patch need to be applied after the patch named "Fix pygrub install." tools/pygrub/Makefile | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/tools/pygrub/Makefile b/tools/pygrub/Makefile index af2b8a5..bd22dd4 100644 ---...
2012 May 15
12
[PATCH 1/4] Introduce a new hotplug state: Force eject.
This hotplug state will be used to remove a device without the guest cooperation. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- hw/acpi_piix4.c | 5 +++++ hw/pci.h | 1 + 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c index 585da4e..dfd5a9d 100644 --- a/hw/acpi_piix4.c +++ b/hw/acpi_piix4.c @@ -587,6 +587,11 @@ static int p...
2012 Aug 17
4
[ANNOUNCE] Git mirror of Xen repositories available
...o-date). This one contains several branches: * master --> xen-unstable.hg * staging --> staging/xen-unstable.hg * stable-4.0 --> xen-4.0-testing.hg * stable-4.1 --> xen-4.1-testing.hg http://xenbits.xen.org/gitweb/?p=xen.git git://xenbits.xen.org/xen.git Regards, -- Anthony PERARD
2012 Feb 09
7
[PATCH V2 0/3] Set VNC password to QEMU upstream
Anthony PERARD (3): libxl_qmp: Use GC instead of CTX as parameter for _initialize. Provide dm_vnc() as a in libxl helper. libxl: Set VNC password through QMP tools/libxl/libxl_create.c | 2 +- tools/libxl/libxl_dm.c | 32 ++++++++++++++---------- tools/libxl/libxl_internal.h | 7 ++++- too...
2013 Nov 19
1
[PATCH] x86: fix emulation of indirect far calls and jumps
...quot;x86_emulate: PUSH <mem> must read source operand just once") corrected the operands of those of the operations of opcode extension group 5 that only read memory from SrcMem to DstMem, but failed to also switch the use of "dst" here to "src". Reported-by: Anthony Perard <anthony.perard@citrix.com> Signed-off-by: Jan Beulich <jbeulich@suse.com> Tested-by: Anthony Perard <anthony.perard@citrix.com> --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -3571,7 +3571,6 @@ x86_emulate( _regs.eip = s...
2013 Nov 15
1
[PATCH v2 OPW] libxl: change most remaining LIBXL_LOG to LOG in libxl_qmp.c
...ndle_response() and qmp_handle_error_response(). The new macros need access to a local libxl__gc *gc, so add it as a parameter to both these functions, and pass the instance in qmp_next() down the call chain to qmp_handle_response() and in turn to qmp_handle_error_response(). Suggested-by: Anthony PERARD <anthony.perard@citrix.com> Signed-off-by: Kelley Nielsen <kelleynnn@gmail.com> Reviewed-by: Anthony PERARD <anthony.perard@citrix.com> --- Changes since v1: removed <TAB>s tools/libxl/libxl_qmp.c | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(...
2012 Jul 23
2
[PATCH V2] qemu-xen-traditionnal, Fix dirty logging during migration.
...uld be migrated before the device model have written to it. But because we need to know the guest address and to avoid rewriting a new function, the call is moved to qemu_invalidate_entry. So this later has to new parameters, the length of the mapping and if it was a write. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- Change since first version: - No more extra function to get the guest address from a pointer. > The xc_hvm_modied_memory is moved to qemu_invalidate_entry hw/xen_machine_fv.c | 16 ++++++++++++++-- i386-dm/exec-dm.c | 6 +----- qemu-xen.h...
2011 Nov 04
2
[PATCH V3 REBASE 1/2] libxl_qmp: Introduce libxl__qmp_pci_del
To remove a pci passthough device from QEMU (upstream). Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- tools/libxl/libxl_internal.h | 2 ++ tools/libxl/libxl_qmp.c | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 0 deletions(-) diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h index 1dff211..84da6b1...
2013 Oct 09
6
Processed: Re: [HVM} xen_platform_pci=0 doesn't prevent platform device creation and disk and nic take over by PV drivers.
...xen_platform_pci=0 doesn''t prevent platform device creation and disk and nic take over by PV drivers.'' > title it xen_platform_pci=0 doesn''t work with qemu-xen Set title for #20 to `xen_platform_pci=0 doesn''t work with qemu-xen'' > owner it Anthony Perard <anthony.perard@citrix.com> Change owner for #20 to `Anthony Perard <anthony.perard@citrix.com>'' > thanks Finished processing. Modified/created Bugs: - 20: http://bugs.xenproject.org/xen/bug/20 (new) --- Xen Hypervisor Bug Tracker See http://wiki.xen.org/wiki/Reporting_Bu...
2012 Jan 19
3
[PATCH] libxl_qmp: Handle unexpected end-of-socket
When read() return 0, the current code just tries again. But this leads to an infinite loop if QEMU died too soon. Also, retry select if a signal was caught. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- tools/libxl/libxl_qmp.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/tools/libxl/libxl_qmp.c b/tools/libxl/libxl_qmp.c index 1777e44..d3b1d53 100644 --- a/tools/libxl/libxl_qmp.c +++ b/tools/libxl/libxl_qmp.c @@ -385,18 +385,2...
2012 Feb 08
7
[PATCH] libxl: Set VNC password through QMP
This patch provide the code to set the VNC password to QEMU upstream through VNC. The password is still stored in xenstore but will not be used by QEMU upstream. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- tools/libxl/libxl_create.c | 3 +++ tools/libxl/libxl_dm.c | 21 ++++++++++++--------- tools/libxl/libxl_internal.h | 1 + tools/libxl/libxl_qmp.c | 37 +++++++++++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 9 deletion...
2010 Aug 12
59
[PATCH 00/15] RFC xen device model support
Hi all, this is the long awaited patch series to add xen device model support in qemu; the main author is Anthony Perard. Developing this series we tried to come up with the cleanest possible solution from the qemu point of view, limiting the amount of changes to common code as much as possible. The end result still requires a couple of hooks in piix_pci but overall the impact should be very limited. The current seri...
2020 Feb 21
1
Re: build problem with libxl
On Fri, Feb 21, 2020 at 09:16:01AM +0100, Ján Tomko wrote: > [adding Anthony PERARD to cc since his name is next to > xen-4.12.2-1.el7's ChangeLog entry] > > Hi, Anthony! > > On Thu, Feb 20, 2020 at 07:10:38PM +0100, Christoph wrote: > > https://wiki.centos.org/HowTos/Xen/Xen4QuickStart > > > > configure:53501: checking for LIBXL > > c...
2013 Nov 27
20
[PATCH v2] Handle xen_platform_pci=0 case
...ot been handled. There is one patch left from the previous version. The patch that was adding qemu_machine_override have been removed as it is unnecessary. If someone wants to change the -machine, it can always add it to device_model_args_hvm, as QEMU appear to use the last one. Regards, Anthony PERARD (1): libxl: Handle xen_platform_pci=0 case with qemu-xen. tools/libxl/libxl_dm.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) -- Anthony PERARD
2012 Mar 19
0
[qemu-upstream-unstable test] 12357: trouble: blocked/broken
...locked n/a version targeted for testing: qemuu e1615984e765751b430f86be679c0b74b5d5cd15 baseline version: qemuu 86a8d63bc11431509506b95c1481e1a023302cbc ------------------------------------------------------------ People who touched revisions under test: Anthony PERARD <anthony.perard@citrix.com> Stefano Stabellini <stefano.stabellini@eu.citrix.com> ------------------------------------------------------------ jobs: build-amd64 broken build-i386 br...
2012 Apr 17
2
[PATCH BUILD FIX 0/2] build xc_hvm_inject_msi on Xen < 4.2
Hi all, this small patch series fixes the build breakage introduced by f1dbf015dfb0aa7f66f710a1f1bc58b662951de2 with Xen < 4.2. The problem is that xc_hvm_inject_msi is only defined from Xen 4.2 onwards so we need to provide a compatibility function for older Xen versions. Stefano Stabellini (2): xen,configure: detect Xen 4.2 xen: add a dummy xc_hvm_inject_msi for Xen < 4.2
2020 Feb 21
0
Re: build problem with libxl
On Fri, Feb 21, 2020 at 11:07:54AM +0000, Anthony PERARD wrote: >On Fri, Feb 21, 2020 at 09:16:01AM +0100, Ján Tomko wrote: >> [adding Anthony PERARD to cc since his name is next to >> xen-4.12.2-1.el7's ChangeLog entry] >> >> Hi, Anthony! >> >> On Thu, Feb 20, 2020 at 07:10:38PM +0100, Christoph wrote: >>...