Çözüldü Windows 10 KERNEL_DATA_INPAGE_ERROR stop hata kodu

Bu konu çözüldü olarak işaretlenmiştir. Çözülmediğini düşünüyorsanız konuyu rapor edebilirsiniz.

Don Vito

Picopat
Katılım
21 Haziran 2023
Mesajlar
40
Daha fazla  
Cinsiyet
Erkek
Bilgisayarımda büyük oyunlar oynarken bu hatayı alıyor m. Ara sıra oyun oynamasam da bilgisayarımın ekranı donup kalıyor. Ne yapabilirm?
 
Çözüm
Parametre 2'deki NTSTATUS değerine dikkat et. O diskte bad sector algılandığına dair bir ibareye yönlendiriyor bizi.
Rich (BB code):
KERNEL_DATA_INPAGE_ERROR (7a)
The requested page of kernel data could not be read in.  Typically caused by
a bad block in the paging file or disk controller error. Also see
KERNEL_STACK_INPAGE_ERROR.
If the error status is 0xC000000E, 0xC000009C, 0xC000009D or 0xC0000185,
it means the disk subsystem has experienced a failure.
If the error status is 0xC000009A, then it means the request failed because
a filesystem failed to make forward progress.
Arguments:
Arg1: 0000000000000020, lock type that was held (value 1,2,3, or PTE address)
Arg2: ffffffffc000009c, error status (normally i/o status code)
Arg3: ffffcb042b943730, current process (virtual address for lock type 3, or PTE)
Arg4: 0000000000000000, virtual address that could not be in-paged (or PTE contents if arg1 is a PTE address)

0xC000009C
STATUS_DEVICE_DATA_ERROR
There are bad blocks (sectors) on the hard disk.

Ek olarak şu ibareye de dikkat et :

Kod:
DISK_HARDWARE_ERROR: There was error with disk hardware

Parametre 3 adresini de !pte ile girelim.

Kod:
3: kd> !pte ffffcb042b943730
                                           VA ffffcb042b943730
PXE at FFFF9B4DA6D36CB0    PPE at FFFF9B4DA6D96080    PDE at FFFF9B4DB2C10AE0    PTE at FFFF9B658215CA18
contains 0A00000004774863  contains 0A00000004877863  contains 8A000001432009E3  contains 0000000000000000
pfn 4774      ---DA--KWEV  pfn 4877      ---DA--KWEV  pfn 143200    -GLDA--KW-V  LARGE PAGE pfn 143343

Büyük sayfaların // LARGE PAGE // kendileriyle ilişkili PTE'leri yoktur, bu nedenle bunun yerine PDE'yi kontrol etmeniz gerekir. Ben ettim gerekli çağrılara baktım lakin bunlar konunun gidişatı değiştiren çağrılar değildi.

Diski kontrole alalım.

* HD Tune website Errorscan testi ve health kısmını yolla.
 
Parametre 2'deki NTSTATUS değerine dikkat et. O diskte bad sector algılandığına dair bir ibareye yönlendiriyor bizi.
Rich (BB code):
KERNEL_DATA_INPAGE_ERROR (7a)
The requested page of kernel data could not be read in.  Typically caused by
a bad block in the paging file or disk controller error. Also see
KERNEL_STACK_INPAGE_ERROR.
If the error status is 0xC000000E, 0xC000009C, 0xC000009D or 0xC0000185,
it means the disk subsystem has experienced a failure.
If the error status is 0xC000009A, then it means the request failed because
a filesystem failed to make forward progress.
Arguments:
Arg1: 0000000000000020, lock type that was held (value 1,2,3, or PTE address)
Arg2: ffffffffc000009c, error status (normally i/o status code)
Arg3: ffffcb042b943730, current process (virtual address for lock type 3, or PTE)
Arg4: 0000000000000000, virtual address that could not be in-paged (or PTE contents if arg1 is a PTE address)

0xC000009C
STATUS_DEVICE_DATA_ERROR
There are bad blocks (sectors) on the hard disk.

Ek olarak şu ibareye de dikkat et :

Kod:
DISK_HARDWARE_ERROR: There was error with disk hardware

Parametre 3 adresini de !pte ile girelim.

Kod:
3: kd> !pte ffffcb042b943730
                                           VA ffffcb042b943730
PXE at FFFF9B4DA6D36CB0    PPE at FFFF9B4DA6D96080    PDE at FFFF9B4DB2C10AE0    PTE at FFFF9B658215CA18
contains 0A00000004774863  contains 0A00000004877863  contains 8A000001432009E3  contains 0000000000000000
pfn 4774      ---DA--KWEV  pfn 4877      ---DA--KWEV  pfn 143200    -GLDA--KW-V  LARGE PAGE pfn 143343

Büyük sayfaların // LARGE PAGE // kendileriyle ilişkili PTE'leri yoktur, bu nedenle bunun yerine PDE'yi kontrol etmeniz gerekir. Ben ettim gerekli çağrılara baktım lakin bunlar konunun gidişatı değiştiren çağrılar değildi.

Diski kontrole alalım.

* HD Tune website Errorscan testi ve health kısmını yolla.
 
Çözüm
Parametre 2'deki NTSTATUS değerine dikkat et. O diskte bad sector algılandığına dair bir ibareye yönlendiriyor bizi.
Rich (BB code):
KERNEL_DATA_INPAGE_ERROR (7a)
The requested page of kernel data could not be read in.  Typically caused by
a bad block in the paging file or disk controller error. Also see
KERNEL_STACK_INPAGE_ERROR.
If the error status is 0xC000000E, 0xC000009C, 0xC000009D or 0xC0000185,
it means the disk subsystem has experienced a failure.
If the error status is 0xC000009A, then it means the request failed because
a filesystem failed to make forward progress.
Arguments:
Arg1: 0000000000000020, lock type that was held (value 1,2,3, or PTE address)
Arg2: ffffffffc000009c, error status (normally i/o status code)
Arg3: ffffcb042b943730, current process (virtual address for lock type 3, or PTE)
Arg4: 0000000000000000, virtual address that could not be in-paged (or PTE contents if arg1 is a PTE address)

0xC000009C
STATUS_DEVICE_DATA_ERROR
There are bad blocks (sectors) on the hard disk.

Ek olarak şu ibareye de dikkat et :

Kod:
DISK_HARDWARE_ERROR: There was error with disk hardware

Parametre 3 adresini de !pte ile girelim.

Kod:
3: kd> !pte ffffcb042b943730
                                           VA ffffcb042b943730
PXE at FFFF9B4DA6D36CB0    PPE at FFFF9B4DA6D96080    PDE at FFFF9B4DB2C10AE0    PTE at FFFF9B658215CA18
contains 0A00000004774863  contains 0A00000004877863  contains 8A000001432009E3  contains 0000000000000000
pfn 4774      ---DA--KWEV  pfn 4877      ---DA--KWEV  pfn 143200    -GLDA--KW-V  LARGE PAGE pfn 143343

Büyük sayfaların // LARGE PAGE // kendileriyle ilişkili PTE'leri yoktur, bu nedenle bunun yerine PDE'yi kontrol etmeniz gerekir. Ben ettim gerekli çağrılara baktım lakin bunlar konunun gidişatı değiştiren çağrılar değildi.

Diski kontrole alalım.

* HD Tune website Errorscan testi ve health kısmını yolla.
Öncelikle Harddiskin Health ve Errorscan testleri.
1706962799060.png
1706962828551.png

Harddiskte bir sorun olacağını sanmıyordum daha alalı 2 hafta oldu.
SSD'de Health status warning olarak gözüküyor.
1706962895951.png

1706962989576.png
 
Öncelikle Harddiskin Health ve Errorscan testleri. Eki Görüntüle 2105981Eki Görüntüle 2105984
Harddiskte bir sorun olacağını sanmıyordum daha alalı 2 hafta oldu.
SSD'de Health status warning olarak gözüküyor.
Eki Görüntüle 2105985
Eki Görüntüle 2105986
SSD sıkıntılı olabilir, Errorscan testini ''quickscan'' işaretli olmadan yapıp tekrar at. // Retired block count değeri uçup gitmiş.

Olay loglarını da ''Yönetim olayları'' paylaş. Rehber: Olay Görüntüleyicisi Raporu Almak
 

Yeni konular

Geri
Yukarı