Skip to content

Commit 9abbab5

Browse files
authored
Merge pull request #768 from psafont/private/paus/yang-ppx
2 parents 0fe976b + 0fd30a8 commit 9abbab5

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

cli/xn.ml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -788,6 +788,8 @@ let pp x =
788788
(List.map (fun (s, t) -> Line (s ^ ": ") :: to_t t) xs))
789789
; Line "}"
790790
]
791+
| Base64 x ->
792+
[Line x]
791793
| Null ->
792794
[]
793795
in

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
D=$(mktemp -d /tmp/configure.XXXXX)
3+
D=$(mktemp -d ${TMPDIR:-/tmp}/configure.XXXXX)
44
function cleanup {
55
cd /
66
rm -rf $D

lib/xenopsd.ml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,13 +276,15 @@ let rpc_fn call =
276276
name= "VM.import_metadata"
277277
; params=
278278
[Rpc.Dict [("debug_info", debug_info); ("metadata", metadata)]]
279+
; notif= false
279280
}
280281
| "query", [debug_info; unit_p] ->
281282
debug "Upgrading query" ;
282283
Rpc.
283284
{
284285
name= "query"
285286
; params= [Rpc.Dict [("debug_info", debug_info); ("unit", unit_p)]]
287+
; notif= false
286288
}
287289
| _ ->
288290
call

xc/device.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3290,8 +3290,8 @@ module Backend = struct
32903290

32913291
(** File-descriptor event monitor implementation for the epoll library *)
32923292
module Monitor = struct
3293-
module Epoll = Core.Linux_ext.Epoll
3294-
module Flags = Core.Linux_ext.Epoll.Flags
3293+
module Epoll = Linux_ext.Epoll
3294+
module Flags = Linux_ext.Epoll.Flags
32953295

32963296
let num_file_descrs =
32973297
match Core.Unix.RLimit.((get num_file_descriptors).cur) with

xc/dune

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
(libraries
88
astring
9+
core.linux_ext
910
xenctrl
1011
xapi-xenopsd
1112
xenstore

0 commit comments

Comments
 (0)