View | Details | Raw Unified | Return to ticket 16019 | Differences between
and this patch

Collapse All | Expand All

(-)a/configure (-1 / +1 lines)
Lines 25980-25986 then : Link Here
25980
          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
25980
          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
25981
else $as_nop
25981
else $as_nop
25982
   echo "*** The test program failed to compile or link. See the file config.log for the"
25982
   echo "*** The test program failed to compile or link. See the file config.log for the"
25983
          echo "*** exact error that occured. This usually means GTK+ is incorrectly installed."
25983
          echo "*** exact error that occurred. This usually means GTK+ is incorrectly installed."
25984
fi
25984
fi
25985
rm -f core conftest.err conftest.$ac_objext conftest.beam \
25985
rm -f core conftest.err conftest.$ac_objext conftest.beam \
25986
    conftest$ac_exeext conftest.$ac_ext
25986
    conftest$ac_exeext conftest.$ac_ext
(-)a/src/api/allocate.c (-1 / +1 lines)
Lines 1239-1245 _accept_msg_connection(int listen_fd, uint16_t msg_type, void **resp) Link Here
1239
}
1239
}
1240
1240
1241
/* Wait up to sleep_time for RPC from slurmctld indicating resource allocation
1241
/* Wait up to sleep_time for RPC from slurmctld indicating resource allocation
1242
 * has occured.
1242
 * has occurred.
1243
 * IN sleep_time: delay in seconds (0 means unbounded wait)
1243
 * IN sleep_time: delay in seconds (0 means unbounded wait)
1244
 * RET -1: error, 0: timeout, 1:ready to read */
1244
 * RET -1: error, 0: timeout, 1:ready to read */
1245
static int _wait_for_alloc_rpc(const listen_t *listen, int sleep_time)
1245
static int _wait_for_alloc_rpc(const listen_t *listen, int sleep_time)
(-)a/src/common/assoc_mgr.c (-1 / +1 lines)
Lines 5763-5769 extern int load_assoc_usage(void) Link Here
5763
5763
5764
		/* We want to do this all the way up to and including
5764
		/* We want to do this all the way up to and including
5765
		   root.  This way we can keep track of how much usage
5765
		   root.  This way we can keep track of how much usage
5766
		   has occured on the entire system and use that to
5766
		   has occurred on the entire system and use that to
5767
		   normalize against.
5767
		   normalize against.
5768
		*/
5768
		*/
5769
		if (assoc) {
5769
		if (assoc) {
(-)a/src/common/hostlist.c (-1 / +1 lines)
Lines 2483-2489 static void hostlist_coalesce(hostlist_t hl) Link Here
2483
/* attempt to join ranges at loc and loc-1 in a hostlist  */
2483
/* attempt to join ranges at loc and loc-1 in a hostlist  */
2484
/* delete duplicates, return the number of hosts deleted  */
2484
/* delete duplicates, return the number of hosts deleted  */
2485
/* assumes that the hostlist hl has been locked by caller */
2485
/* assumes that the hostlist hl has been locked by caller */
2486
/* returns -1 if no range join occured */
2486
/* returns -1 if no range join occurred */
2487
static int _attempt_range_join(hostlist_t hl, int loc)
2487
static int _attempt_range_join(hostlist_t hl, int loc)
2488
{
2488
{
2489
	int ndup;
2489
	int ndup;
(-)a/src/lua/slurm_lua.h (-1 / +1 lines)
Lines 67-73 extern void slurm_lua_stack_dump(const char *plugin, Link Here
67
 *
67
 *
68
 * Returns:
68
 * Returns:
69
 * SLURM_SUCCESS - if a correct Lua object is set.
69
 * SLURM_SUCCESS - if a correct Lua object is set.
70
 * SLURM_ERROR - an error occured, and there's no lua state loaded.
70
 * SLURM_ERROR - an error occurred, and there's no lua state loaded.
71
 */
71
 */
72
extern int slurm_lua_loadscript(lua_State **L, const char *plugin,
72
extern int slurm_lua_loadscript(lua_State **L, const char *plugin,
73
				const char *script_path,
73
				const char *script_path,
(-)a/src/plugins/mpi/pmix/pmixp_server.c (-1 / +1 lines)
Lines 1291-1297 _direct_conn_establish(pmixp_conn_t *conn, void *_hdr, void *msg) Link Here
1291
	if (!dconn) {
1291
	if (!dconn) {
1292
		/* connection was refused because we already
1292
		/* connection was refused because we already
1293
		 * have established connection
1293
		 * have established connection
1294
		 * It seems that some sort of race condition occured
1294
		 * It seems that some sort of race condition occurred
1295
		 */
1295
		 */
1296
		close(fd);
1296
		close(fd);
1297
		nodename = pmixp_info_job_host(hdr->nodeid);
1297
		nodename = pmixp_info_job_host(hdr->nodeid);
(-)a/src/plugins/priority/multifactor/priority_multifactor.c (-1 / +1 lines)
Lines 1178-1184 static int _apply_new_usage(job_record_t *job_ptr, time_t start_period, Link Here
1178
	/* We want to do this all the way up
1178
	/* We want to do this all the way up
1179
	 * to and including root.  This way we
1179
	 * to and including root.  This way we
1180
	 * can keep track of how much usage
1180
	 * can keep track of how much usage
1181
	 * has occured on the entire system
1181
	 * has occurred on the entire system
1182
	 * and use that to normalize against. */
1182
	 * and use that to normalize against. */
1183
	while (assoc) {
1183
	while (assoc) {
1184
		assoc->usage->grp_used_wall += run_decay;
1184
		assoc->usage->grp_used_wall += run_decay;
(-)a/src/plugins/task/cray_aries/task_cray_aries.c (-1 / +1 lines)
Lines 134-140 static int track_status = 1; Link Here
134
134
135
// Filename to write status information to
135
// Filename to write status information to
136
// This file consists of step->node_tasks + 1 bytes. Each byte will
136
// This file consists of step->node_tasks + 1 bytes. Each byte will
137
// be either 1 or 0, indicating that that particular event has occured.
137
// be either 1 or 0, indicating that that particular event has occurred.
138
// The first byte indicates the starting LLI message, and the next bytes
138
// The first byte indicates the starting LLI message, and the next bytes
139
// indicate the exiting LLI messages for each task
139
// indicate the exiting LLI messages for each task
140
#define LLI_STATUS_FILE	    LLI_SPOOL_DIR"/status%"PRIu64
140
#define LLI_STATUS_FILE	    LLI_SPOOL_DIR"/status%"PRIu64
(-)a/src/slurmctld/fed_mgr.c (-1 / +1 lines)
Lines 1711-1717 static int _fed_mgr_job_allocate_sib(char *sib_name, job_desc_msg_t *job_desc, Link Here
1711
		error_code = ESLURM_CAN_NOT_START_IMMEDIATELY;
1711
		error_code = ESLURM_CAN_NOT_START_IMMEDIATELY;
1712
1712
1713
send_msg:
1713
send_msg:
1714
	/* Send response back about origin jobid if an error occured. */
1714
	/* Send response back about origin jobid if an error occurred. */
1715
	if (reject_job)
1715
	if (reject_job)
1716
		_persist_fed_job_response(sibling, job_desc->job_id, error_code);
1716
		_persist_fed_job_response(sibling, job_desc->job_id, error_code);
1717
	else {
1717
	else {
(-)a/src/slurmctld/trigger_mgr.h (-1 / +1 lines)
Lines 53-59 extern trigger_info_msg_t * trigger_get(uid_t uid, trigger_info_msg_t *msg); Link Here
53
extern int trigger_set(uid_t uid, gid_t gid, trigger_info_msg_t *msg);
53
extern int trigger_set(uid_t uid, gid_t gid, trigger_info_msg_t *msg);
54
extern int trigger_pull(trigger_info_msg_t *msg);
54
extern int trigger_pull(trigger_info_msg_t *msg);
55
55
56
/* Note the some event has occured and flag triggers as needed */
56
/* Note the some event has occurred and flag triggers as needed */
57
extern void trigger_block_error(void);
57
extern void trigger_block_error(void);
58
extern void trigger_burst_buffer(void);
58
extern void trigger_burst_buffer(void);
59
extern void trigger_front_end_down(front_end_record_t *front_end_ptr);
59
extern void trigger_front_end_down(front_end_record_t *front_end_ptr);
(-)a/src/slurmd/slurmd/req.c (-1 / +1 lines)
Lines 4708-4714 _kill_all_active_steps(uint32_t jobid, int sig, int flags, char *details, Link Here
4708
4708
4709
/*
4709
/*
4710
 * ume_notify - Notify all jobs and steps on this node that a Uncorrectable
4710
 * ume_notify - Notify all jobs and steps on this node that a Uncorrectable
4711
 *	Memory Error (UME) has occured by sending SIG_UME (to log event in
4711
 *	Memory Error (UME) has occurred by sending SIG_UME (to log event in
4712
 *	stderr)
4712
 *	stderr)
4713
 * RET count of signaled job steps
4713
 * RET count of signaled job steps
4714
 */
4714
 */
(-)a/src/slurmd/slurmd/req.h (-2 / +1 lines)
Lines 62-68 void file_bcast_purge(void); Link Here
62
62
63
/*
63
/*
64
 * ume_notify - Notify all jobs and steps on this node that a Uncorrectable
64
 * ume_notify - Notify all jobs and steps on this node that a Uncorrectable
65
 *	Memory Error (UME) has occured by sending SIG_UME (to log event in
65
 *	Memory Error (UME) has occurred by sending SIG_UME (to log event in
66
 *	stderr)
66
 *	stderr)
67
 * RET count of signaled job steps
67
 * RET count of signaled job steps
68
 */
68
 */
69
- 

Return to ticket 16019