From: Olaf Hering Date: Mon, 5 May 2014 13:30:28 +0000 (+0200) Subject: tools/libxl: add direct_io_safe to check-xl-disk-parse X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~5058 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9ce8b151e8d07083293b453b1b4d53dcef7432f9;p=xen.git tools/libxl: add direct_io_safe to check-xl-disk-parse Add missing bool "direct_io_safe" to expected output. It was added by Commit 6ec48cf4 ("libxl: introduce an option for disabling the non-O_DIRECT workaround"), but check-xl-disk-parse was not updated. Signed-off-by: Olaf Hering Cc: Ian Jackson Cc: Stefano Stabellini Acked-by: Ian Campbell --- diff --git a/tools/libxl/check-xl-disk-parse b/tools/libxl/check-xl-disk-parse index 797277ced5..0698586cf2 100755 --- a/tools/libxl/check-xl-disk-parse +++ b/tools/libxl/check-xl-disk-parse @@ -61,7 +61,8 @@ disk: { "script": null, "removable": 0, "readwrite": 1, - "is_cdrom": 0 + "is_cdrom": 0, + "direct_io_safe": false } END @@ -82,7 +83,8 @@ disk: { "script": null, "removable": 1, "readwrite": 0, - "is_cdrom": 1 + "is_cdrom": 1, + "direct_io_safe": false } END @@ -104,7 +106,8 @@ disk: { "script": null, "removable": 0, "readwrite": 1, - "is_cdrom": 0 + "is_cdrom": 0, + "direct_io_safe": false } EOF @@ -121,7 +124,8 @@ disk: { "script": null, "removable": 1, "readwrite": 0, - "is_cdrom": 1 + "is_cdrom": 1, + "direct_io_safe": false } EOF @@ -142,7 +146,8 @@ disk: { "script": null, "removable": 1, "readwrite": 0, - "is_cdrom": 1 + "is_cdrom": 1, + "direct_io_safe": false } EOF @@ -160,7 +165,8 @@ disk: { "script": "block-iscsi", "removable": 0, "readwrite": 1, - "is_cdrom": 0 + "is_cdrom": 0, + "direct_io_safe": false } EOF @@ -180,7 +186,8 @@ disk: { "script": "block-drbd", "removable": 0, "readwrite": 1, - "is_cdrom": 0 + "is_cdrom": 0, + "direct_io_safe": false } EOF