search for: mdcreate

Displaying 7 results from an estimated 7 matches for "mdcreate".

Did you mean: md_create
2012 Jan 20
0
CamelName patch
...can make a good guess at camel case names for most APIs. For example, > add_drive_opts can be automatically transformed to AddDriveOpts. However, ot > apis don't produce a satisfactory name when transformed automatically. For > example, we would want md_create to produce MDCreate rather than MdCreate. > > This change adds a CamelName flag which allows a camel case name to be speci > explicitly when the automatic transformation isn't satisfactory. > > > It seems to have a couple of problems: firstly it would change the > Java bindings. In...
2012 Jan 20
11
[PATCH 01/10] Revert "Revert "generator: Add CamelName flag""
...;mdadm"], + ("md_create", (RErr, [String "name"; DeviceList "devices"], [OInt64 "missingbitmap"; OInt "nrdevices"; OInt "spare"; OInt64 "chunk"; OString "level"]), 299, [Optional "mdadm"; CamelName "MDCreate"], [], "create a Linux md (RAID) device", "\ diff --git a/generator/generator_checks.ml b/generator/generator_checks.ml index 4792dbf..464b9cd 100644 --- a/generator/generator_checks.ml +++ b/generator/generator_checks.ml @@ -208,6 +208,11 @@ let () =...
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in: https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...style = RErr, [String (PlainString, "name"); StringList (Device, "devices")], [OInt64 "missingbitmap"; OInt "nrdevices"; OInt "spare"; OInt64 "chunk"; OString "level"]; optional = Some "mdadm"; camel_name = "MDCreate"; shortdesc = "create a Linux md (RAID) device"; longdesc = "\ @@ -6809,7 +6809,7 @@ List all Linux md devices." }; { defaults with name = "md_detail"; added = (1, 15, 6); - style = RHashtable "info", [Device "md"], []; +...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.