similar to: [PATCH] xend: Fix VDI.get_record

Displaying 20 results from an estimated 11000 matches similar to: "[PATCH] xend: Fix VDI.get_record"

2006 Jul 06
3
[PATCH] Fix argument check of xm reboot command (3)
Hi, I tested unlikely operations about the xm reboot/shutdown command. As a result, I found the following problems. Problem 1: Can reboot/shutdown Domain-0 by mistake. # xm list Name ID Mem(MiB) VCPUs State Time(s) Domain-0 0 1024 2 r----- 31.0 # xm reboot 0 Error: Can''t specify Domain-0 # xm reboot 00 #
2007 Aug 27
1
[Xen-ia64-devel] [PATCH][RFC] Fix error message for xm create command
Hi, When I tested xm create command, I saw the following error message. I expected an error message "Error: (12, ''Cannot allocate memory'')" because I intentionally caused a memory shortage on the test. But the error message was different from my expectation. # xm create /xen/HVMdomain.1 Using config file "/xen/HVMdomain.1". Error: an integer is required
2006 Jan 26
2
do_* declarations (was: Re: [Xen-ia64-devel] [PATCH] added multicall)
Hi, on ia64, the do_* functions for hypercalls are called in C. However, they are not declared in any .h file. I think it is cleaner to declare them in an header file rather than locally. The question is in which header file. Thank you for any suggestion. The do_* functions are at least: extern long do_ni_hypercall(void); extern long do_dom0_op(dom0_op_t *u_dom0_op); extern long
2007 Jul 09
0
[PATCH] Fix xm sysrq command for inactive managed domain
Hi, I tried to test a wrong operation on purpose again. When I tried xm sysrq command to a inactive managed domain, I saw the following error message. The error message did not have a message text behind "Error:". And I found an AssertionError message in xend.log. # xm list PVdomain.1 Name ID Mem VCPUs State Time(s) PVdomain.1
2008 Jan 17
0
[PATCH] Fix xm restore command
Hi, I found minor bugs in xm restore command. 1) When I gave a wrong check point file, a return code of command was 0. # touch /tmp/dummy # xm restore /tmp/dummy Error: not a valid guest state file: signature read # echo $? 0 2) When Xend had been stopping, I saw the following traceback message. # xend stop # xm restore /xen/save.vm1 Unexpected error: exceptions.AttributeError Please
2008 Feb 28
0
[PATCH] Remove duplicate setResume()
Hi, I found two setResume()s in XendDomainInfo.py. One or the other is not necessary, is it? # grep -n -A 2 setResume ./tools/python/xen/xend/XendDomainInfo.py 1394: def setResume(self, isresume): 1395- self._resume = isresume 1396- -- 1409: def setResume(self, state): 1410- self._resume = state 1411- Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com> Best
2008 Oct 28
0
[PATCH] Fix typo in waitForBackend() for phantom VBDs
Hi, I believe that a value of "result[''status'']" is an integer, isn''t a character string. diff -r 8d41996e6897 tools/python/xen/xend/server/DevController.py --- a/tools/python/xen/xend/server/DevController.py Mon Oct 27 18:51:52 2008 +0000 +++ b/tools/python/xen/xend/server/DevController.py Tue Oct 28 09:14:53 2008 +0900 @@ -542,7 +542,7 @@ class
2008 Feb 28
0
[PATCH] Fix error message of xm suspend for Domain-0
Hi, This patch fixes a error message of xm suspend command for Domain-0. Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com> Best regards, Kan diff -r 2a8eaba24bf0 tools/python/xen/xend/XendDomain.py --- a/tools/python/xen/xend/XendDomain.py Tue Feb 26 15:11:51 2008 +0000 +++ b/tools/python/xen/xend/XendDomain.py Thu Feb 28 14:23:39 2008 +0900 @@ -865,7 +865,7 @@
2007 Dec 04
0
[PATCH] Fix help message of on_xend_stop
Hi, Maybe typo? Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com> Best regards, Kan diff -r 3057f813da14 tools/python/xen/xm/create.py --- a/tools/python/xen/xm/create.py Thu Nov 29 19:30:33 2007 +0000 +++ b/tools/python/xen/xm/create.py Tue Dec 04 13:42:20 2007 +0900 @@ -514,7 +514,7 @@ gopts.var(''on_xend_start'', val=''ignore|s fn=set_value,
2008 Feb 19
3
[PATCH] Fix xm vcpu-pin command
Hi, When I tested xm vcpu-pin command, I encountered the following strange problem. I encountered it on x86, but I didn''t encounter it on ia64. On x86: # xm vcpu-list Name ID VCPU CPU State Time(s) CPU Affinity Domain-0 0 0 0 -b- 31.3 any cpu Domain-0 0 1 1 r--
2007 Feb 17
0
[PATCH] Fix xm vcpu-set command for when wrong number of VCPU is given
Hi, The xm vcpu-set command is able to set zero to the number of VCPU of a domain. Therefore I think that it is a natural result that the xm start command fails. But I think that a xm vcpu-set command must fail usually. # xm list Name ID Mem VCPUs State Time(s) Domain-0 0 942 2 r----- 75.2 vm1
2008 Jan 21
0
[PATCH] Remove device information when VmError occurred
Hi, I tested xm block-attach command with a wrong parameter(file:). Naturally a command error occurred. Then I retested xm block-attach command with a correct parameter(phy:). But a command error occurred again. The second command error occurred because Xend did not remove device information from self.info when the first command error occurred. # xm block-attach vm1 file:/dev/hda4 hdb1 w
2007 Mar 27
0
[PATCH] [Bug 936] Fix "cpus" in config.sxp
Hi, I fixed the Xen bugzilla 936. http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=936 Currently, "cpus" output to config.sxp is the following form. Therefore _parse_sxp() cannot convert ''[1'' to integer. e.g. (cpus ''[1, 2]'') --- string This patch changes output form of "cpus". The form is as follows. e.g. (cpus (1 2))
2007 Jan 16
0
[PATCH] Fix a warning message of XendConfig.py
Hi, When I created a domU, I found the following warning message in xend.log. This patch fixes it. [2007-01-16 14:52:05 5122] WARNING (XendConfig:609) Unconverted key: cpus Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com> Best regards, Kan _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2008 Mar 19
0
RE: [Xen-ia64-devel] New error trying to create a domain(usinglatestxend-unstable
Hi Keir, The CS# 17131 which I write for bind guest to NUMA node via cpu affinity missed one condition existing in some machines, where there aren''t any cpus but only memories. Under this condition it will fail to set cpu_affinity because of none parameter. I cope with this condition in the new patch and make a little change of the methods to find suitable node to bind guest. When
2006 Oct 24
1
[Xen-ia64-devel] [PATCH] xenctx shows more registers for ia64
Hi, This patch adds more user registers to show them to xenctx for ia64. Tested domU/domVTi on ia64. Sample is the below. # ./xenctx 1 0 iip: e000000000000810 ipsr: 00001012087a6010 b0: a000000100068a70 b6: a00000010014ff60 b7: e000000000000800 cr_ifs: 800000000000050a ar_unat:
2006 Dec 19
0
[PATCH][Bug 835] Fix the "cpu_weight" and "cpu_cap" parsing issue
Hi, This patch fixes the Bug:835 issue. # xm create /home/kanno/smp-domU.conf cpu_weight=512 cpu_cap=150 Using config file "/home/kanno/smp-domU.conf". Started domain vm1-smp # xm sched-credit -d vm1-smp {''cap'': 150, ''weight'': 512} Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com> Best regards, Kan
2007 Jul 11
0
[PATCH] Fix xm trigger command for inactive managed domains
Hi, When I tried xm trigger command to a inactive managed domain, I saw the following error message. # xm list vm1 Name ID Mem VCPUs State Time(s) vm1 256 2 0.0 # xm trigger vm1 init Error: an integer is required Usage: xm trigger <Domain> <nmi|reset|init> [<VCPU>]
2009 Feb 19
0
[PATCH] Some fixes for pvSCSI
Hi, As for xm create and xm new, an error may not occur even if wrong vscsi configuration is given. e.g. vscsi = [ ''0:0:0:0,0:0:0:0'', ''0:0:0:0,1:0:0:0'' ] # xm create vm1 Using config file "/etc/xen/vm1". Started domain vm1 (id=8) # xm scsi-list vm1 Idx BE state host phy-hctl phy vir-hctl devstate 0 0 1 0 0:0:0:0
2007 Dec 07
0
[PATCH] Fix help messages of xm vcpu-list/uptime
Hi, We can give multiple domains to the following commands. But, the help messages of the commands are explained to be able to give a single domain. # xm vcpu-list vm1 vm2 Name ID VCPU CPU State Time(s) CPU Affinity vm1 1 0 0 r-- 1409.3 any cpu vm2 2 0 0 r-- 1255.8