├── .gitignore ├── CHANGES ├── LICENSE ├── Makefile ├── README.md ├── README.releases ├── THIRD-PARTY ├── bitfield.c ├── bitfield.h ├── broadwell_de.c ├── broadwell_de.h ├── broadwell_epex.c ├── broadwell_epex.h ├── bus.c ├── bus.h ├── cache.c ├── cache.h ├── client.c ├── client.h ├── config-intro.man ├── config.c ├── config.h ├── core2.c ├── core2.h ├── cputype.table ├── denverton.c ├── denverton.h ├── diamond.c ├── diamond.h ├── dmi.c ├── dmi.h ├── dunnington.c ├── dunnington.h ├── eventloop.c ├── eventloop.h ├── genconfig.py ├── granite.c ├── granite.h ├── haswell.c ├── haswell.h ├── i10nm.c ├── i10nm.h ├── input ├── GENCACHE ├── GENMCA ├── GENMEM ├── GENPAGE ├── bdw_mirror1 ├── bdw_mirror2 ├── dimm0 ├── dmr_dcu_srar ├── full1 ├── iomca ├── simple1 ├── skx_mirror1 ├── skx_mirror2 ├── spr_uc_patscrub ├── unknown └── xen ├── intel.c ├── intel.h ├── ivy-bridge.c ├── ivy-bridge.h ├── k8.c ├── k8.h ├── leaky-bucket.c ├── leaky-bucket.h ├── list.h ├── lk10-mcelog.pdf ├── mce.pdf ├── mcelog.8 ├── mcelog.c ├── mcelog.conf ├── mcelog.cron ├── mcelog.h ├── mcelog.init ├── mcelog.logrotate ├── mcelog.service ├── mcelog.triggers.5 ├── memdb.c ├── memdb.h ├── memutil.c ├── memutil.h ├── mkcputype ├── msg.c ├── msg.h ├── msr.c ├── nehalem.c ├── nehalem.h ├── p4.c ├── p4.h ├── page.c ├── page.h ├── paths.h ├── rbtree.c ├── rbtree.h ├── sandy-bridge.c ├── sandy-bridge.h ├── sapphire.c ├── sapphire.h ├── server.c ├── server.h ├── skylake_xeon.c ├── skylake_xeon.h ├── sysfs.c ├── sysfs.h ├── tests ├── Makefile ├── cache │ ├── cache.conf │ └── inject ├── mcaerr_test ├── memdb │ ├── inject │ ├── memdb-1.conf │ └── memdb-2.conf ├── page │ ├── inject │ ├── page-account.conf │ ├── page-error-counter-replacement.conf │ ├── page-hard.conf │ ├── page-memdb.conf │ ├── page-off.conf │ ├── page-soft-then-hard.conf │ └── page-soft.conf ├── pfa │ ├── PFA_test_howto │ ├── inject │ ├── page-account.conf │ ├── page-hard.conf │ ├── page-soft-then-hard.conf │ └── page-soft.conf ├── server │ ├── inject │ └── server.conf ├── socket │ ├── inject │ ├── socket-1.conf │ ├── socket-2.conf │ └── socket-memdb.conf ├── test ├── trigger └── unknown │ ├── inject │ └── unknown.conf ├── trigger.c ├── trigger.h ├── triggers ├── bus-error-trigger ├── cache-error-trigger ├── dimm-error-trigger ├── iomca-error-trigger ├── page-error-counter-replacement-trigger ├── page-error-post-sync-soft-trigger ├── page-error-pre-sync-soft-trigger ├── page-error-trigger ├── socket-memory-error-trigger └── unknown-error-trigger ├── tsc.c ├── tsc.h ├── tulsa.c ├── tulsa.h ├── unknown.c ├── unknown.h ├── version.h ├── yellow.c └── yellow.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/README.md -------------------------------------------------------------------------------- /README.releases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/README.releases -------------------------------------------------------------------------------- /THIRD-PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/THIRD-PARTY -------------------------------------------------------------------------------- /bitfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/bitfield.c -------------------------------------------------------------------------------- /bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/bitfield.h -------------------------------------------------------------------------------- /broadwell_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/broadwell_de.c -------------------------------------------------------------------------------- /broadwell_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/broadwell_de.h -------------------------------------------------------------------------------- /broadwell_epex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/broadwell_epex.c -------------------------------------------------------------------------------- /broadwell_epex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/broadwell_epex.h -------------------------------------------------------------------------------- /bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/bus.c -------------------------------------------------------------------------------- /bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/bus.h -------------------------------------------------------------------------------- /cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/cache.c -------------------------------------------------------------------------------- /cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/cache.h -------------------------------------------------------------------------------- /client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/client.c -------------------------------------------------------------------------------- /client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/client.h -------------------------------------------------------------------------------- /config-intro.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/config-intro.man -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/config.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/config.h -------------------------------------------------------------------------------- /core2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/core2.c -------------------------------------------------------------------------------- /core2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/core2.h -------------------------------------------------------------------------------- /cputype.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/cputype.table -------------------------------------------------------------------------------- /denverton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/denverton.c -------------------------------------------------------------------------------- /denverton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/denverton.h -------------------------------------------------------------------------------- /diamond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/diamond.c -------------------------------------------------------------------------------- /diamond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/diamond.h -------------------------------------------------------------------------------- /dmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/dmi.c -------------------------------------------------------------------------------- /dmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/dmi.h -------------------------------------------------------------------------------- /dunnington.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/dunnington.c -------------------------------------------------------------------------------- /dunnington.h: -------------------------------------------------------------------------------- 1 | void dunnington_decode_model(u64 status); 2 | 3 | -------------------------------------------------------------------------------- /eventloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/eventloop.c -------------------------------------------------------------------------------- /eventloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/eventloop.h -------------------------------------------------------------------------------- /genconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/genconfig.py -------------------------------------------------------------------------------- /granite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/granite.c -------------------------------------------------------------------------------- /granite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/granite.h -------------------------------------------------------------------------------- /haswell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/haswell.c -------------------------------------------------------------------------------- /haswell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/haswell.h -------------------------------------------------------------------------------- /i10nm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/i10nm.c -------------------------------------------------------------------------------- /i10nm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/i10nm.h -------------------------------------------------------------------------------- /input/GENCACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/GENCACHE -------------------------------------------------------------------------------- /input/GENMCA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/GENMCA -------------------------------------------------------------------------------- /input/GENMEM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/GENMEM -------------------------------------------------------------------------------- /input/GENPAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/GENPAGE -------------------------------------------------------------------------------- /input/bdw_mirror1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/bdw_mirror1 -------------------------------------------------------------------------------- /input/bdw_mirror2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/bdw_mirror2 -------------------------------------------------------------------------------- /input/dimm0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/dimm0 -------------------------------------------------------------------------------- /input/dmr_dcu_srar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/dmr_dcu_srar -------------------------------------------------------------------------------- /input/full1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/full1 -------------------------------------------------------------------------------- /input/iomca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/iomca -------------------------------------------------------------------------------- /input/simple1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/simple1 -------------------------------------------------------------------------------- /input/skx_mirror1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/skx_mirror1 -------------------------------------------------------------------------------- /input/skx_mirror2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/skx_mirror2 -------------------------------------------------------------------------------- /input/spr_uc_patscrub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/spr_uc_patscrub -------------------------------------------------------------------------------- /input/unknown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/unknown -------------------------------------------------------------------------------- /input/xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/input/xen -------------------------------------------------------------------------------- /intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/intel.c -------------------------------------------------------------------------------- /intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/intel.h -------------------------------------------------------------------------------- /ivy-bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/ivy-bridge.c -------------------------------------------------------------------------------- /ivy-bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/ivy-bridge.h -------------------------------------------------------------------------------- /k8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/k8.c -------------------------------------------------------------------------------- /k8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/k8.h -------------------------------------------------------------------------------- /leaky-bucket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/leaky-bucket.c -------------------------------------------------------------------------------- /leaky-bucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/leaky-bucket.h -------------------------------------------------------------------------------- /list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/list.h -------------------------------------------------------------------------------- /lk10-mcelog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/lk10-mcelog.pdf -------------------------------------------------------------------------------- /mce.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mce.pdf -------------------------------------------------------------------------------- /mcelog.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mcelog.8 -------------------------------------------------------------------------------- /mcelog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mcelog.c -------------------------------------------------------------------------------- /mcelog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mcelog.conf -------------------------------------------------------------------------------- /mcelog.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mcelog.cron -------------------------------------------------------------------------------- /mcelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mcelog.h -------------------------------------------------------------------------------- /mcelog.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mcelog.init -------------------------------------------------------------------------------- /mcelog.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mcelog.logrotate -------------------------------------------------------------------------------- /mcelog.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mcelog.service -------------------------------------------------------------------------------- /mcelog.triggers.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mcelog.triggers.5 -------------------------------------------------------------------------------- /memdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/memdb.c -------------------------------------------------------------------------------- /memdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/memdb.h -------------------------------------------------------------------------------- /memutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/memutil.c -------------------------------------------------------------------------------- /memutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/memutil.h -------------------------------------------------------------------------------- /mkcputype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/mkcputype -------------------------------------------------------------------------------- /msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/msg.c -------------------------------------------------------------------------------- /msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/msg.h -------------------------------------------------------------------------------- /msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/msr.c -------------------------------------------------------------------------------- /nehalem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/nehalem.c -------------------------------------------------------------------------------- /nehalem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/nehalem.h -------------------------------------------------------------------------------- /p4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/p4.c -------------------------------------------------------------------------------- /p4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/p4.h -------------------------------------------------------------------------------- /page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/page.c -------------------------------------------------------------------------------- /page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/page.h -------------------------------------------------------------------------------- /paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/paths.h -------------------------------------------------------------------------------- /rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/rbtree.c -------------------------------------------------------------------------------- /rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/rbtree.h -------------------------------------------------------------------------------- /sandy-bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/sandy-bridge.c -------------------------------------------------------------------------------- /sandy-bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/sandy-bridge.h -------------------------------------------------------------------------------- /sapphire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/sapphire.c -------------------------------------------------------------------------------- /sapphire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/sapphire.h -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/server.c -------------------------------------------------------------------------------- /server.h: -------------------------------------------------------------------------------- 1 | void server_setup(void); 2 | -------------------------------------------------------------------------------- /skylake_xeon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/skylake_xeon.c -------------------------------------------------------------------------------- /skylake_xeon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/skylake_xeon.h -------------------------------------------------------------------------------- /sysfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/sysfs.c -------------------------------------------------------------------------------- /sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/sysfs.h -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/cache/cache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/cache/cache.conf -------------------------------------------------------------------------------- /tests/cache/inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/cache/inject -------------------------------------------------------------------------------- /tests/mcaerr_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/mcaerr_test -------------------------------------------------------------------------------- /tests/memdb/inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/memdb/inject -------------------------------------------------------------------------------- /tests/memdb/memdb-1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/memdb/memdb-1.conf -------------------------------------------------------------------------------- /tests/memdb/memdb-2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/memdb/memdb-2.conf -------------------------------------------------------------------------------- /tests/page/inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/page/inject -------------------------------------------------------------------------------- /tests/page/page-account.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/page/page-account.conf -------------------------------------------------------------------------------- /tests/page/page-error-counter-replacement.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/page/page-error-counter-replacement.conf -------------------------------------------------------------------------------- /tests/page/page-hard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/page/page-hard.conf -------------------------------------------------------------------------------- /tests/page/page-memdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/page/page-memdb.conf -------------------------------------------------------------------------------- /tests/page/page-off.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/page/page-off.conf -------------------------------------------------------------------------------- /tests/page/page-soft-then-hard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/page/page-soft-then-hard.conf -------------------------------------------------------------------------------- /tests/page/page-soft.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/page/page-soft.conf -------------------------------------------------------------------------------- /tests/pfa/PFA_test_howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/pfa/PFA_test_howto -------------------------------------------------------------------------------- /tests/pfa/inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/pfa/inject -------------------------------------------------------------------------------- /tests/pfa/page-account.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/pfa/page-account.conf -------------------------------------------------------------------------------- /tests/pfa/page-hard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/pfa/page-hard.conf -------------------------------------------------------------------------------- /tests/pfa/page-soft-then-hard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/pfa/page-soft-then-hard.conf -------------------------------------------------------------------------------- /tests/pfa/page-soft.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/pfa/page-soft.conf -------------------------------------------------------------------------------- /tests/server/inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/server/inject -------------------------------------------------------------------------------- /tests/server/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/server/server.conf -------------------------------------------------------------------------------- /tests/socket/inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/socket/inject -------------------------------------------------------------------------------- /tests/socket/socket-1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/socket/socket-1.conf -------------------------------------------------------------------------------- /tests/socket/socket-2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/socket/socket-2.conf -------------------------------------------------------------------------------- /tests/socket/socket-memdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/socket/socket-memdb.conf -------------------------------------------------------------------------------- /tests/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/test -------------------------------------------------------------------------------- /tests/trigger: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo trigger 4 | env | egrep -v 'PATH' 5 | -------------------------------------------------------------------------------- /tests/unknown/inject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/unknown/inject -------------------------------------------------------------------------------- /tests/unknown/unknown.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tests/unknown/unknown.conf -------------------------------------------------------------------------------- /trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/trigger.c -------------------------------------------------------------------------------- /trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/trigger.h -------------------------------------------------------------------------------- /triggers/bus-error-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/bus-error-trigger -------------------------------------------------------------------------------- /triggers/cache-error-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/cache-error-trigger -------------------------------------------------------------------------------- /triggers/dimm-error-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/dimm-error-trigger -------------------------------------------------------------------------------- /triggers/iomca-error-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/iomca-error-trigger -------------------------------------------------------------------------------- /triggers/page-error-counter-replacement-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/page-error-counter-replacement-trigger -------------------------------------------------------------------------------- /triggers/page-error-post-sync-soft-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/page-error-post-sync-soft-trigger -------------------------------------------------------------------------------- /triggers/page-error-pre-sync-soft-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/page-error-pre-sync-soft-trigger -------------------------------------------------------------------------------- /triggers/page-error-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/page-error-trigger -------------------------------------------------------------------------------- /triggers/socket-memory-error-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/socket-memory-error-trigger -------------------------------------------------------------------------------- /triggers/unknown-error-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/triggers/unknown-error-trigger -------------------------------------------------------------------------------- /tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tsc.c -------------------------------------------------------------------------------- /tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tsc.h -------------------------------------------------------------------------------- /tulsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tulsa.c -------------------------------------------------------------------------------- /tulsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/tulsa.h -------------------------------------------------------------------------------- /unknown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/unknown.c -------------------------------------------------------------------------------- /unknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/unknown.h -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/version.h -------------------------------------------------------------------------------- /yellow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/yellow.c -------------------------------------------------------------------------------- /yellow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andikleen/mcelog/HEAD/yellow.h --------------------------------------------------------------------------------