|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH] bug fix in blktap script
Hi all,
I found a bug in blktap script. The domain with blktap cannot be
created due to this bug.
The following patch fixes it.
Thanks,
KAZ
Signed-off-by: Kazuhiro Suzuki <kaz@xxxxxxxxxxxxxx>
diff -r b2a02f7ed849 tools/examples/blktap
--- a/tools/examples/blktap Mon Sep 17 13:38:25 2007 -0600
+++ b/tools/examples/blktap Thu Sep 20 18:18:43 2007 +0900
@@ -73,7 +73,7 @@ if [ -L "$p" ]; then
if [ -L "$p" ]; then
file=$(readlink -f "$p") || ebusy "$p link does not exist."
else
- [ -f "$p" ] || { ebusy "$p file does not exist." }
+ [ -f "$p" ] || { ebusy "$p file does not exist."; }
file="$p"
fi
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-devel] [PATCH] bug fix in blktap script,
SUZUKI Kazuhiro <=
|
|
|
|
|