-
Notifications
You must be signed in to change notification settings - Fork 15
/
dtworkloads.c
611 lines (588 loc) · 20.3 KB
/
dtworkloads.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
/****************************************************************************
* *
* COPYRIGHT (c) 1988 - 2021 *
* This Software Provided *
* By *
* Robin's Nest Software Inc. *
* *
* Permission to use, copy, modify, distribute and sell this software and *
* its documentation for any purpose and without fee is hereby granted, *
* provided that the above copyright notice appear in all copies and that *
* both that copyright notice and this permission notice appear in the *
* supporting documentation, and that the name of the author not be used *
* in advertising or publicity pertaining to distribution of the software *
* without specific, written prior permission. *
* *
* THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, *
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN *
* NO EVENT SHALL HE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL *
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR *
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS *
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF *
* THIS SOFTWARE. *
* *
****************************************************************************/
/*
* Module: dtworkloads.c
* Author: Robin T. Miller
* Date: July 26th, 2013
*
* Description:
* Support for dt workloads.
*
* Modification History:
*
* November 16th, 2021 by Robin T. Miller
* Add hammer and sio worklaods, thanks to Chris @NetApp!
*
* June 14th, 2021 by Robin T. Miller
* Add workload templates for define the dedup pattern and stopon file.
* This makes it easy for automation to use the default file locations!
*
* August 8th, 2019 (happy birthday brother Randy!)
* Added keepalive workload to define a better keepalive message.
*
* June 6th, 2019 by Robin T. Miller
* Add log_files workload template to create job/thread log files.
*
* May 20th, 2019 by Robin T. Miller
* Add direct disk read-after-write w/reread workload.
* Add log prefix with timestamp workload (for options).
*
* December 11th, 2015 by Robin T. Miller
* Adding new workloads with newly added percentages. (yay!)
*
* April 8th, 2014 by Robin T. Miller
* Remove Flash Accel (Mercury) workloads.
*/
#include "dt.h"
typedef struct workload_info {
struct workload_info *wi_flink; /* Forward link to next entry. */
struct workload_info *wi_blink; /* Backward link to prev entry. */
workload_entry_t *wi_entry; /* The workload entry. */
} workload_info_t;
workload_info_t workloadsList; /* The workload list header. */
workload_info_t *workloads = NULL; /* The list of workloads. */
pthread_mutex_t workloads_lock; /* The workloads queue lock. */
#define QUEUE_EMPTY(whdr) (whdr->wi_flink == workloads)
/*
* Note: The C compiler concatenates strings together, thus trailing space " ".*
*/
workload_entry_t predefined_workloads[] =
{
{ "dt_acid",
"File System Acid Workload (requires ~2.37g space)",
"limit=25m maxdatap=75 onerr=abort disable=pstats oflags=trunc "
"incr=var min=1k max=256k dispose=keep pattern=iot prefix='%d@%h' "
"noprogt=15s noprogtt=130s alarm=6 notime=fsync,close "
"enable=syslog history=5 hdsize=128 enable=htiming "
"iodir=vary iotype=vary "
"enable=deleteperpass,fsincr,timestamp,aio "
"dirp=DT_ sdirs=8 files=6 depth=4 "
"bufmodes=cachereads,buffered,unbuffered,cachewrites "
"runtime=24h stopon="STOPON_FILE" "
"trigger=cmd:\""TRIGGER_SCRIPT"\" "
"keepalivet=300"
},
/* Initial FS dedup workload, now deprecated in favor of newer! */
/* Note: Not removing this workload since scripts may be using! */
{ "dt_dedup",
"Deduplication Pattern",
"workload=dt_file_system_dedup "
"bufmodes=cachereads,buffered,unbuffered,cachewrites"
},
{ "dt_hammer",
"dt Hammer File System Workload (requires ~6.20g space)",
"bs=random min_limit=b max_limit=5m incr_limit=vary "
"files=250 maxdatap=75 iodir=vary iotype=vary "
"onerr=abort enable=btags,deleteperpass prefix='%d@%h' pattern=iot "
"bufmodes=buffered,cachereads,cachewrites,unbuffered "
"history=5 hdsize=128 enable=htiming alarm=3 noprogt=15 noprogtt=3m "
"disable=pstats keepalivet=5m threads=10"
},
/* Note: If bs=random is used, rseed= is required when only reading! */
{ "many_files",
"Populate directory with many files (requires ~1g space)",
"min=b max=1m incr=4k limit=1m files=100 sdirs=3 depth=3 dispose=keep "
"prefix='%d@%h' enable=lbdata disable=pstats"
},
{ "incr_files",
"Create incrementing file sizes (requires ~1.36g space)",
"files=256 min=b max=1m limit=64m prefix=%d@%h pattern=iot enable=fsincr dispose=keep"
},
/* Note: Percentages is NOT implemented for AIO at this time! */
{ "file_percentages",
"Single file with read/write and random/sequential percentages",
"bs=random limit=1g enable=btags flags=direct onerr=abort slices=10 readp=-1 randp=50 dispose=keep"
},
{ "file_performance",
"Single file performance",
"bs=32k limit=1g flags=direct slices=10 disable=pstats disable=compare dispose=keep"
},
{ "fill_once",
"Fill a file or disk once (write only)",
"bs=64k slices=25 disable=compare,stats,verify dispose=keep"
},
{ "vary_file_sizes",
"Create files with varying sizes (requires ~2.41g space)",
"bs=random min_limit=b max_limit=5m incr_limit=vary "
"files=100 sdirs=3 depth=3 maxdatap=75 dispose=keeponerror "
"prefix='%d@%h' enable=lbdata,deleteperpass disable=pstats"
},
{ "terabyte_lun",
"Terabyte LUN",
"slices=16 step=4g aios=4 bs=random "
"pattern=iot prefix='%d@%h' enable=pstats"
},
{ "terabyte_file",
"Single terabyte file",
"limit=15t slices=15 step=1g aios=4 bs=random "
"pattern=iot prefix='%d@%h' enable=pstats dispose=keep"
},
{ "sparse_files",
"Sparse files test",
"bs=16k step=32k disable=pstats enable=lbdata dispose=keep"
},
/* Define I/O profiles for simulating various workloads. */
/* http://blogs.msdn.com/b/tvoellm/archive/2009/05/07/useful-io-profiles-for-simulating-various-workloads.aspx */
{ "web_file_server",
"Web File Server Workload",
"bs=64k readp=95 randp=5 disable=verify flags=direct"
},
{ "dss_db",
"Decision Support System Database Workload",
"bs=1m readp=100 randp=100 disable=compare,verify flags=direct"
},
{ "media_streaming",
"Media Streaming Workload",
"bs=64k readp=98 randp=0 disable=verify flags=direct"
},
{ "sql_Server_log",
"SQL Server Log Workload",
"bs=64k readp=0 randp=0 disable=verify flags=direct"
},
{ "os_paging",
"OS Paging Workload",
"bs=64k readp=90 randp=0 disable=verify flags=direct"
},
{ "web_server_log",
"Web Server Log",
"bs=8k readp=0 randp=0 disable=verify flags=direct"
},
{ "oltp_db",
"Online Transaction Processing (OLTP) Workload",
"bs=8k readp=70 randp=100 disable=verify flags=direct"
},
{ "exchange_server",
"Exchange Server Workload",
"bs=4k readp=67 randp=100 disable=verify flags=direct"
},
{ "workstation",
"Workstation Workload",
"bs=8k readp=80 randp=80 disable=verify flags=direct"
},
{ "video_on_demand",
"Video on Demand (VOD) Workload",
"bs=512k readp=0 randp=100 disable=verify flags=direct"
},
/* NetApp hammer and sio workloads */
{ "hammer",
"Standard hammer workload",
"iobehavior=hammer"
},
{ "hammer_bufmodes",
"Hammer workload using buffered/unbuffered modes",
"iobehavior=hammer bufmodes=buffered,unbuffered"
},
{ "hammer_locking",
"Hammer workload with file logging and stop file",
"iobehavior=hammer -lockfiles -onlydelete stopon="STOPON_FILE
},
{ "sio_percentages",
"sio workload with percentages, 4k I/O, 1g file, and prefilling",
"iobehavior=sio bs=4k readp=25 randp=75 end=1g -prefill runtime=1h"
},
{ "sio_random",
"sio workload with random block sizes, random read/write, 10g file w/verification",
"iobehavior=sio bs=random readp=random end=10g -direct -verify threads=10"
},
{ "sio_many_files",
"Populate directory with many files concurrently (write only)",
"iobehavior=sio bs=32k end=1g files=100 passes=1"
},
{ "sio_many_slices",
"Populate device or file via many slices (write only)",
"iobehavior=sio bs=32k end=10g slices=100 passes=1"
},
{ "sio_many_threads",
"Populate device or file via many threads (write only)",
"iobehavior=sio bs=32k end=10g threads=100 passes=1"
},
/* Longevity Workloads */
{ "longevity_common",
"Longevity Common Options (template)",
"min=8k max=1m incr=vary "
"enable=raw,reread,log_trailer,syslog "
"history=5 history_data=152 enable=history_timing "
"logprefix='%seq %nos %et %prog (j:%job t:%thread): ' "
"keepalivet=5m runtime=-1 "
"onerr=abort noprogt=30s noprogtt=5m "
"stopon="STOPON_FILE
},
/* This is the original workload, see new dedup workloads below! */
/* Note: We must keep this workload for backwards compatability. */
{ "longevity_file_dedup",
"Longevity File System w/Dedup Workload",
"workload=longevity_common "
"min_limit=1m max_limit=2g incr_limit=vary "
"dispose=keep flags=direct notime=close,fsync oflags=trunc "
"maxdatap=75 threads=4 "
"pf="DEDUP_PATTERN_FILE
},
{ "longevity_disk_dedup",
"Longevity Direct Disk w/Dedup Workload",
"workload=longevity_common "
"capacityp=75 slices=4 "
"pf="DEDUP_PATTERN_FILE
},
{ "longevity_file_system",
"Longevity File System Workload",
"workload=longevity_common workload=high_validation "
"min_limit=1m max_limit=2g incr_limit=vary "
"dispose=keep flags=direct notime=close,fsync oflags=trunc "
"maxdatap=75 threads=4"
},
{ "longevity_disk_unmap",
"Longevity Direct Disk w/SCSI UNMAP Workload",
"workload=longevity_common workload=high_validation "
"capacityp=75 slices=4 unmap=unmap"
},
{ "longevity_disk",
"Longevity Direct Disk Workload",
"workload=longevity_common workload=high_validation "
"capacityp=75 slices=4"
},
{ "longevity_disk_write_only",
"Longevity Direct Disk Write Only",
"workload=longevity_disk disable=raw,reread,verify"
},
{ "longevity_file_write_only",
"Longevity File System Write Only",
"workload=longevity_file_system disable=raw,reread,verify"
},
{ "san_file_system",
"SAN File System Workload",
"bs=random limit=2g dispose=keeponerror "
"iodir=vary iotype=vary keepalivet=5m workload=keepalive "
"pattern=iot prefix='%d@%h' enable=btags "
"onerr=abort disable=pstats "
"notime=close,fsync oflags=trunc threads=4 "
"enable=noprog noprogt=15s noprogtt=130s alarm=3s "
"history=5 hdsize=128 enable=htiming "
"enable=syslog runtime=12h stopon="STOPON_FILE" "
"bufmodes=buffered,cachereads,cachewrites,unbuffered"
},
{ "san_disk",
"SAN Direct Disk Workload",
"bs=random slices=4 "
"pattern=iot prefix='%d@%h' enable=btags "
"iodir=vary iotype=vary keepalivet=5m workload=keepalive "
"onerr=abort disable=pstats "
"noprogt=15s noprogtt=130s alarm=3s "
"history=5 hdsize=128 enable=htiming "
"enable=syslog runtime=12h "
"enable=stopimmed stopon="STOPON_FILE" "
},
{ "keepalive",
"Keepalive Message (template)",
"keepalive='%d stats: Mode: %i, Blocks: %l, %m Mbytes, "
"MB/sec: %mbps, IO/sec: %iops, Pass %p, Elapsed: %T'"
},
/* -> Start of Deduplication Workloads <- */
/*
* The disk and block sizes chosen are suitable for deduplication,
* where aligned modulo 4k requests are required to enable.
* Plesae Note: File system block size and array volume size is
* also a factor for deduplication, override defaults (as required)
*
* The end delay provides time for deduplication to occur, before we
* start overwriting previous data. Increase the end delay to provide
* more time for deduplication.
*
* Note: Knowing the specifics of array dedup algorithms is ket to
* the correct set of dt options, so "tuning" to your array may be
* required.
*
* TODO: Adding compression/deduplication ratios to be added!
* For now, please use the dedup pattern file to verify both!
*/
/* Deduplication Workloads */
{ "dt_dedup_common",
"Deduplication Common Options (template)",
"dsize=4k min=8k max=1m incr=vary "
"enable=raw,reread,log_trailer,syslog "
"history=5 enable=history_timing "
"logprefix='%seq %nos %et %prog (j:%job t:%thread): ' "
"keepalivet=5m runtime=-1 "
"onerr=abort "
"noprogt=30s noprogtt=5m notime=close,fsync "
"end_delay=60 enable=secsdelay "
"stopon="STOPON_FILE
},
{ "dt_dedup_pattern_file",
"Deduplication Pattern File (template)",
"pf="DEDUP_PATTERN_FILE
},
{ "dt_dedup_data_pattern",
"Deduplication Data Pattern (template)",
"pattern=iot prefix='%U@%h'"
},
/*
* The dedupe data generated is suitable per set of disks.
* The pattern file consists of both compresible/dedup data.
* The prefix makes the data unique per disk and per host.
* The I/O direction is varied to force varying data pattern.
*
* Note: The "%s" is for the SCSI disk serial number.
* TODO: Consider adding SCSI UNMAPs to avoid reading stale data.
*/
{ "dt_disk_dedup",
"Direct Disk Deduplication Workload",
"workload=dt_dedup_common,dt_dedup_pattern_file "
"capacityp=75 slices=4 "
"iodir=vary prefix='%s@%h'"
},
/*
* The dedupe data generated is suitable per set of files.
* The IOT pattern will change per pass, as is the default.
* Add "disable=unique" to avoid changing IOT seed per pass.
* Add "dispose=keep" to avoid file system trims, if enabled.
* Increase the file count for higher duplication data factor.
*
* Note: The prefix is suitable for multiple files per host.
* Deduplicate data is achieved by same data to multiple files!
*/
{ "dt_file_system_dedup",
"File System Deduplication Workload 2x Data Factor",
"workload=dt_dedup_common,dt_dedup_data_pattern "
"dispose=keep flags=direct maxdatap=75 "
"files=2 limit=2g maxdatap=75 threads=4 "
"pattern=iot prefix='%U@%h'"
},
/* -> End of Deduplication Workloads <- */
{ "stopon_file",
"Stop dt File (template)",
"enable=stopimmed stopon="STOPON_FILE
},
{ "disk_read_after_write",
"Direct Disk Read-After-Write w/Rereads",
"workload=san_disk "
"enable=read_immed,reread slices=8"
},
{ "disk_aligned_io",
"Direct Disk Aligned I/O (assumes 4k blocks)",
"workload=san_disk dsize=4k"
},
{ "disk_unaligned_io",
"Direct Disk Aligned I/O (assumes 4k blocks)",
"workload=san_disk dsize=4k offset=4k-3b"
},
/* Initial Disk dedup workload, now deprecated in favor of newer! */
/* Note: Not removing this workload since scripts may be using! */
{ "disk_dedup",
"Direct Disk Deduplication",
"workload=dt_disk_dedup"
},
{ "disk_unmaps",
"Direct Disk with Unmaps",
"workload=san_disk unmap=unmap"
},
{ "disk_write_only",
"Direct Disk Write Only",
"workload=san_disk disable=raw,reread,verify"
},
{ "file_system_write_only",
"File System Write Only",
"workload=san_file_system disable=raw,reread,verify"
},
{ "high_validation",
"Define Highest Data Validation Options (template)",
"enable=btags pattern=iot prefix='%d@%h'"
},
{ "job_stats_only",
"Define options to display job statistics only (template)",
"disable=stats enable=job_stats"
},
/* Note: A rather long workload name, but wish to be descriptive! */
{ "disable_corruption_behavior",
"Define options to disable corruption behavior (template)",
"disable=retryDC,savecorrupted,trigdefaults"
},
/* Note: Use logdir= option to direct logs to specific directory! */
{ "all_logs",
"Define options for creating all logs (template)",
"job_log='dt_job%job.log' log='dt_thread-j%jobt%thread-%dsf.log'"
},
{ "job_logs",
"Define options for creating job logs (template)",
"job_log='dt_job%job.log'"
},
{ "thread_logs",
"Define options for creating thread logs (template)",
"log='dt_thread-j%jobt%thread-%dsf.log'"
},
{ "reread_thread_logs",
"Define options for creating reread thread logs (template)",
"log='dt_thread-j%jobt%thread-%dsf.log-reread'"
},
{ "log_timestamps",
"Define options for adding log file timestamps (template)",
#if defined(Nimble)
"logprefix='%nos %et %prog (j:%job t:%thread): '"
#else /* !defined(Nimble) */
"logprefix='%date %et %prog (j:%job t:%thread): '"
#endif /* defined(Nimble) */
}
};
int workload_entries = sizeof(predefined_workloads) / sizeof(workload_entry_t);
/*
* Forward References:
*/
int acquire_workloads_lock(void);
int release_workloads_lock(void);
void add_predefined_workloads(void);
workload_info_t *create_workload(workload_entry_t *workload_entry);
void insert_workload(workload_info_t *workload);
void
initialize_workloads_data(void)
{
int status;
if ( (status = pthread_mutex_init(&workloads_lock, NULL)) != SUCCESS) {
tPerror(NULL, status, "pthread_mutex_init() of workloads lock failed!");
}
workloads = &workloadsList;
workloads->wi_flink = workloads;
workloads->wi_blink = workloads;
add_predefined_workloads();
return;
}
void
add_predefined_workloads(void)
{
int entry;
workload_info_t *workload;
workload_entry_t *workload_entry;
for (entry = 0; entry < workload_entries; entry++) {
workload_entry = &predefined_workloads[entry];
workload = create_workload(workload_entry);
if (workload == NULL) break;
insert_workload(workload);
}
return;
}
void
add_workload_entry(char *workload_name, char *workload_desc, char *workload_options)
{
workload_info_t *workload;
workload_entry_t *workload_entry;
workload_entry = Malloc(NULL, sizeof(*workload_entry));
if (!workload_entry) return;
workload_entry->workload_name = strdup(workload_name);
if (workload_desc) {
workload_entry->workload_desc = strdup(workload_desc);
} else {
workload_entry->workload_desc = strdup("User Defined");
}
workload_entry->workload_options = strdup(workload_options);
workload = create_workload(workload_entry);
if (!workload) {
Free(NULL, workload_entry->workload_name);
Free(NULL, workload_entry->workload_options);
Free(NULL, workload_entry);
} else {
insert_workload(workload);
}
return;
}
int
acquire_workloads_lock(void)
{
int status = pthread_mutex_lock(&workloads_lock);
if (status != SUCCESS) {
tPerror(NULL, status, "Failed to acquire workloads mutex!\n");
}
return(status);
}
int
release_workloads_lock(void)
{
int status = pthread_mutex_unlock(&workloads_lock);
if (status != SUCCESS) {
tPerror(NULL, status, "Failed to unlock workloads mutex!\n");
}
return(status);
}
workload_info_t *
create_workload(workload_entry_t *workload_entry)
{
workload_info_t *workload = Malloc(NULL, sizeof(workload_info_t));
if (workload) {
workload->wi_entry = workload_entry;
}
return(workload);
}
void
insert_workload(workload_info_t *workload)
{
workload_info_t *whdr = workloads, *wptr;
int status;
if ( (status = acquire_workloads_lock()) != SUCCESS) {
return;
}
wptr = whdr->wi_blink;
wptr->wi_flink = workload;
workload->wi_blink = wptr;
workload->wi_flink = whdr;
whdr->wi_blink = workload;
(void)release_workloads_lock();
return;
}
workload_entry_t *
find_workload(char *workload_name)
{
workload_info_t *whdr = workloads;
workload_info_t *wptr = whdr->wi_flink;
workload_entry_t *workload = NULL;
if ( QUEUE_EMPTY(whdr) ) return(workload);
do {
/* Find workload entry. */
if ( (strlen(workload_name) == strlen(wptr->wi_entry->workload_name)) &&
EQ(workload_name, wptr->wi_entry->workload_name) ) {
workload = wptr->wi_entry;
break;
}
} while ( (wptr = wptr->wi_flink) != whdr );
return(workload);
}
void
show_workloads(dinfo_t *dip, char *workload_name)
{
workload_info_t *whdr = workloads;
workload_info_t *wptr = whdr->wi_flink;
workload_entry_t *workload_entry = NULL;
if ( QUEUE_EMPTY(whdr) ) return;
Print(dip, "Valid Workloads:\n\n");
do {
workload_entry = wptr->wi_entry;
if (workload_name) {
/* Allow a substring search to selectively show workloads. */
if ( strstr(wptr->wi_entry->workload_name, workload_name) == NULL ) {
continue;
}
}
Print(dip, " %s: %s\n", workload_entry->workload_name, workload_entry->workload_desc);
Print(dip, "\t%s\n", workload_entry->workload_options);
Print(dip, "\n");
} while ( (wptr = wptr->wi_flink) != whdr );
return;
}