Lines Matching full:mce
5 #include <uapi/asm/mce.h>
144 /* mce.kflags flag bits for logging etc. */
153 * Indicates an MCE which has happened in kernel space but from
161 * Indicates an MCE that happened in kernel space while copying data
169 * This structure contains all data related to the MCE log. Also
179 unsigned recordlen; /* length of struct mce */
180 struct mce entry[];
201 * Vendor-specific fields should not be added to struct mce. Instead, vendors
210 struct mce m;
220 #define to_mce_hw_err(mce) container_of(mce, struct mce_hw_err, m) argument
280 bool mce_is_memory_error(struct mce *m);
281 bool mce_is_correctable(struct mce *m);
282 bool mce_usable_address(struct mce *m);
301 DECLARE_PER_CPU(struct mce, injectm);
374 extern bool amd_mce_is_memory_error(struct mce *m);
385 static inline bool amd_mce_is_memory_error(struct mce *m) { return false; }; in amd_mce_is_memory_error()