Lines 85-90
slurmd_conf_t *conf = NULL;
Link Here
|
85 |
#define XCC_FLAG_FAKE 0x00000001 |
85 |
#define XCC_FLAG_FAKE 0x00000001 |
86 |
/* Match cmd_rq[] response expectations */ |
86 |
/* Match cmd_rq[] response expectations */ |
87 |
#define XCC_SD650_RESPONSE_LEN 16 |
87 |
#define XCC_SD650_RESPONSE_LEN 16 |
|
|
88 |
#define XCC_SD650V2_RESPONSE_LEN 40 |
88 |
|
89 |
|
89 |
/* |
90 |
/* |
90 |
* These variables are required by the generic plugin interface. If they |
91 |
* These variables are required by the generic plugin interface. If they |
Lines 210-220
typedef struct slurm_ipmi_conf {
Link Here
|
210 |
uint32_t workaround_flags; |
211 |
uint32_t workaround_flags; |
211 |
} slurm_ipmi_conf_t; |
212 |
} slurm_ipmi_conf_t; |
212 |
|
213 |
|
|
|
214 |
typedef enum xcc_version { |
215 |
XCC_SD650_VERSION = 0, |
216 |
XCC_SD650V2_VERSION |
217 |
} xcc_version_t; |
218 |
|
213 |
/* Struct to store the raw single data command reading */ |
219 |
/* Struct to store the raw single data command reading */ |
214 |
typedef struct xcc_raw_single_data { |
220 |
typedef struct xcc_raw_single_data { |
|
|
221 |
xcc_version_t version; |
215 |
uint16_t fifo_inx; |
222 |
uint16_t fifo_inx; |
216 |
uint32_t j; |
223 |
uint32_t j; |
217 |
uint16_t mj; |
224 |
uint16_t mj; |
|
|
225 |
uint32_t w; |
226 |
uint16_t mw; |
218 |
uint16_t ms; |
227 |
uint16_t ms; |
219 |
uint32_t s; |
228 |
uint32_t s; |
220 |
} xcc_raw_single_data_t; |
229 |
} xcc_raw_single_data_t; |
Lines 443-451
static xcc_raw_single_data_t *_read_ipmi_values(void)
Link Here
|
443 |
|
452 |
|
444 |
debug3("ipmi_cmd_raw: %s", ipmi_ctx_errormsg(ipmi_ctx)); |
453 |
debug3("ipmi_cmd_raw: %s", ipmi_ctx_errormsg(ipmi_ctx)); |
445 |
|
454 |
|
446 |
if (rs_len != XCC_SD650_RESPONSE_LEN) { |
455 |
if ((rs_len != XCC_SD650_RESPONSE_LEN) && |
447 |
error("Invalid ipmi response length for XCC raw command: %d bytes, expected %d", |
456 |
(rs_len != XCC_SD650V2_RESPONSE_LEN)) { |
448 |
rs_len, XCC_SD650_RESPONSE_LEN); |
457 |
error("Invalid ipmi response length for XCC raw command: %d bytes, expected %d or %d", |
|
|
458 |
rs_len, XCC_SD650_RESPONSE_LEN, XCC_SD650V2_RESPONSE_LEN); |
449 |
return NULL; |
459 |
return NULL; |
450 |
} |
460 |
} |
451 |
|
461 |
|
Lines 460-478
static xcc_raw_single_data_t *_read_ipmi_values(void)
Link Here
|
460 |
fake_inited = true; |
470 |
fake_inited = true; |
461 |
} |
471 |
} |
462 |
|
472 |
|
|
|
473 |
xcc_reading->version = XCC_SD650_VERSION; |
463 |
xcc_reading->fifo_inx = 0; |
474 |
xcc_reading->fifo_inx = 0; |
464 |
// Fake metric j |
475 |
// Fake metric j |
465 |
xcc_reading->j = fake_past_read + 550 + rand() % 200; |
476 |
xcc_reading->j = fake_past_read + 550 + rand() % 200; |
466 |
fake_past_read = xcc_reading->j; |
477 |
fake_past_read = xcc_reading->j; |
467 |
xcc_reading->mj = 0; |
478 |
xcc_reading->mj = 0; |
|
|
479 |
xcc_reading->w = 0; |
480 |
xcc_reading->mw = 0; |
468 |
xcc_reading->s = time(NULL); //Fake metric timestamp |
481 |
xcc_reading->s = time(NULL); //Fake metric timestamp |
469 |
xcc_reading->ms = 0; |
482 |
xcc_reading->ms = 0; |
470 |
} else { |
483 |
} else if (rs_len == XCC_SD650_RESPONSE_LEN) { |
|
|
484 |
xcc_reading->version = XCC_SD650_VERSION; |
485 |
xcc_reading->w = 0; |
486 |
xcc_reading->mw = 0; |
471 |
memcpy(&xcc_reading->fifo_inx, buf_rs+2, 2); |
487 |
memcpy(&xcc_reading->fifo_inx, buf_rs+2, 2); |
472 |
memcpy(&xcc_reading->j, buf_rs+4, 4); |
488 |
memcpy(&xcc_reading->j, buf_rs+4, 4); |
473 |
memcpy(&xcc_reading->mj, buf_rs+8, 2); |
489 |
memcpy(&xcc_reading->mj, buf_rs+8, 2); |
474 |
memcpy(&xcc_reading->s, buf_rs+10, 4); |
490 |
memcpy(&xcc_reading->s, buf_rs+10, 4); |
475 |
memcpy(&xcc_reading->ms, buf_rs+14, 2); |
491 |
memcpy(&xcc_reading->ms, buf_rs+14, 2); |
|
|
492 |
} else { |
493 |
int count; |
494 |
|
495 |
xcc_reading->version = XCC_SD650V2_VERSION; |
496 |
xcc_reading->fifo_inx = 0; |
497 |
xcc_reading->j = 0; |
498 |
xcc_reading->mj = 0; |
499 |
memcpy(&count, buf_rs+2, 2); |
500 |
memcpy(&xcc_reading->w, buf_rs+4, 4); |
501 |
xcc_reading->w /= count; |
502 |
memcpy(&xcc_reading->mw, buf_rs+8, 2); |
503 |
memcpy(&xcc_reading->s, buf_rs+34, 4); |
504 |
memcpy(&xcc_reading->ms, buf_rs+38, 2); |
476 |
} |
505 |
} |
477 |
|
506 |
|
478 |
return xcc_reading; |
507 |
return xcc_reading; |
479 |
- |
|
|
480 |
new raw format |
508 |
new raw format |
481 |
-- |
|
|
482 |
.../xcc/acct_gather_energy_xcc.c | 64 ++++++++++++++++++- |
509 |
.../xcc/acct_gather_energy_xcc.c | 64 ++++++++++++++++++- |
483 |
1 file changed, 62 insertions(+), 2 deletions(-) |
510 |
1 file changed, 62 insertions(+), 2 deletions(-) |