diff --git a/src/slurmctld/reservation.c b/src/slurmctld/reservation.c index bdd9fc1525013824294ef1ee324104f9cc2fe0e8..eb9eebc6cbe09b8bec2b6678d556abd83ee55b5c 100644 --- a/src/slurmctld/reservation.c +++ b/src/slurmctld/reservation.c @@ -1503,7 +1503,44 @@ static void _pack_resv(slurmctld_resv_t *resv_ptr, Buf buffer, end_relative = resv_ptr->end_time; } - if (protocol_version >= SLURM_16_05_PROTOCOL_VERSION) { + if (protocol_version >= SLURM_17_02_PROTOCOL_VERSION) { + packstr(resv_ptr->accounts, buffer); + packstr(resv_ptr->burst_buffer, buffer); + pack32(resv_ptr->core_cnt, buffer); + pack_time(end_relative, buffer); + packstr(resv_ptr->features, buffer); + pack32(resv_ptr->flags, buffer); + packstr(resv_ptr->licenses, buffer); + packstr(resv_ptr->name, buffer); + pack32(resv_ptr->node_cnt, buffer); + packstr(resv_ptr->node_list, buffer); + packstr(resv_ptr->partition, buffer); + pack32(resv_ptr->resv_watts, buffer); + pack_time(start_relative, buffer); + packstr(resv_ptr->tres_fmt_str, buffer); + packstr(resv_ptr->users, buffer); + + if (internal) { + pack8(resv_ptr->account_not, buffer); + packstr(resv_ptr->assoc_list, buffer); + /* NOTE: Restoring core_bitmap directly only works if + * the system's node and core counts don't change. + * core_resrcs is used so configuration changes can be + * supported */ + _set_core_resrcs(resv_ptr); + pack_job_resources(resv_ptr->core_resrcs, buffer, + protocol_version); + pack32(resv_ptr->duration, buffer); + pack8(resv_ptr->full_nodes, buffer); + pack32(resv_ptr->resv_id, buffer); + pack_time(resv_ptr->start_time_prev, buffer); + pack_time(resv_ptr->start_time, buffer); + packstr(resv_ptr->tres_str, buffer); + pack8(resv_ptr->user_not, buffer); + } else { + pack_bit_fmt(resv_ptr->node_bitmap, buffer); + } + } else if (protocol_version >= SLURM_16_05_PROTOCOL_VERSION) { packstr(resv_ptr->accounts, buffer); packstr(resv_ptr->burst_buffer, buffer); pack32(resv_ptr->core_cnt, buffer);