Site icon EfmSoft

What does HRESULT 0xC0350013 (ERROR_HV_INSUFFICIENT_BUFFERS) mean?

 
Could be also:
ConstantTypeOS
STATUS_HV_INSUFFICIENT_BUFFERSNTSTATUSWindows
Previous Next
ERROR_HV_INVALID_CONNECTION_ID ERROR_HV_NOT_ACKNOWLEDGED

ERROR_HV_INSUFFICIENT_BUFFERS

ERROR_HV_INSUFFICIENT_BUFFERS is HRESULT 0xC0350013 in the hypervisor message submission area of the Windows virtualization stack. It applies to the set of buffers or descriptors supplied for a hypervisor message operation.

Object lifecycle behind the result

The message path did not receive enough buffer entries to describe or carry the operation. The plural form is significant: investigate descriptor count and message construction, not only the capacity of one output structure.

This result belongs to the hypervisor facility rather than the higher-level VM management UI. The TLFS and WHP documentation provide the surrounding partition, message, memory, and virtual-processor model, but the first low-level operation and any nested status remain the authoritative incident evidence.

Neighboring result: ERROR_HV_INSUFFICIENT_BUFFER concerns one buffer that is too small; this result points to an insufficient collection of buffers for message submission.

Diagnostic evidence matrix

EvidenceWhy it changes the diagnosis
Message operationRecord the hypercall, driver request, or virtualization-stack operation and the message type.
Descriptor vectorCapture buffer count, length of every element, alignment, flags, and total payload bytes.
Protocol limitsKeep the negotiated message format and any maximum element or payload count.
ConcurrencyRecord whether descriptors are reused, released early, or modified by another thread.

Test one variable at a time

  1. Validate the required descriptor count before entering the hypervisor path.
  2. Keep descriptor storage alive and immutable until completion is observed.
  3. Compare a one-element known-good message with the failing scatter/gather shape.
  4. Do not convert this status into a generic out-of-memory retry loop.

Exercise this result 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.

How to read the controls

ControlInterpretationHold constant
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.
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.

Scope of this status

Keep the hexadecimal result value and any nested hypervisor status. Higher layers can map distinct resource, buffer, message, or state failures to the same generic start or migration message.

Regression proof

A valid repair sends the original message with the documented number of stable descriptors and also rejects a deliberately undersized descriptor vector predictably.

Technical references


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

Exit mobile version