From 1230cefc246a966848ff9e631ba655d30ae95639 Mon Sep 17 00:00:00 2001 From: Moe Jette <jette1@llnl.gov> Date: Wed, 29 May 2002 16:29:36 +0000 Subject: [PATCH] Added description of scontrol update functions to message.summary.txt Changed node_mgr.c to pack config information (rather than actual node data) iff FAST_SCHEDULE flag is set. The get node info call will return the data actually used for scheduling purposes, which may not be the data associated with each individual node. --- src/slurmctld/node_mgr.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/slurmctld/node_mgr.c b/src/slurmctld/node_mgr.c index 7528ed47477..6557cdf24ac 100644 --- a/src/slurmctld/node_mgr.c +++ b/src/slurmctld/node_mgr.c @@ -1005,9 +1005,16 @@ pack_node (struct node_record *dump_node_ptr, void **buf_ptr, int *buf_len) { packstr (dump_node_ptr->name, buf_ptr, buf_len); pack16 (dump_node_ptr->node_state, buf_ptr, buf_len); - pack32 (dump_node_ptr->cpus, buf_ptr, buf_len); - pack32 (dump_node_ptr->real_memory, buf_ptr, buf_len); - pack32 (dump_node_ptr->tmp_disk, buf_ptr, buf_len); + if (FAST_SCHEDULE) { /* Only data from config_record used for scheduling */ + pack32 (dump_node_ptr->config_ptr->cpus, buf_ptr, buf_len); + pack32 (dump_node_ptr->config_ptr->real_memory, buf_ptr, buf_len); + pack32 (dump_node_ptr->config_ptr->tmp_disk, buf_ptr, buf_len); + } + else { /* Individual node data used for scheduling */ + pack32 (dump_node_ptr->cpus, buf_ptr, buf_len); + pack32 (dump_node_ptr->real_memory, buf_ptr, buf_len); + pack32 (dump_node_ptr->tmp_disk, buf_ptr, buf_len); + } pack32 (dump_node_ptr->config_ptr->weight, buf_ptr, buf_len); packstr (dump_node_ptr->config_ptr->feature, buf_ptr, buf_len); if (dump_node_ptr->partition_ptr) -- GitLab