diff --git a/src/plugins/burst_buffer/common/burst_buffer_common.c b/src/plugins/burst_buffer/common/burst_buffer_common.c
index 3514ca68e23726e9e3fb223302599ebdf360b16e..eb0ff470a71a66404c2b08620798de530801a522 100644
--- a/src/plugins/burst_buffer/common/burst_buffer_common.c
+++ b/src/plugins/burst_buffer/common/burst_buffer_common.c
@@ -1294,7 +1294,8 @@ extern void bb_job_log(bb_state_t *state_ptr, bb_job_t *bb_job)
 				info("  Destroy Name:%s Hurry:%d",
 				     buf_ptr->name, (int) buf_ptr->hurry);
 			} else {
-				info("  Create  Name:%s Size:%"PRIu64" Access:%s Type:%s State:%s",
+				info("  Create  Name:%s Size:%"PRIu64
+				     " Access:%s Type:%s State:%s",
 				     buf_ptr->name, buf_ptr->size,
 				     buf_ptr->access, buf_ptr->type,
 				     bb_state_string(buf_ptr->state));
@@ -1303,23 +1304,6 @@ extern void bb_job_log(bb_state_t *state_ptr, bb_job_t *bb_job)
 	}
 }
 
-/* Determine if a request of a given size can run based upon limits in
- * burst_buffer.conf. TRES limits handled by slurmctld (job not eligible until
- * TRES limits satisfied).
- *
- * RET: -1  Can never run
- *       0  Can run later
- *       1  Can run now
- */
-extern int bb_limit_test(uint32_t user_id, char *account, char *partition,
-			 char *qos, uint64_t bb_size, bb_state_t *state_ptr)
-{
-	xassert(state_ptr);
-
-//FIXME: Vestigial, initial work based upon lack of TRES limits
-	return 1;
-}
-
 /* Make claim against resource limit for a user */
 extern void bb_limit_add(uint32_t user_id, char *account, char *partition,
 			 char *qos, uint64_t bb_size, bb_state_t *state_ptr)
diff --git a/src/plugins/burst_buffer/common/burst_buffer_common.h b/src/plugins/burst_buffer/common/burst_buffer_common.h
index 258d75dbe21c31a68edafd5baf0169621641607c..f05697d9864dd873fc0d451ffa27d407e1a4326b 100644
--- a/src/plugins/burst_buffer/common/burst_buffer_common.h
+++ b/src/plugins/burst_buffer/common/burst_buffer_common.h
@@ -340,17 +340,6 @@ extern bool bb_test_persist(bb_state_t *state_ptr, uint32_t job_id);
 extern char *bb_run_script(char *script_type, char *script_path,
 			   char **script_argv, int max_wait, int *status);
 
-/* Determine if a request of a given size can run based upon limits in
- * burst_buffer.conf. TRES limits handled by slurmctld (job not eligible until
- * TRES limits satisfied).
- *
- * RET: -1  Can never run
- *       0  Can run later
- *       1  Can run now
- */
-extern int bb_limit_test(uint32_t user_id, char *account, char *partition,
-			 char *qos, uint64_t bb_size, bb_state_t *state_ptr);
-
 /* Make claim against resource limit for a user */
 extern void bb_limit_add(uint32_t user_id, char *account, char *partition,
 			 char *qos, uint64_t bb_size, bb_state_t *state_ptr);
diff --git a/src/plugins/burst_buffer/cray/burst_buffer_cray.c b/src/plugins/burst_buffer/cray/burst_buffer_cray.c
index 0fd5a0b2a2987cb038f4ff1a4c431dbbb216c7f2..e41643bb0cd774327805513856114d50d7d163b6 100644
--- a/src/plugins/burst_buffer/cray/burst_buffer_cray.c
+++ b/src/plugins/burst_buffer/cray/burst_buffer_cray.c
@@ -437,12 +437,12 @@ static bb_job_t *_get_bb_job(struct job_record *job_ptr)
 			job_type = strstr(tok, ",TYPE=");
 			if (job_type) {
 				job_type[0] = '\0';
-				/* FIXME: Contents current unused */
+				/* Contents current unused by Slurm */
 			}
 			job_access = strstr(tok, ",ACCESS=");
 			if (job_access) {
 				job_access[0] = '\0';
-				/* FIXME: Contents current unused */
+				/* Contents current unused by Slurm */
 			}
 			bb_size = strstr(tok, "SIZE=");
 			if (bb_size) {
@@ -495,12 +495,12 @@ static bb_job_t *_get_bb_job(struct job_record *job_ptr)
 			bb_type = strstr(tok, ",TYPE=");
 			if (bb_type) {
 				bb_type[0] = '\0';
-				/* FIXME: Contents current unused */
+				bb_type++;
 			}
 			bb_access = strstr(tok, ",ACCESS=");
 			if (bb_access) {
 				bb_access[0] = '\0';
-				/* FIXME: Contents current unused */
+				bb_access++;
 			}
 			bb_size = strstr(tok, ",SIZE=");
 			if (bb_size) {
@@ -1032,13 +1032,14 @@ static void _load_state(bool init_config)
 
 	/*
 	 * Load the configurations information
+	 * NOTE: This information is currently unused
 	 */
 	configs = _bb_get_configs(&num_configs, &bb_state);
 	if (configs == NULL) {
 		info("%s: failed to find DataWarp configurations", __func__);
+		num_configs = 0;
 	}
-	_bb_free_configs(configs, num_sessions);
-//FIXME: configurations data is currently unused, is it needed?
+	_bb_free_configs(configs, num_configs);
 
 	_recover_limit_state();
 	_apply_limits();
@@ -1741,16 +1742,6 @@ static int _test_size_limit(struct job_record *job_ptr, bb_job_t *bb_job)
 	xassert(bb_job);
 	add_space = bb_job->total_size + bb_job->persist_add;
 
-	/* Determine if burst buffer can be allocated now for the job.
-	 * If not, determine how much space must be free. */
-	if (bb_limit_test(job_ptr->user_id, bb_job->account, bb_job->partition,
-			  bb_job->qos, add_space, &bb_state) < 1) {
-		debug("%s: %s requested burst buffer space above limit",
-		      __func__,
-		      jobid2fmt(job_ptr, jobid_buf, sizeof(jobid_buf)));
-		return 1;
-	}
-
 	resv_bb = job_test_bb_resv(job_ptr, now);
 	if (resv_bb) {
 		burst_buffer_info_t *resv_bb_ptr;
@@ -2594,12 +2585,6 @@ extern int bb_p_job_validate(struct job_descriptor *job_desc,
 		}
 	}
 
-	if (bb_limit_test(job_desc->user_id, job_desc->account,
-			  job_desc->partition, job_desc->qos, bb_size,
-			  &bb_state) < 1) {
-		rc = ESLURM_BURST_BUFFER_LIMIT;
-		goto fini;
-	}
 	job_desc->tres_req_cnt[bb_state.tres_pos] = bb_size / (1024 * 1024);
 
 fini:	job_desc->shared = 0;	/* Compute nodes can not be shared */
@@ -2722,7 +2707,6 @@ extern int bb_p_job_validate2(struct job_record *job_ptr, char **err_msg,
 	    (job_ptr->burst_buffer[0] == '\0'))
 		return rc;
 
-//FIXME: Add support for job arrays
 	if (job_ptr->array_recs) {
 		if (err_msg) {
 			xfree(*err_msg);
@@ -3236,7 +3220,6 @@ static void *_start_pre_run(void *x)
  */
 extern int bb_p_job_start_stage_out(struct job_record *job_ptr)
 {
-//FIXME: Test for memory leaks
 	bb_job_t *bb_job;
 	char jobid_buf[32];