¿Qué significa el código NTSTATUS 0xC0000006 (STATUS_IN_PAGE_ERROR)?

 
Anterior Siguiente
STATUS_ACCESS_VIOLATION STATUS_PAGEFILE_QUOTA

STATUS_IN_PAGE_ERROR

Qué significa STATUS_IN_PAGE_ERROR

La virtual address requería page-in, pero el backing object —image, mapped file o pagefile— devolvió un I/O failure. El dato más importante suele ser el NTSTATUS de I/O anidado dentro del exception record.

Por eso el instruction pointer puede ser secundario: la página que faltó puede contener datos, no código. Storage removal, media errors, network-backed mappings, filters o un archivo truncado pueden producir el mismo outer status.

Qué comprobar

  • Lea todos los ExceptionInformation fields y el nested I/O status.
  • Resuelva la dirección a mapped file/image/pagefile backing.
  • Correlacione storage/network/filter events del mismo instante.
  • Preserve dump y mapping info antes de reiniciar.

Referencias técnicas


¿Buscas un código diferente? Buscar otro código de estado o error.