* [PATCH]fix losetup -r flag when sharing disk
@ 2008-01-25 10:08 Zhigang Wang
0 siblings, 0 replies; only message in thread
From: Zhigang Wang @ 2008-01-25 10:08 UTC (permalink / raw)
To: Ian Jackson, keir.fraser; +Cc: xen-devel
[-- Attachment #1: Type: text/plain, Size: 965 bytes --]
hi keir,
this small patch fixes the losetup -r flag when we specify 'w!' to the disk mode.
the mode from canonicalise_mode can be 'r' 'w' or '!'. ian's patch doesn't consider
the '!' case.
when I specify 'w!' to a disk mode, will results disk setup failure.
log in /var/log/xen/xen-hotplug.log:
[--snip--]
losetup: invalid option -- !
usage:
losetup loop_device # give info
losetup -d loop_device # delete
losetup -f # find unused
losetup -a # list all used
losetup -r # read-only loop
losetup [-e encryption] [-o offset] [-r] {-f|loop_device} file # setup
xenstore-read: couldn't read path backend/vbd/1/768/node
[--snip--]
ian, please confirm.
this patch should apply to xen-unstable and xen-3.2-testing as well.
regards,
zhigang
[-- Attachment #2: block-roflag-sharing.patch --]
[-- Type: text/x-patch, Size: 462 bytes --]
--- xen-unstable/tools/examples/block.orig 2008-01-25 17:52:19.000000000 +0800
+++ xen-unstable/tools/examples/block 2008-01-25 17:53:38.000000000 +0800
@@ -329,7 +329,7 @@ mount it read-write in a guest domain."
if LANG=C losetup -h 2>&1 | grep read-only >/dev/null
then
- roflag="-$mode"; roflag="${roflag#-w}"
+ roflag="-$mode"; roflag="${roflag#-w}"; roflag="${roflag#-!}"
else
roflag=''
fi
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-01-25 10:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-25 10:08 [PATCH]fix losetup -r flag when sharing disk Zhigang Wang
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.