mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-07-06 20:53:35 +00:00
added PICMG netfn\n ran lindent
This commit is contained in:
@ -57,7 +57,6 @@
|
|||||||
#define IPMI_PAYLOAD_TYPE_RAKP_3 0x14
|
#define IPMI_PAYLOAD_TYPE_RAKP_3 0x14
|
||||||
#define IPMI_PAYLOAD_TYPE_RAKP_4 0x15
|
#define IPMI_PAYLOAD_TYPE_RAKP_4 0x15
|
||||||
|
|
||||||
|
|
||||||
extern int verbose;
|
extern int verbose;
|
||||||
extern int csv_output;
|
extern int csv_output;
|
||||||
|
|
||||||
@ -72,7 +71,6 @@ struct ipmi_rq {
|
|||||||
} msg;
|
} msg;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This is what the sendrcv_v2() function would take as an argument. The common case
|
* This is what the sendrcv_v2() function would take as an argument. The common case
|
||||||
* is for payload_type to be IPMI_PAYLOAD_TYPE_IPMI.
|
* is for payload_type to be IPMI_PAYLOAD_TYPE_IPMI.
|
||||||
@ -136,8 +134,6 @@ struct ipmi_v2_payload {
|
|||||||
} payload;
|
} payload;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
struct ipmi_rq_entry {
|
struct ipmi_rq_entry {
|
||||||
struct ipmi_rq req;
|
struct ipmi_rq req;
|
||||||
struct ipmi_intf *intf;
|
struct ipmi_intf *intf;
|
||||||
@ -147,9 +143,6 @@ struct ipmi_rq_entry {
|
|||||||
struct ipmi_rq_entry *next;
|
struct ipmi_rq_entry *next;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
struct ipmi_rs {
|
struct ipmi_rs {
|
||||||
uint8_t ccode;
|
uint8_t ccode;
|
||||||
uint8_t data[IPMI_BUF_SIZE];
|
uint8_t data[IPMI_BUF_SIZE];
|
||||||
@ -180,7 +173,6 @@ struct ipmi_rs {
|
|||||||
uint16_t msglen;
|
uint16_t msglen;
|
||||||
} session;
|
} session;
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* A union of the different possible payload meta-data
|
* A union of the different possible payload meta-data
|
||||||
*/
|
*/
|
||||||
@ -232,8 +224,6 @@ struct ipmi_rs {
|
|||||||
} payload;
|
} payload;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define IPMI_NETFN_CHASSIS 0x0
|
#define IPMI_NETFN_CHASSIS 0x0
|
||||||
#define IPMI_NETFN_BRIDGE 0x2
|
#define IPMI_NETFN_BRIDGE 0x2
|
||||||
#define IPMI_NETFN_SE 0x4
|
#define IPMI_NETFN_SE 0x4
|
||||||
@ -241,6 +231,7 @@ struct ipmi_rs {
|
|||||||
#define IPMI_NETFN_FIRMWARE 0x8
|
#define IPMI_NETFN_FIRMWARE 0x8
|
||||||
#define IPMI_NETFN_STORAGE 0xa
|
#define IPMI_NETFN_STORAGE 0xa
|
||||||
#define IPMI_NETFN_TRANSPORT 0xc
|
#define IPMI_NETFN_TRANSPORT 0xc
|
||||||
|
#define IPMI_NETFN_PICMG 0x2C
|
||||||
#define IPMI_NETFN_ISOL 0x34
|
#define IPMI_NETFN_ISOL 0x34
|
||||||
|
|
||||||
#define IPMI_BMC_SLAVE_ADDR 0x20
|
#define IPMI_BMC_SLAVE_ADDR 0x20
|
||||||
|
Reference in New Issue
Block a user