search for: stable_uuid

Displaying 6 results from an estimated 6 matches for "stable_uuid".

2017 Feb 21
1
Re: [PATCH 0/6] generator: Split up generator/actions.ml
...ubmodules and the submodules are concatenated. What I was actually trying to achieve with this patch was to make sure that I could compare the output of the generator before and after the entire sequence of commits (from patch #3) was applied, so I could check that it didn't change (except for stable_uuid which changed because the contents of the actions_*.ml files changed). Indeed there weren't any changes, which was how I verified the patch set. But for that to work I had to have a stable ordering that I could reproduce in the new code. > - regarding patch #5: download_inode should be in...
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.
2017 Mar 03
2
[PATCH] generator: Allow actions to be deprecated with no replacement.
...style = RErr, [Device "device"; String "uuid"], []; - deprecated_by = Some "set_uuid"; + deprecated_by = Replaced_by "set_uuid"; tests = [ InitBasicFS, Always, TestResultString ( [["set_e2uuid"; "/dev/sda1"; stable_uuid]; @@ -267,7 +267,7 @@ of a filesystem." }; { defaults with name = "get_e2uuid"; added = (1, 0, 15); style = RString "uuid", [Device "device"], []; - deprecated_by = Some "vfs_uuid"; + deprecated_by = Replaced_by "vfs_uuid";...
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, [Device "device"; String "uuid"], []; + style = RErr, [String (Device, "device"); String (PlainString, "uuid")], []; tests = [ InitBasicFS, Always, TestResultString ( [["set_uuid"; "/dev/sda1"; stable_uuid]; @@ -8635,7 +8635,7 @@ To read the UUID on a filesystem, call C<guestfs_vfs_uuid>." }; { defaults with name = "journal_open"; added = (1, 23, 11); - style = RErr, [Pathname "directory"], []; + style = RErr, [String (Pathname, "directory")],...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.