Site icon EfmSoft

What does HRESULT 0xC0370011 (ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED) mean?

 
Could be also:
ConstantTypeOS
STATUS_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATEDNTSTATUSWindows
Previous Next
ERROR_VID_INVALID_NUMA_NODE_INDEX ERROR_VID_INVALID_MEMORY_BLOCK_HANDLE

ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED

ERROR_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED is HRESULT 0xC0370011 in the VID memory notification binding area of the Windows virtualization stack. It applies to association between a VID memory block and its notification message queue.

Why this result is specific

The memory block already has a queue association, so a second binding would create ambiguous notification ownership. Identify whether the request duplicates the same queue or tries to replace it while active.

Neighboring result: NO_MEMORY_BLOCK_NOTIFICATION_QUEUE means the required association is absent. ALREADY_ASSOCIATED means one exists and must be examined before rebinding.

Records worth collecting

EvidenceWhy it changes the diagnosis
Memory block identityRecord handle, partition, GPA extent, and object instance.
Current queueCapture associated queue handle/name, owner, and active notification types.
New requestKeep proposed queue identity and reason for rebinding.
Outstanding notificationsRecord queued or unacknowledged events before teardown.

A reproducible test plan

  1. Reuse the existing association only when owner and format match.
  2. Quiesce notifications before changing queue ownership.
  3. Make association state atomic with memory-block lifecycle.
  4. Test replacement during VM stop and migration.

Reproduce this condition with bounded producers and a fully instrumented consumer. Preserve message ordering, queue generation, handler ownership, target VP, and acknowledgement timestamps while changing only one concurrency condition.

Comparison matrix

ControlInterpretationHold constant
Controlled stall or burstDeliberately slow the consumer or bound the producer rate. The threshold at which it appears identifies backpressure versus lifecycle failure.Record queue depth, oldest-item age, and acknowledgement timing.
Single producer and consumerIf it disappears with serialized ownership, the queue, handler, acknowledgement, or delivery race is implicated.Preserve message type, partition, target VP, and queue capacity.
Fresh channel generationA new queue or handler generation changing it points to stale registration, backlog, or incomplete teardown.Keep payload, producer order, and host build unchanged in the test.

Misleading shortcuts

Verification after repair

Each memory block has one unambiguous current queue, and association changes lose neither notifications nor ownership state.

Technical references


Looking for a different code? Search another status or error code.

Exit mobile version