Hi,
I'm using the win32 reg function: ZwSetValueKey (from my driver) to set a key registered with a cluster resource.
According to Microsoft documentation when a change to the local registry is made the checkpoint on the quorum is updated as well.
Can I assume that the registry write and the quorum update are synchronous?
I mean - if the ZwSetValueKey returns success can I assume that the data was already written to a checkpoint on the quorum device? or the quorum may be updated in a later time?
Thanks.