Lines Matching refs:watchdog_use
189 uint8_t watchdog_use; member
252 #define IPMI_BMC_WATCHDOG_GET_USE(s) ((s)->watchdog_use & 0x7)
253 #define IPMI_BMC_WATCHDOG_GET_DONT_LOG(s) (((s)->watchdog_use >> 7) & 0x1)
254 #define IPMI_BMC_WATCHDOG_GET_DONT_STOP(s) (((s)->watchdog_use >> 6) & 0x1)
740 0xc0, ibs->watchdog_use & 0xf, 0xff); in ipmi_sim_handle_timeout()
745 0xc1, ibs->watchdog_use & 0xf, 0xff); in ipmi_sim_handle_timeout()
751 0xc2, ibs->watchdog_use & 0xf, 0xff); in ipmi_sim_handle_timeout()
757 0xc3, ibs->watchdog_use & 0xf, 0xff); in ipmi_sim_handle_timeout()
1188 ibs->watchdog_use = cmd[2] & IPMI_BMC_WATCHDOG_USE_MASK; in set_watchdog_timer()
1204 rsp_buffer_push(rsp, ibs->watchdog_use); in get_watchdog_timer()
2110 VMSTATE_UINT8(watchdog_use, IPMIBmcSim),