linux-edac.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-06-29 03:53:03 to 2023-08-01 11:58:05 UTC [more...]

W sprawie samochodu
 2023-07-31  8:35 UTC 

[PATCH RESEND v9 00/36] x86: enable FRED for x86-64
 2023-08-01 10:52 UTC  (28+ messages)
` [PATCH RESEND v9 01/36] Documentation/x86/64: Add documentation for FRED
` [PATCH RESEND v9 02/36] x86/fred: Add Kconfig option for FRED (CONFIG_X86_FRED)
` [PATCH RESEND v9 03/36] x86/fred: Disable FRED support if CONFIG_X86_FRED is disabled
` [PATCH RESEND v9 04/36] x86/cpufeatures: Add the cpu feature bit for FRED
` [PATCH RESEND v9 05/36] x86/opcode: Add ERETU, ERETS instructions to x86-opcode-map
` [PATCH RESEND v9 06/36] x86/objtool: Teach objtool about ERETU and ERETS
` [PATCH RESEND v9 07/36] x86/cpu: Add X86_CR4_FRED macro
` [PATCH RESEND v9 08/36] x86/cpu: Add MSR numbers for FRED configuration
` [PATCH RESEND v9 09/36] x86/fred: Make unions for the cs and ss fields in struct pt_regs
` [PATCH RESEND v9 10/36] x86/fred: Add a new header file for FRED definitions
` [PATCH RESEND v9 11/36] x86/fred: Reserve space for the FRED stack frame
` [PATCH RESEND v9 12/36] x86/fred: Update MSR_IA32_FRED_RSP0 during task switch
` [PATCH RESEND v9 13/36] x86/fred: Let ret_from_fork_asm() jmp to fred_exit_user when FRED is enabled
` [PATCH RESEND v9 14/36] x86/fred: Disallow the swapgs instruction "
` [PATCH RESEND v9 15/36] x86/fred: No ESPFIX needed "
` [PATCH RESEND v9 16/36] x86/fred: Allow single-step trap and NMI when starting a new task
` [PATCH RESEND v9 17/36] x86/fred: Define a common function type fred_handler
` [PATCH RESEND v9 18/36] x86/fred: Add a page fault entry stub for FRED
` [PATCH RESEND v9 19/36] x86/fred: Add a debug "
` [PATCH RESEND v9 20/36] x86/fred: Add a NMI "
` [PATCH RESEND v9 21/36] x86/fred: Add a machine check "
` [PATCH RESEND v9 22/36] x86/fred: Add a double fault "
` [PATCH RESEND v9 23/36] x86/entry: Remove idtentry_sysvec from entry_{32,64}.S
` [PATCH RESEND v9 24/36] x86/idtentry: Incorporate definitions/declarations of the FRED external interrupt handler type
` [PATCH RESEND v9 25/36] x86/traps: Add a system interrupt handler table for system interrupt dispatch
` [PATCH RESEND v9 26/36] x86/traps: Add sysvec_install() to install a system interrupt handler

[PATCH RESEND v9 27/36] x86/traps: Add external_interrupt() to dispatch external interrupts
 2023-08-01  8:35 UTC  (10+ messages)
` [PATCH RESEND v9 28/36] x86/idtentry: Incorporate declaration/definition of the FRED exception handler type
` [PATCH RESEND v9 29/36] x86/fred: FRED entry/exit and dispatch code
` [PATCH RESEND v9 30/36] x86/fred: Fixup fault on ERETU by jumping to fred_entrypoint_user
` [PATCH RESEND v9 31/36] x86/traps: Export external_interrupt() for handling IRQ in IRQ induced VM exits
` [PATCH RESEND v9 32/36] x86/fred: Export fred_entrypoint_kernel() for handling NMI in NMI "
` [PATCH RESEND v9 33/36] KVM: VMX: Add VMX_DO_FRED_EVENT_IRQOFF for IRQ/NMI handling
` [PATCH RESEND v9 34/36] x86/syscall: Split IDT syscall setup code into idt_syscall_init()
` [PATCH RESEND v9 35/36] x86/fred: FRED initialization code
` [PATCH RESEND v9 36/36] x86/fred: Disable FRED by default in its early stage

[PATCH] EDAC/device: Add sysfs notification for UE,CE count change
 2023-08-01  5:48 UTC  (3+ messages)

[PATCH v9 00/36] x86: enable FRED for x86-64
 2023-07-31 23:56 UTC  (32+ messages)
` [PATCH v9 01/36] Documentation/x86/64: Add documentation for FRED
` [PATCH v9 02/36] x86/fred: Add Kconfig option for FRED (CONFIG_X86_FRED)
` [PATCH v9 03/36] x86/fred: Disable FRED support if CONFIG_X86_FRED is disabled
` [PATCH v9 04/36] x86/cpufeatures: Add the cpu feature bit for FRED
` [PATCH v9 05/36] x86/opcode: Add ERETU, ERETS instructions to x86-opcode-map
` [PATCH v9 06/36] x86/objtool: Teach objtool about ERETU and ERETS
` [PATCH v9 07/36] x86/cpu: Add X86_CR4_FRED macro
` [PATCH v9 08/36] x86/cpu: Add MSR numbers for FRED configuration
` [PATCH v9 09/36] x86/fred: Make unions for the cs and ss fields in struct pt_regs
` [PATCH v9 10/36] x86/fred: Add a new header file for FRED definitions
` [PATCH v9 11/36] x86/fred: Reserve space for the FRED stack frame
` [PATCH v9 12/36] x86/fred: Update MSR_IA32_FRED_RSP0 during task switch
` [PATCH v9 13/36] x86/fred: Let ret_from_fork_asm() jmp to fred_exit_user when FRED is enabled
` [PATCH v9 14/36] x86/fred: Disallow the swapgs instruction "
` [PATCH v9 15/36] x86/fred: No ESPFIX needed "
` [PATCH v9 16/36] x86/fred: Allow single-step trap and NMI when starting a new task
` [PATCH v9 17/36] x86/fred: Define a common function type fred_handler
` [PATCH v9 18/36] x86/fred: Add a page fault entry stub for FRED
` [PATCH v9 19/36] x86/fred: Add a debug "
` [PATCH v9 20/36] x86/fred: Add a NMI "
` [PATCH v9 21/36] x86/fred: Add a machine check "
` [PATCH v9 22/36] x86/fred: Add a double fault "
` [PATCH v9 23/36] x86/entry: Remove idtentry_sysvec from entry_{32,64}.S
` [PATCH v9 24/36] x86/idtentry: Incorporate definitions/declarations of the FRED external interrupt handler type
` [PATCH v9 25/36] x86/traps: Add a system interrupt handler table for system interrupt dispatch

[PATCH v9 29/36] x86/fred: FRED entry/exit and dispatch code
 2023-07-31 22:07 UTC  (3+ messages)

[PATCH v9 30/36] x86/fred: Fixup fault on ERETU by jumping to fred_entrypoint_user
 2023-07-31  6:41 UTC  (7+ messages)
` [PATCH v9 31/36] x86/traps: Export external_interrupt() for handling IRQ in IRQ induced VM exits
` [PATCH v9 32/36] x86/fred: Export fred_entrypoint_kernel() for handling NMI in NMI "
` [PATCH v9 33/36] KVM: VMX: Add VMX_DO_FRED_EVENT_IRQOFF for IRQ/NMI handling
` [PATCH v9 34/36] x86/syscall: Split IDT syscall setup code into idt_syscall_init()
` [PATCH v9 35/36] x86/fred: FRED initialization code
` [PATCH v9 36/36] x86/fred: Disable FRED by default in its early stage

[PATCH v9 28/36] x86/idtentry: Incorporate declaration/definition of the FRED exception handler type
 2023-07-31  6:41 UTC 

[PATCH v9 27/36] x86/traps: Add external_interrupt() to dispatch external interrupts
 2023-07-31  6:40 UTC 

[PATCH v9 26/36] x86/traps: Add sysvec_install() to install a system interrupt handler
 2023-07-31  6:40 UTC 

[PATCH v0 RESEND] EDAC/bluefield_edac: Add SMC support
 2023-07-28  9:53 UTC 

Słowa kluczowe do wypozycjonowania
 2023-07-27  7:35 UTC 

[PATCH 1/1] EDAC/igen6: Fix the issue of no error events
 2023-07-26  2:31 UTC  (3+ messages)

[PATCH 1/1] EDAC/i10nm: Skip the absent memory controllers
 2023-07-24 16:09 UTC  (5+ messages)
  ` [PATCH v2 "

[PATCH v2 00/19] EDAC/mc/synopsys: Various fixes and cleanups
 2023-07-24 15:24 UTC  (5+ messages)

Don't miss out on our low Interest loan opportunity
 2023-07-24  8:46 UTC 

Warnings when suspending to disk
 2023-07-22  8:38 UTC  (8+ messages)

[PATCH 0/7] AMD Family 19h Models 90h-9fh EDAC Support
 2023-07-22  8:20 UTC  (16+ messages)
` [PATCH 1/7] x86/amd_nb: Add AMD Family 19h Models(80h-80fh) and (90h-9fh) PCI IDs
` [PATCH 2/7] EDAC/mce_amd: Remove SMCA Extended Error code descriptions
` [PATCH 3/7] x86/MCE/AMD: Add new MA_LLC, USR_DP, and USR_CP bank types
` [PATCH 4/7] EDAC/mc: Add new HBM3 memory type
` [PATCH 5/7] EDAC/amd64: Add Fam19h Model 90h ~ 9fh enumeration support
` [PATCH 6/7] EDAC/amd64: Add error instance get_err_info() to pvt->ops
` [PATCH 7/7] EDAC/amd64: Add Error address conversion for UMC

[PATCH v4] mce: prevent concurrent polling of MCE events
 2023-07-20 12:53 UTC  (6+ messages)
    ` [PATCH] x86/mce: Prevent duplicate error records

[PATCH] x86/mce: Set PG_hwpoison page flag to avoid the capture kernel panic
 2023-07-19 21:16 UTC  (2+ messages)
` [PATCH v2] "

[PATCH v5 0/5] Handle corrected machine check interrupt storms
 2023-07-18 21:08 UTC  (10+ messages)
` [PATCH v6 0/4] "
  ` [PATCH v6 2/4] x86/mce: Add per-bank CMCI storm mitigation
  ` [PATCH v7 0/3] Handle corrected machine check interrupt storms
    ` [PATCH v7 1/3] x86/mce: Remove old CMCI storm mitigation code
    ` [PATCH v7 2/3] x86/mce: Add per-bank CMCI storm mitigation
    ` [PATCH v7 3/3] x86/mce: Handle Intel threshold interrupt storms

Fwd: [PATCH] drivers/edac: Fix comment typo
 2023-07-18 16:35 UTC  (2+ messages)
  `  "

[PATCH v7 0/2] edac: xilinx: Added EDAC support for Xilinx DDR controller
 2023-07-17 15:17 UTC  (5+ messages)
` [PATCH v7 2/2] EDAC/versal: Add a Xilinx Versal memory controller driver

[PATCH] EDAC: Explicitly include correct DT includes
 2023-07-14 17:44 UTC 

[PATCH] drivers/edac: Use unsigned int instead of unsigned
 2023-07-14  6:31 UTC 

[PATCH] drivers: edac: add missing spaces after ','
 2023-07-14  6:02 UTC 

[PATCH] drivers: edac: add missing spaces after ','
 2023-07-14  3:53 UTC 

[PATCH] drivers: edac: add missing spaces after ','
 2023-07-14  3:39 UTC 

[PATCH] rivers: edac Change 'unsigned' to 'unsigned int'
 2023-07-14  3:13 UTC 

[PATCH] drivers: edac 'unsigned int' to bare use of 'unsigned'
 2023-07-14  2:50 UTC 

[PATCH] drivers: edac 'unsigned int' to bare use of 'unsigned'
 2023-07-14  2:32 UTC 

[PATCH] drivers/edac: amd64_edac: Add space after ','
 2023-07-14  2:11 UTC 

[PATCH v1] drivers: fix parameter check in create_debugfs_nodes()
 2023-07-12 12:06 UTC 

Słowa kluczowe do wypozycjonowania
 2023-07-12  8:05 UTC 

[PATCH] Fix an off-by-one buffer overrun in inject_ue_write
 2023-07-11  9:12 UTC  (4+ messages)
` [PATCH v2] EDAC/zynqmp: "

[PATCH][V2] EDAC/i10nm: shift exponent is negative
 2023-07-10  8:08 UTC  (21+ messages)
  ` [PATCH v2] "
              ` [v2/v3] "

[PATCH v1 0/3] Updates for AMD Family 1Ah-based Models
 2023-07-06 17:31 UTC  (5+ messages)
` [PATCH v1 1/3] x86/amd_nb: Add PCI IDs for AMD Family 1Ah-based models
` [PATCH v1 2/3] hwmon: (k10temp) Add thermal support "
` [PATCH v1 3/3] EDAC/amd64: Add support for AMD Family 1Ah Models 00h-1Fh and 40h-4Fh

[PATCH] EDAC/Intel: Fix shift-out-of-bounds when DIMM/NVDIMM is absent
 2023-07-06 14:19 UTC  (7+ messages)

Loan/Investment offer
 2023-07-05  6:19 UTC 

[PATCH v3] EDAC/i10nm: Fix an inappropriate shift exponent
 2023-07-04 12:49 UTC  (2+ messages)

[PATCH 1/5] EDAC, mellanox: Convert to devm_platform_ioremap_resource()
 2023-07-04 12:17 UTC  (6+ messages)
` [PATCH 2/5] EDAC/dmc520: "
` [PATCH 3/5] EDAC/synopsys: "
` [PATCH 4/5] EDAC/ti: "
` [PATCH 5/5] EDAC/xgene: "

[PATCH 0/3] Update rasdaemon decoding for AMD systems
 2023-07-04 10:58 UTC  (4+ messages)
` [PATCH 1/3] rasdaemon: Decode bank_type based on InstanceIdHi in MCA_IPID
` [PATCH 2/3] rasdaemon: Add new MA_LLC, USR_DP, and USR_CP bank types
` [PATCH 3/3] rasdaemon: Handle reassigned bit definitions for UMC bank

[PATCH] EDAC/i10nm: shift exponent is negative
 2023-06-30  8:31 UTC  (6+ messages)

[RFC] msr: judge the return val of function rdmsrl_on_cpu() by WARN_ON
 2023-06-30  2:45 UTC  (5+ messages)

Słowa kluczowe do wypozycjonowania
 2023-06-29  7:30 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).