We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93a7cb0 + 36e71d7 commit b2c07f6Copy full SHA for b2c07f6
xc/hotplug.ml
@@ -200,9 +200,11 @@ let release (task:Xenops_task.t) ~xs (x: device) =
200
debug "Hotplug.release: %s" (string_of_device x);
201
wait_for_unplug task ~xs x;
202
let hotplug_path = get_hotplug_path x in
203
+ let private_data_path = get_private_data_path_of_device x in
204
let extra_xenserver_path = extra_xenserver_path_of_device xs x in
205
Xs.transaction xs (fun t ->
206
t.Xst.rm hotplug_path;
207
+ t.Xst.rm private_data_path;
208
t.Xst.rm extra_xenserver_path
209
)
210
0 commit comments