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

Friezzy

Çalışkan
Katılım
16 Mart 2025
Mesajlar
2
Beğeniler
0
  • Anakart: ASUS B660M V5 D4
  • İşlemci: i5 12600
  • Ekran Kartı: RTX 3060
  • İşletim Sistemi: Windows 11 Pro

Arkadaşlar mavi ekran alıyorum son zamanlarda yardımcı olursanız sevinirim. Minidump dosyalarını paylaştım.


@bicy
 
Son düzenleme:
Çözüm
Rich (BB code):
MEMORY_MANAGEMENT (1a)
    # Any other values for parameter 1 must be individually examined.
Arguments:
Arg1: 0000000000041790, A page table page has been corrupted. On a 64 bit OS, parameter 2
    contains the address of the PFN for the corrupted page table page.
    On a 32 bit OS, parameter 2 contains a pointer to the number of used
    PTEs, and parameter 3 contains the number of used PTEs.
Arg2: ffffe8800c8dada0
Arg3: 0000000000000000
Arg4: 0000000000000001

Aldığın 3 hata yukarıdaki gibi. Özellikle işaretlediğim ilk parametre sayfa tablosunun bozulduğunu gösterir. Sayfa tablosu, fiziksel ve sanal bellek adresleri arasındaki eşlemeleri saklamak için kullanılan ve memory management yapısına dahil bir birimdir.

Rich (BB code):
8: kd> k
 # Child-SP          RetAddr               Call Site
00 fffff887`25656f08 fffff806`080aa1ca     nt!KeBugCheckEx
01 fffff887`25656f10 fffff806`080a2c8e     nt!MiDeletePteRun+0x17da // Çökme
02 fffff887`25657120 fffff806`0803824d     nt!MiDeleteVaTail+0x6e
03 fffff887`25657150 fffff806`08037e6b     nt!MiWalkPageTablesRecursively+0xc6d
04 fffff887`256571f0 fffff806`08037e6b     nt!MiWalkPageTablesRecursively+0x88b
05 fffff887`25657290 fffff806`08037e6b     nt!MiWalkPageTablesRecursively+0x88b
06 fffff887`25657330 fffff806`08034e6b     nt!MiWalkPageTablesRecursively+0x88b
07 fffff887`256573d0 fffff806`0809e2a1     nt!MiWalkPageTables+0x36b
08 fffff887`256574d0 fffff806`08047fa8     nt!MiDeletePagablePteRange+0x4f1 // Bellek aralığındaki tüm pte'lerin silinmesi
09 fffff887`256577e0 fffff806`08454779     nt!MiDeleteVad+0x378 << Silinmeleri
0a fffff887`256578e0 fffff806`08454552     nt!MiUnmapVad+0x49 // Vad'lerin kaldırılması
0b fffff887`25657910 fffff806`084543c9     nt!MiUnmapViewOfSection+0x152 // Belli bir bellek range'i içerisindeki belli bir adres aralığının spesifik olarak kapatılması
0c fffff887`256579f0 fffff806`08212905     nt!NtUnmapViewOfSectionEx+0x99
0d fffff887`25657a40 00007ff9`25590ea4     nt!KiSystemServiceCopyEnd+0x25
0e 00000045`e577bef8 00000000`00000000     0x00007ff9`25590ea4

Aynı şekilde son dosyan:

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: 0000000000000001, lock type that was held (value 1,2,3, or PTE address)
Arg2: ffffffffc0000005, error status (normally i/o status code)
Arg3: ffff800ce95680c0, current process (virtual address for lock type 3, or PTE)
Arg4: ffffb1bffaa6e000, virtual address that could not be in-paged (or PTE contents if arg1 is a PTE address)

Yükseltilen istisnaya dikkat etmek gerekiyor. Başlığa göre hep ilerlemek biraz ezbere kaçıyor artık.

Rich (BB code):
2: kd> !error c0000005
Error code: (NTSTATUS) 0xc0000005 (3221225477) - 0x%p adresindeki yönerge 0x%p adresindeki belleğe başvurdu. Bellek şu olamaz %s.

Aynı şekilde,,

Rich (BB code):
2: kd> .formats ffffb48bf1caee98
Binary:  11111111 11111111 10110100 10001011 11110001 11001010 11101110 10011000
2: kd> .formats ffffb48bf1caf120
Binary:  11111111 11111111 10110100 10001011 11110001 11001010 11110001 00100000

Özellikle erişilen adres ve erişilmek istenen 2 adres arasındaki bit farkları gibi şeyler de göze çarpıyor.

Nihayetinde bu tip sorunların çoğunluğunda ana sebep RAM oluyor. Kontrol etmek isteyebilirsin.

Rich (BB code):
  Speed                         3600MHz
  Manufacturer                  Wilk Elektronik S.A.
  Serial Number                         
  Asset Tag Number                       
  Part Number                   IRP3600D4V64L18S/8G
  Attributes                    1
  Extended Size                 0
  Configured Memory Speed       3600
  Minimum Voltage               1200
  Maximum Voltage               1350
  Configured Voltage            1200
Merhaba,

Öncelikle cihazınızın RAM'lerinin frekans değerlerini kontrol ediniz, eğer herhangi bir sorun gözükmüyorsa cihazınızın BIOS Update'ini yapınız. Daha sonrasında da temiz bir kurulum yapıp tekrardan kontrol edebilirsiniz.
 
Son düzenleyen: Moderatör:
Rich (BB code):
MEMORY_MANAGEMENT (1a)
    # Any other values for parameter 1 must be individually examined.
Arguments:
Arg1: 0000000000041790, A page table page has been corrupted. On a 64 bit OS, parameter 2
    contains the address of the PFN for the corrupted page table page.
    On a 32 bit OS, parameter 2 contains a pointer to the number of used
    PTEs, and parameter 3 contains the number of used PTEs.
Arg2: ffffe8800c8dada0
Arg3: 0000000000000000
Arg4: 0000000000000001

Aldığın 3 hata yukarıdaki gibi. Özellikle işaretlediğim ilk parametre sayfa tablosunun bozulduğunu gösterir. Sayfa tablosu, fiziksel ve sanal bellek adresleri arasındaki eşlemeleri saklamak için kullanılan ve memory management yapısına dahil bir birimdir.

Rich (BB code):
8: kd> k
 # Child-SP          RetAddr               Call Site
00 fffff887`25656f08 fffff806`080aa1ca     nt!KeBugCheckEx
01 fffff887`25656f10 fffff806`080a2c8e     nt!MiDeletePteRun+0x17da // Çökme
02 fffff887`25657120 fffff806`0803824d     nt!MiDeleteVaTail+0x6e
03 fffff887`25657150 fffff806`08037e6b     nt!MiWalkPageTablesRecursively+0xc6d
04 fffff887`256571f0 fffff806`08037e6b     nt!MiWalkPageTablesRecursively+0x88b
05 fffff887`25657290 fffff806`08037e6b     nt!MiWalkPageTablesRecursively+0x88b
06 fffff887`25657330 fffff806`08034e6b     nt!MiWalkPageTablesRecursively+0x88b
07 fffff887`256573d0 fffff806`0809e2a1     nt!MiWalkPageTables+0x36b
08 fffff887`256574d0 fffff806`08047fa8     nt!MiDeletePagablePteRange+0x4f1 // Bellek aralığındaki tüm pte'lerin silinmesi
09 fffff887`256577e0 fffff806`08454779     nt!MiDeleteVad+0x378 << Silinmeleri
0a fffff887`256578e0 fffff806`08454552     nt!MiUnmapVad+0x49 // Vad'lerin kaldırılması
0b fffff887`25657910 fffff806`084543c9     nt!MiUnmapViewOfSection+0x152 // Belli bir bellek range'i içerisindeki belli bir adres aralığının spesifik olarak kapatılması
0c fffff887`256579f0 fffff806`08212905     nt!NtUnmapViewOfSectionEx+0x99
0d fffff887`25657a40 00007ff9`25590ea4     nt!KiSystemServiceCopyEnd+0x25
0e 00000045`e577bef8 00000000`00000000     0x00007ff9`25590ea4

Aynı şekilde son dosyan:

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: 0000000000000001, lock type that was held (value 1,2,3, or PTE address)
Arg2: ffffffffc0000005, error status (normally i/o status code)
Arg3: ffff800ce95680c0, current process (virtual address for lock type 3, or PTE)
Arg4: ffffb1bffaa6e000, virtual address that could not be in-paged (or PTE contents if arg1 is a PTE address)

Yükseltilen istisnaya dikkat etmek gerekiyor. Başlığa göre hep ilerlemek biraz ezbere kaçıyor artık.

Rich (BB code):
2: kd> !error c0000005
Error code: (NTSTATUS) 0xc0000005 (3221225477) - 0x%p adresindeki yönerge 0x%p adresindeki belleğe başvurdu. Bellek şu olamaz %s.

Aynı şekilde,,

Rich (BB code):
2: kd> .formats ffffb48bf1caee98
Binary:  11111111 11111111 10110100 10001011 11110001 11001010 11101110 10011000
2: kd> .formats ffffb48bf1caf120
Binary:  11111111 11111111 10110100 10001011 11110001 11001010 11110001 00100000

Özellikle erişilen adres ve erişilmek istenen 2 adres arasındaki bit farkları gibi şeyler de göze çarpıyor.

Nihayetinde bu tip sorunların çoğunluğunda ana sebep RAM oluyor. Kontrol etmek isteyebilirsin.

Rich (BB code):
  Speed                         3600MHz
  Manufacturer                  Wilk Elektronik S.A.
  Serial Number                         
  Asset Tag Number                       
  Part Number                   IRP3600D4V64L18S/8G
  Attributes                    1
  Extended Size                 0
  Configured Memory Speed       3600
  Minimum Voltage               1200
  Maximum Voltage               1350
  Configured Voltage            1200
 
Çözüm
Rich (BB code):
MEMORY_MANAGEMENT (1a)
 # Any other values for parameter 1 must be individually examined.
Arguments:
Arg1: 0000000000041790, A page table page has been corrupted. On a 64 bit OS, parameter 2
 contains the address of the PFN for the corrupted page table page.
 On a 32 bit OS, parameter 2 contains a pointer to the number of used.
 PTEs, and parameter 3 contains the number of used PTEs.
Arg2: ffffe8800c8dada0.
Arg3: 0000000000000000.
Arg4: 0000000000000001.

Aldığın 3 hata yukarıdaki gibi. Özellikle işaretlediğim ilk parametre sayfa tablosunun bozulduğunu gösterir. Sayfa tablosu, fiziksel ve sanal bellek adresleri arasındaki eşlemeleri saklamak için kullanılan ve MEMORY_MANAGEMENT yapısına dahil bir birimdir.

Rich (BB code):
8: kd> k
 # Child-SP RetAddr Call Site.
00 fffff887`25656f08 fffff806`080aa1ca nt!KeBugCheckEx
01 fffff887`25656f10 fffff806`080a2c8e nt!MiDeletePteRun+0x17da // Çökme
02 fffff887`25657120 fffff806`0803824d nt!MiDeleteVaTail+0x6e
03 fffff887`25657150 fffff806`08037e6b nt!MiWalkPageTablesRecursively+0xc6d
04 fffff887`256571f0 fffff806`08037e6b nt!MiWalkPageTablesRecursively+0x88b
05 fffff887`25657290 fffff806`08037e6b nt!MiWalkPageTablesRecursively+0x88b
06 fffff887`25657330 fffff806`08034e6b nt!MiWalkPageTablesRecursively+0x88b
07 fffff887`256573d0 fffff806`0809e2a1 nt!MiWalkPageTables+0x36b
08 fffff887`256574d0 fffff806`08047fa8 nt!MiDeletePagablePteRange+0x4f1 // Bellek aralığındaki tüm pte'lerin silinmesi
09 fffff887`256577e0 fffff806`08454779 nt!MiDeleteVad+0x378 << Silinmeleri
0a fffff887`256578e0 fffff806`08454552 nt!MiUnmapVad+0x49 // Vad'lerin kaldırılması
0b fffff887`25657910 fffff806`084543c9 nt!MiUnmapViewOfSection+0x152 // Belli bir bellek range'i içerisindeki belli bir adres aralığının spesifik olarak kapatılması
0c fffff887`256579f0 fffff806`08212905 nt!NtUnmapViewOfSectionEx+0x99
0d fffff887`25657a40 00007ff9`25590ea4 nt!KiSystemServiceCopyEnd+0x25
0e 00000045`e577bef8 00000000`00000000 0x00007ff9`25590ea4

Aynı şekilde son dosyan:

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: 0000000000000001, lock type that was held (value 1,2,3, or PTE address)
Arg2: ffffffffc0000005, error status (normally i/o status code)
Arg3: ffff800ce95680c0, current process (virtual address for lock type 3, or PTE)
Arg4: ffffb1bffaa6e000, virtual address that could not be in-paged (or PTE contents if arg1 is a PTE address)

Yükseltilen istisnaya dikkat etmek gerekiyor. Başlığa göre hep ilerlemek biraz ezbere kaçıyor artık.

Rich (BB code):
2: kd> !error c0000005.
Error code: (NTSTATUS) 0xc0000005 (3221225477) - 0x%p adresindeki yönerge 0x%p adresindeki belleğe başvurdu. Bellek şu olamaz %s.

Aynı şekilde,

Rich (BB code):
2: kd> .formats ffffb48bf1caee98.
Binary: 11111111 11111111 10110100 10001011 11110001 11001010 11101110 10011000.
2: kd> .formats ffffb48bf1caf120.
Binary: 11111111 11111111 10110100 10001011 11110001 11001010 11110001 00100000.

Özellikle erişilen adres ve erişilmek istenen 2 adres arasındaki bit farkları gibi şeyler de göze çarpıyor.

Nihayetinde bu tip sorunların çoğunluğunda ana sebep RAM oluyor. Kontrol etmek isteyebilirsin.

Rich (BB code):
 Speed 3600MHz.
 Manufacturer Wilk Elektronik S.A.
 Serial Number.
 Asset Tag Number.
 Part Number IRP3600D4V64L18S/8G
 Attributes 1
 Extended Size 0
 Configured Memory Speed  3600
 Minimum Voltage 1200.
 Maximum Voltage 1350.
 Configured Voltage 1200.

Hocam çok teşekkür ederim değerli cevabınız için sorun RAM'imin tekinin bozulmasından kaynaklıymış tekini çıkarınca düzeldi. Uzun zaman önce XMP açmıştım ondan olabilir mi peki? Yine aynı RAM'dan bir tane daha alacağım.
 
XMP direkt bunu etkilemez ki zaten XMP RAM'in vadettiği hızda çalışmasını sağlamaktan başka da bir şey yapmıyor. XMP hızlarında kararsızlık kabul edilebilir ama XMP, RAM'i bozdu demek uçuk kalır. Yani hayır.