From 152b179a19e43fcb0baec65ea65d394ee1dba891 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 29 Jun 2012 19:03:37 +0100 Subject: New API: guestfs_nr_devices This returns the number of whole block devices added. It is usually simpler to call this than to list the devices and count them, which is what we do in some places in the current codebase. --- generator/generator_actions.ml | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'generator') diff --git a/generator/generator_actions.ml b/generator/generator_actions.ml index 3c8f5976..e6219d17 100644 --- a/generator/generator_actions.ml +++ b/generator/generator_actions.ml @@ -7340,6 +7340,18 @@ for example as a string returned from C. See also C, C."); + ("nr_devices", (RInt "nrdisks", [], []), 336, [], + [InitEmpty, Always, TestOutputInt ( + [["nr_devices"]], 4)], + "return number of whole block devices (disks) added", + "\ +This returns the number of whole block devices that were +added. This is the same as the number of devices that would +be returned if you called C. + +To find out the maximum number of devices that could be added, +call C."); + ] let all_functions = non_daemon_functions @ daemon_functions -- cgit