What does NTSTATUS 0xC014000F (STATUS_ACPI_INVALID_DATA) mean?

 
Previous Next
STATUS_ACPI_HANDLER_COLLISION STATUS_ACPI_INVALID_REGION

STATUS_ACPI_INVALID_DATA

STATUS_ACPI_INVALID_DATA is a semantic data-validation result. The operation received data, but its content, encoding, range or relation to the target was unacceptable. The status deliberately says less than a parser error: the data can be present and correctly typed while still being invalid for the specific ACPI operation.

That makes the surrounding operation essential. Record the data origin, expected format and field or method consuming it. Do not collapse this result into STATUS_ACPI_INVALID_ARGTYPE; type is only one possible property, while this status can reflect value or structural validity.

The data was invalid in the ACPI operation context

  • Capture the complete input object or buffer in a safe diagnostic form, together with its declared and evaluated type.
  • Record the ACPI object or handler validating it and any platform state that changes permitted values.
  • Compare the value with the specification of the relevant AML operator, resource descriptor or device-specific method.

References


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