8000 Tags · andikleen/mcelog · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: andikleen/mcelog

Tags

v206

Toggle v206's commit message
mcelog: Don't print "arstate" when PCC=1

The "action required" state is only meaningful when PCC==0.

Signed-off-by: Tony Luck <tony.luck@intel.com>

v205

Toggle v205's commit message
mcelog: Add a --binary option for reading records saved to pstore

The Linux kernel can be configured to save fatal error records to
persistent storage with the pstore file system. These are a raw
copy of "struct mce".

Add an option to skip the ioctl() calls that determine the record
size so that mcelog will decode a binary file given as argument.

Signed-off-by: Tony Luck <tony.luck@intel.com>

v204

Toggle v204's commit message
Enable offline retries by default

Signed-off-by: Andi Kleen <andi@firstfloor.org>

v203

Toggle v203's commit message
Add ability to retry failed page offlines with an exponential backoff

A page which fails to get offlined may become offlinable in the future,
depending on memory usage patterns. Under the circumstances that the page
continues to experience CEs, retrying the page offlining operation would
make sense.

This patch adds memory-ce-offline-retry, a mcelog.conf knob to turn on or
off the ability to retry offlining a page that continues to cross the
CE threshold. However, each successive retry will have an exponentially
higher threshold so as not to overrun the system with retries.

v202

Toggle v202's commit message
mcelog: Wire up model-specific decoding for Clearwater Forest

The model-specific decoding for Clearwater Forest is the same as
Granite Rapids'. Wire up the model-specific docoding of Granite Rapids
for Clearwater Forest.

Tested-by: Yi Lai <yi1.lai@intel.com>
Signed-off-by: Qiuxu Zhuo <qiuxu.zhuo@intel.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>

v201

Toggle v201's commit message

Verified

ADA7
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #124 from meow-watermelon/add_listen_backlog_opt

add listen backlog config for mcelog server

v200

Toggle v200's commit message
mcelog: Add new model number for Panther Lake

Signed-off-by: Tony Luck <tony.luck@intel.com>

v199

Toggle v199's commit message
server: Correct prameter type for connect() API

connect() function expects the second argument to be point to sockaddr
as per man sockaddr

int connect (int, const struct sockaddr *, socklen_t);

Fixes build failures with -Wincompatible-pointer-types when using GCC-14
and musl

Fixes
| server.c: In function 'server_ping':
| server.c:308:33: error: passing argument 2 of 'connect' from incompatible pointer type [-Wincompatible-pointer-types]
|   308 |                 if (connect(fd, un, sizeof(struct sockaddr_un)) < 0)
|       |                                 ^~
|       |                                 |
|       |                                 struct sockaddr_un *

Signed-off-by: Andi Kleen <ak@linux.intel.com>

v198

Toggle v198's commit message
page.c: Disable gcc warnings

v197

Toggle v197's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #119 from meow-watermelon/point_freed_ptr_null

assign freed pointers to NULL pointer
0