File tree Expand file tree Collapse file tree 5 files changed +8
-3
lines changed Expand file tree Collapse file tree 5 files changed +8
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- D=$( mktemp -d /tmp/configure.XXXXX)
3+ D=$( mktemp -d ${TMPDIR :- / tmp} /configure.XXXXX)
44function cleanup {
55 cd /
66 rm -rf $D
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 66
77 (libraries
88 astring
9+ core.linux_ext
910 xenctrl
1011 xapi-xenopsd
1112 xenstore
You can’t perform that action at this time.
0 commit comments