What does NTSTATUS 0xC01A000B (STATUS_LOG_READ_MODE_INVALID) mean?

 
Previous Next
STATUS_LOG_BLOCK_INVALID STATUS_LOG_METADATA_CORRUPT

STATUS_LOG_READ_MODE_INVALID

STATUS_LOG_READ_MODE_INVALID concerns the traversal mode selected for a CLFS record sequence. The CLFS API starts a read sequence from an LSN in one of its supported modes, and the mode governs how subsequent records are obtained from the read context.

It is not the same as STATUS_LOG_READ_CONTEXT_INVALID. Here the context may be otherwise valid, but the requested scan mode is not acceptable for the operation. Changing arbitrary offsets or treating the mode as an application-defined flag does not correct the API contract.

Reproduce the sequence exactly

  • Record the initial LSN, chosen context mode, log handle, and whether the call is starting or continuing a scan.
  • Use only the documented read modes and the corresponding next-record operations for that context.
  • Terminate the old read context and start a new sequence when changing traversal behavior rather than reusing a context with altered assumptions.

References


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