xen-attach_disk.patch

Fix syntax error in vmm/xen/attach_disk and use tap2:aio - Laurent Grawet, 02/02/2013 12:48 AM

Download (495 Bytes)

View differences:

src/vmm_mad/remotes/xen/attach_disk 2013-02-02 01:34:55.344868892 +0100
52 52
    FILE_PREFIX="phy"
53 53
    ;;
54 54
*)
55
    FILE_PREFIX="tap:aio"
55
    FILE_PREFIX="tap2:aio"
56 56
    ;;
57 57
esac
58 58

  
59 59
if [ -n "$DRIVER" ]; then
60
    FILE_PREFIX="$DRIVER"
60
    FILE_PREFIX="${DRIVER%%:*}"
61 61
fi
62 62

  
63 63
FULL_DISK="$FILE_PREFIX:$SOURCE"