Re: [1/5] pseries: Define rtas hotplug event sections
From: Michael Ellerman <mpe@ellerman.id.au>
Date: 2014-09-17 07:06:59
On Mon, 2014-09-15 at 15:29 -0500, Nathan Fontenot wrote:
quoted hunk ↗ jump to hunk
diff --git a/arch/powerpc/include/asm/rtas.h b/arch/powerpc/include/asm/rtas.h index b390f55..a01879e 100644 --- a/arch/powerpc/include/asm/rtas.h +++ b/arch/powerpc/include/asm/rtas.h@@ -273,6 +273,7 @@ inline uint32_t rtas_ext_event_company_id(struct rtas_ext_event_log_v6 *ext_log) #define PSERIES_ELOG_SECT_ID_MANUFACT_INFO (('M' << 8) | 'I') #define PSERIES_ELOG_SECT_ID_CALL_HOME (('C' << 8) | 'H') #define PSERIES_ELOG_SECT_ID_USER_DEF (('U' << 8) | 'D') +#define PSERIES_ELOG_SECT_ID_HOTPLUG (('H' << 8) | 'P') /* Vendor specific Platform Event Log Format, Version 6, section header */ struct pseries_errorlog {@@ -296,6 +297,31 @@ inline uint16_t pseries_errorlog_length(struct pseries_errorlog *sect) return be16_to_cpu(sect->length); } +/* RTAS pseries hotplug errorlog section */ +struct pseries_hp_errorlog { + uint8_t resource; + uint8_t action; + uint8_t id_type; + uint8_t reserved;
These should be u8.
+ union {
+ __be32 drc_index;
+ __be32 drc_count;
+ char drc_name[1];I don't see drc_name used?
+ } _drc_u; +};
cheers