• Home
  • Raw
  • Download

Lines Matching refs:opnum

53 void fop_bench(ffsb_fs_t * fs, unsigned opnum)  in fop_bench()  argument
55 fs_set_opdata(fs, fs_get_datafiles(fs), opnum); in fop_bench()
58 void fop_age(ffsb_fs_t * fs, unsigned opnum) in fop_age() argument
60 fs_set_opdata(fs, fs_get_agefiles(fs), opnum); in fop_age()
89 void ffsb_readfile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_readfile() argument
91 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_readfile()
185 ft_incr_op(ft, opnum, iterations, read_size); in ffsb_readfile()
192 void ffsb_readall(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_readall() argument
194 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_readall()
214 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_readall()
221 unsigned opnum, uint64_t * filesize_ret, in ffsb_writefile_core() argument
224 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_writefile_core()
282 void ffsb_writefile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_writefile() argument
287 iterations = ffsb_writefile_core(ft, fs, opnum, &filesize, 0); in ffsb_writefile()
288 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_writefile()
292 void ffsb_writefile_fsync(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_writefile_fsync() argument
297 iterations = ffsb_writefile_core(ft, fs, opnum, &filesize, 1); in ffsb_writefile_fsync()
298 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_writefile_fsync()
305 unsigned opnum, uint64_t * filesize_ret, in ffsb_writeall_core() argument
308 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_writeall_core()
341 void ffsb_writeall(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_writeall() argument
346 iterations = ffsb_writeall_core(ft, fs, opnum, &filesize, 0); in ffsb_writeall()
347 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_writeall()
351 void ffsb_writeall_fsync(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_writeall_fsync() argument
356 iterations = ffsb_writeall_core(ft, fs, opnum, &filesize, 1); in ffsb_writeall_fsync()
357 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_writeall_fsync()
362 unsigned opnum, uint64_t * filesize_ret, in ffsb_appendfile_core() argument
365 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_appendfile_core()
397 void ffsb_appendfile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_appendfile() argument
402 iterations = ffsb_appendfile_core(ft, fs, opnum, &filesize, 0); in ffsb_appendfile()
403 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_appendfile()
407 void ffsb_appendfile_fsync(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_appendfile_fsync() argument
412 iterations = ffsb_appendfile_core(ft, fs, opnum, &filesize, 1); in ffsb_appendfile_fsync()
413 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_appendfile_fsync()
418 unsigned opnum, uint64_t * filesize_ret, in ffsb_createfile_core() argument
421 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_createfile_core()
466 void ffsb_createfile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_createfile() argument
471 iterations = ffsb_createfile_core(ft, fs, opnum, &filesize, 0); in ffsb_createfile()
472 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_createfile()
476 void ffsb_createfile_fsync(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_createfile_fsync() argument
481 iterations = ffsb_createfile_core(ft, fs, opnum, &filesize, 1); in ffsb_createfile_fsync()
482 ft_incr_op(ft, opnum, iterations, filesize); in ffsb_createfile_fsync()
486 void ffsb_deletefile(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_deletefile() argument
488 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_deletefile()
514 ft_incr_op(ft, opnum, 1, 0); in ffsb_deletefile()
517 void ffsb_open_close(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_open_close() argument
519 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_open_close()
528 ft_incr_op(ft, opnum, 1, 0); in ffsb_open_close()
531 void ffsb_stat(ffsb_thread_t * ft, ffsb_fs_t * fs, unsigned opnum) in ffsb_stat() argument
533 struct benchfiles *bf = (struct benchfiles *)fs_get_opdata(fs, opnum); in ffsb_stat()
541 ft_incr_op(ft, opnum, 1, 0); in ffsb_stat()