Searched refs:elog (Results 1 – 5 of 5) sorted by relevance
317 static inline uint8_t rtas_error_severity(const struct rtas_error_log *elog) in rtas_error_severity() argument319 return (elog->byte1 & 0xE0) >> 5; in rtas_error_severity()322 static inline uint8_t rtas_error_disposition(const struct rtas_error_log *elog) in rtas_error_disposition() argument324 return (elog->byte1 & 0x18) >> 3; in rtas_error_disposition()328 void rtas_set_disposition_recovered(struct rtas_error_log *elog) in rtas_set_disposition_recovered() argument330 elog->byte1 &= ~0x18; in rtas_set_disposition_recovered()331 elog->byte1 |= (RTAS_DISP_FULLY_RECOVERED << 3); in rtas_set_disposition_recovered()334 static inline uint8_t rtas_error_extended(const struct rtas_error_log *elog) in rtas_error_extended() argument336 return (elog->byte1 & 0x04) >> 2; in rtas_error_extended()339 static inline uint8_t rtas_error_initiator(const struct rtas_error_log *elog) in rtas_error_initiator() argument[all …]
71 static struct pseries_io_event * ioei_find_event(struct rtas_error_log *elog) in ioei_find_event() argument81 if (unlikely(rtas_error_type(elog) != RTAS_TYPE_IO)) { in ioei_find_event()83 rtas_error_type(elog)); in ioei_find_event()87 sect = get_pseries_errorlog(elog, PSERIES_ELOG_SECT_ID_IO_EVENT); in ioei_find_event()
597 struct rtas_error_log *elog; in hvpipe_event_interrupt() local610 elog = (struct rtas_error_log *)hvpipe_ras_buf; in hvpipe_event_interrupt()611 if (unlikely(rtas_error_type(elog) != RTAS_TYPE_HVPIPE)) { in hvpipe_event_interrupt()613 rtas_error_type(elog)); in hvpipe_event_interrupt()617 pseries_log = get_pseries_errorlog(elog, in hvpipe_event_interrupt()
1 What: /sys/firmware/opal/elog11 Each log entry has a directory in /sys/firmware/opal/elog.
2194 u32 elog; member