diff options
author | Kent Overstreet <kmo@daterainc.com> | 2013-09-11 01:53:34 -0400 |
---|---|---|
committer | Kent Overstreet <kmo@daterainc.com> | 2014-01-08 16:05:12 -0500 |
commit | 67539e85289c14a76a1c4162613d14a5f05a0027 (patch) | |
tree | 7650b78775bf7b9f2b92113606d92a4a838a6753 /drivers/md/bcache/sysfs.c | |
parent | 911c9610099f26e9e6ea3d1962ce24f53890b163 (diff) |
bcache: Add struct bset_sort_state
More disentangling bset.c from the rest of the bcache code - soon, the
sorting routines won't have any dependencies on any outside structs.
Signed-off-by: Kent Overstreet <kmo@daterainc.com>
Diffstat (limited to 'drivers/md/bcache/sysfs.c')
-rw-r--r-- | drivers/md/bcache/sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/bcache/sysfs.c b/drivers/md/bcache/sysfs.c index d5dd282b176f..206c80fb27c1 100644 --- a/drivers/md/bcache/sysfs.c +++ b/drivers/md/bcache/sysfs.c | |||
@@ -490,7 +490,7 @@ lock_root: | |||
490 | 490 | ||
491 | sysfs_print_time_stats(&c->btree_gc_time, btree_gc, sec, ms); | 491 | sysfs_print_time_stats(&c->btree_gc_time, btree_gc, sec, ms); |
492 | sysfs_print_time_stats(&c->btree_split_time, btree_split, sec, us); | 492 | sysfs_print_time_stats(&c->btree_split_time, btree_split, sec, us); |
493 | sysfs_print_time_stats(&c->sort_time, btree_sort, ms, us); | 493 | sysfs_print_time_stats(&c->sort.time, btree_sort, ms, us); |
494 | sysfs_print_time_stats(&c->btree_read_time, btree_read, ms, us); | 494 | sysfs_print_time_stats(&c->btree_read_time, btree_read, ms, us); |
495 | sysfs_print_time_stats(&c->try_harder_time, try_harder, ms, us); | 495 | sysfs_print_time_stats(&c->try_harder_time, try_harder, ms, us); |
496 | 496 | ||