search for: frontdev

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

Did you mean: frontdesk
2008 Jan 21
0
[PATCH] Remove device information when VmError occurred
...mand 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 Error: Device 833 (vbd) could not be connected. /dev/hda4 does not exist. Usage: xm block-attach <Domain> <BackDev> <FrontDev> <Mode> [BackDomain] Create a new virtual block device. # xm block-attach vm1 phy:/dev/hda4 hdb1 w Error: The file "/dev/hda4" is already used Usage: xm block-attach <Domain> <BackDev> <FrontDev> <Mode> [BackDomain] Create a new virtual block device. # x...
2009 Aug 16
9
increase size for dom guest using lvm online
could we increase the size for dom guest online without rebooting or unmounting? pls kindly advise any methods. Yahoo!香港提供網上安全攻略,教你如何防範黑客! 請前往 http://hk.promo.yahoo.com/security/ 了解更多! _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2010 May 20
0
[PATCH] xl: fix block-attach command parsing
.../libxl/xl_cmdtable.c Thu May 20 09:18:33 2010 -0700 +++ b/tools/libxl/xl_cmdtable.c Thu May 20 14:37:24 2010 -0700 @@ -216,7 +216,7 @@ { "block-attach", &main_blockattach, "Create a new virtual block device", - "<Domain> <BackDev> <FrontDev> <Mode> [BackDomain]", + "<Domain> <BackDev> <FrontDev> [<Mode>] [BackDomain]", }, { "block-list", &main_blocklist, _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource...
2010 Feb 22
0
[PATCH] Fix blktap2 test in xen-hotplug-cleanup
...51952" frontend-id = "0" backend-id = "0" backend = "/local/domain/0/backend/vbd/0/51952" xen53: # xm block-attach 0 file:/tmp/d0 /dev/xvdp r Error: Device /dev/xvdp (51952, vbd) is already connected. Usage: xm block-attach <Domain> <BackDev> <FrontDev> <Mode> [BackDomain] Attached patch fixes the test. Regards, Jim _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2012 Mar 13
1
err0rs while attaching devices to dom0
...ile system of dom0, so I used a command "# xm block-attach 0 duncan.img /dev/xvda1 w 0". However, I got an error information : Error: Block device must have physical details specified Usage: xm block-attach <Domain> <BackDev> <FrontDev> <Mode> [BackDomain] Anyone has any clue on that? Thanks in advance, -- Su Zhang Ph.D Candidate Computing and Information Sciences Kansas State University _______________________________________________ Xen-users mailing list Xen-users@lists.xen.org http://lists.xen.org/xen-users
2006 Dec 26
14
[PATCH] fix free of event channel in blkfront
Hi All, We tested the xm block-attach/detach command. It repeats block-attach/detach command for DomU and pv-on-hvm on HVM Domain. (block-attach -> block-detach -> block-attach -> block-detach -> ...) The block-attach command failed when repeating 256 times. It is because the channel had not been freed in blkfront. Therefore, it remain using the event channel. This patch is
2007 Jun 21
8
feature request - prevent user stupidity (eg mine)
I foolishly made the following typo: " disk = [ ''phy:/dev/vg00/virt-smtp1-root,0301,w'', ''phy:/dev/vg00/virt-smtp1-root,0302,w'' ] " instead of: " disk = [ ''phy:/dev/vg00/virt-smtp1-root,0301,w'', ''phy:/dev/vg00/virt-smtp1-swap,0302,w'' ]" (the type was that the same Dom0 block device is used twice in the
2008 Aug 18
15
How to upgrade domU
How do i upgrade my Xen guest (domu1) ? On a stand alone hardware one would insert DVD/CD/Network and perform the upgrade, What is the equivalent in Xen World ? Tahnks !!! -- Regards, mantra - Instrument of Thought _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2006 Mar 07
8
[PATCH] xm,xend: flesh out xm sched-sedf
...ight mutually exclusive with period/slice and\n\ + specifies another way of setting a domain''s\n\ + cpu period/slice." + block_attach_help = """block-attach <DomId> <BackDev> <FrontDev> <Mode> [BackDomId] Create a new virtual block device""" block_detach_help = """block-detach <DomId> <DevId> Destroy a domain''s virtual block device, @@ -377,6 +387,20 @@ } +def parse_sedf_info(in...
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series. What were previously patches 01-06 have been applied. These are the tested and updated remainder, addressing the previous comments. 1 Preparatory work. 2-4 The new parser and its documentation. 5-6 Replace old parsers with calls to the new one. 7-8 Two features, one of them essential. 9 Basic test suite for disk string parsing, as adhoc script.