wait the backend-id has been created by Xen before trying to read it #107
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is needed to avoid an exception when we want to connect the uplink (See #106 (reopen and discussion there?) and mirage/qubes-mirage-firewall#156 for details. I'm now facing that issue when I want to be ablke to dynamically change the qubes-mirage-firewall netvm, see https://github.com/palainp/qubes-mirage-firewall/tree/common-vif).
Steps to reproduce are like (in the context of Qubes, but I assume there's something similar with plain Xen):
Netif.connect "0" >>= fun net ->
Netif.disconnect net;
That will trigger a Enoent exception (it seems that the backend-id key is not written fast enough) from
xenstore.ml:265
:With that PR I don't see anymore the exception, but maybe there is other places to put that "wait before read"? Or maybe it should be a default behavior and read becomes read_unsafe?