diff --git a/doc/man/man1/salloc.1 b/doc/man/man1/salloc.1 index d9588af4631fb31d31e4563844a28b442ae38015..abb8961e3dbe889927c469b73673e10835e3f596 100644 --- a/doc/man/man1/salloc.1 +++ b/doc/man/man1/salloc.1 @@ -389,7 +389,7 @@ YYYY\-MM\-DD[THH:MM[:SS]]] .TP \fB\-\-delay\-boot\fR=<\fIminutes\fR> -Do not reboot nodes in order to satified this job's feature specification if +Do not reboot nodes in order to satisfied this job's feature specification if the job has been eligible to run for less than this time period. If the job has waited for less than the specified period, it will use only nodes which already have the specified features. diff --git a/doc/man/man1/sbatch.1 b/doc/man/man1/sbatch.1 index 06775d146553e9dd2df49f2eace281ae780d7169..bfd6570ddaa7857780d3aaf785f07bd177e8f10c 100644 --- a/doc/man/man1/sbatch.1 +++ b/doc/man/man1/sbatch.1 @@ -403,7 +403,7 @@ YYYY\-MM\-DD[THH:MM[:SS]]] .TP \fB\-\-delay\-boot\fR=<\fIminutes\fR> -Do not reboot nodes in order to satified this job's feature specification if +Do not reboot nodes in order to satisfied this job's feature specification if the job has been eligible to run for less than this time period. If the job has waited for less than the specified period, it will use only nodes which already have the specified features. diff --git a/doc/man/man1/srun.1 b/doc/man/man1/srun.1 index c37046a2728d306a937bf64407e35698b94774c8..c886d80e78ee7a8ec5aff4a2326cb25e7189dfe3 100644 --- a/doc/man/man1/srun.1 +++ b/doc/man/man1/srun.1 @@ -600,7 +600,7 @@ This option applies only to job allocations. .TP \fB\-\-delay\-boot\fR=<\fIminutes\fR> -Do not reboot nodes in order to satified this job's feature specification if +Do not reboot nodes in order to satisfied this job's feature specification if the job has been eligible to run for less than this time period. If the job has waited for less than the specified period, it will use only nodes which already have the specified features. diff --git a/doc/man/man5/slurm.conf.5 b/doc/man/man5/slurm.conf.5 index 3eea4c062d19d97ba3a66fcc3b873f32c35282ff..72bf3df8061e43d2760d2e73e6a5af929e489d98 100644 --- a/doc/man/man5/slurm.conf.5 +++ b/doc/man/man5/slurm.conf.5 @@ -2650,7 +2650,7 @@ This option may improve system responsiveness when large numbers of jobs initiation time of individual jobs. Also see \fBdefault_queue_depth\fR above. .TP \fBdelay_boot=#\fR -Do not reboot nodes in order to satified this job's feature specification if +Do not reboot nodes in order to satisfied this job's feature specification if the job has been eligible to run for less than this time period. If the job has waited for less than the specified period, it will use only nodes which already have the specified features. diff --git a/src/plugins/select/bluegene/select_bluegene.c b/src/plugins/select/bluegene/select_bluegene.c index f0967730c06d7489c7692e2234b528fa0105dc73..2fec737e0cbfd2bb3e4586886b4a77791c81490d 100644 --- a/src/plugins/select/bluegene/select_bluegene.c +++ b/src/plugins/select/bluegene/select_bluegene.c @@ -1593,7 +1593,7 @@ extern int select_p_block_init(List part_list) /* * select_p_job_test - Given a specification of scheduling requirements, - * identify the nodes which "best" satify the request. The specified + * identify the nodes which "best" satisfy the request. The specified * nodes may be DOWN or BUSY at the time of this test as may be used * to deterime if a job could ever run. * IN/OUT job_ptr - pointer to job being scheduled start_time is set diff --git a/src/plugins/select/cons_res/select_cons_res.c b/src/plugins/select/cons_res/select_cons_res.c index 47036360e207e4708963c5f05dc8f7a4bad7f08c..bcc9b6f4a3624c6cce27d437290be67f564591ef 100644 --- a/src/plugins/select/cons_res/select_cons_res.c +++ b/src/plugins/select/cons_res/select_cons_res.c @@ -3406,7 +3406,7 @@ extern bitstr_t * select_p_resv_test(resv_desc_msg_t *resv_desc_ptr, } #endif - /* Determine lowest level switch satifying request with best fit */ + /* Determine lowest level switch satisfying request with best fit */ best_fit_inx = -1; for (j = 0; j < switch_record_cnt; j++) { if ((switches_node_cnt[j] < rem_nodes) || diff --git a/src/plugins/select/linear/select_linear.c b/src/plugins/select/linear/select_linear.c index 8669abc1fac4025c3bc50892704774288ca13322..8d7bed8e1374c93cc96ded7a07d9e308e3c4ec4a 100644 --- a/src/plugins/select/linear/select_linear.c +++ b/src/plugins/select/linear/select_linear.c @@ -1744,7 +1744,7 @@ static int _job_test_dfly(struct job_record *job_ptr, bitstr_t *bitmap, } /* phase 3 */ - /* Determine lowest level switch satifying request with best fit */ + /* Determine lowest level switch satisfying request with best fit */ best_fit_inx = -1; for (j = 0; j < switch_record_cnt; j++) { #if SELECT_DEBUG @@ -2039,7 +2039,7 @@ static int _job_test_topo(struct job_record *job_ptr, bitstr_t *bitmap, } /* phase 3 */ - /* Determine lowest level switch satifying request with best fit */ + /* Determine lowest level switch satisfying request with best fit */ best_fit_inx = -1; for (j = 0; j < switch_record_cnt; j++) { #if SELECT_DEBUG @@ -4286,7 +4286,7 @@ extern bitstr_t * select_p_resv_test(resv_desc_msg_t *resv_desc_ptr, } #endif - /* Determine lowest level switch satifying request with best fit */ + /* Determine lowest level switch satisfying request with best fit */ best_fit_inx = -1; for (j=0; j<switch_record_cnt; j++) { if (switches_node_cnt[j] < rem_nodes) diff --git a/src/slurmctld/node_scheduler.c b/src/slurmctld/node_scheduler.c index d8f7126975a0d09fa159b0815d05381910175899..8bfe6c13925c0e5bec1c03ebe551e0e82e1f3b60 100644 --- a/src/slurmctld/node_scheduler.c +++ b/src/slurmctld/node_scheduler.c @@ -1543,7 +1543,7 @@ _get_req_features(struct node_set *node_set_ptr, int node_set_size, * 5) If request can't be satisfied now, execute select_g_job_test() * against the list of nodes that exist in any state (perhaps DOWN * DRAINED or ALLOCATED) to determine if the request can - * ever be satified. + * ever be satisfied. */ static int _pick_best_nodes(struct node_set *node_set_ptr, int node_set_size,