Displaying 2 results from an estimated 2 matches for "hc_name".
Did you mean:
lc_name
2019 Sep 05
0
[PATCH libnbd] generator: Move first_version fields to a single table.
..., _) ->
+ failwithf "%s: first_version field must not be set in handle_calls table" name
+ ) handle_calls;
+
+ (* Check every entry in first_version corresponds 1-1 with handle_calls. *)
+ let () =
+ let fv_names = List.sort compare (List.map fst first_version) in
+ let hc_names = List.sort compare (List.map fst handle_calls) in
+ if fv_names <> hc_names then (
+ eprintf "first_version names:\n";
+ List.iter (eprintf "\t%s\n") fv_names;
+ eprintf "handle_calls names:\n";
+ List.iter (eprintf "\t%s\n") hc...
2019 Sep 05
3
[PATCH libnbd] generator: Move first_version fields to a single table.
This doesn't include Eric's new APIs, but if you push those
then I can rebase this one on top.
Rich.