bcachefs-tools/libbcachefs/sysfs.c

959 lines
23 KiB
C
Raw Normal View History

2017-01-08 12:13:18 +03:00
/*
* bcache sysfs interfaces
*
* Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
* Copyright 2012 Google, Inc.
*/
#ifndef NO_BCACHEFS_SYSFS
#include "bcachefs.h"
2017-01-08 12:13:18 +03:00
#include "alloc.h"
2016-10-04 06:22:17 +03:00
#include "compress.h"
2017-01-08 12:13:18 +03:00
#include "sysfs.h"
#include "btree_cache.h"
#include "btree_io.h"
2017-01-08 12:13:18 +03:00
#include "btree_iter.h"
2016-10-04 06:22:17 +03:00
#include "btree_update.h"
#include "btree_update_interior.h"
2017-01-08 12:13:18 +03:00
#include "btree_gc.h"
#include "buckets.h"
#include "inode.h"
#include "journal.h"
#include "keylist.h"
#include "move.h"
#include "opts.h"
2016-10-04 06:22:17 +03:00
#include "super-io.h"
2017-03-01 13:45:15 +03:00
#include "tier.h"
2017-01-08 12:13:18 +03:00
#include <linux/blkdev.h>
#include <linux/sort.h>
#include <linux/sched/clock.h>
2017-01-08 12:13:18 +03:00
#include "util.h"
#define SYSFS_OPS(type) \
struct sysfs_ops type ## _sysfs_ops = { \
.show = type ## _show, \
.store = type ## _store \
}
#define SHOW(fn) \
static ssize_t fn ## _show(struct kobject *kobj, struct attribute *attr,\
char *buf) \
#define STORE(fn) \
static ssize_t fn ## _store(struct kobject *kobj, struct attribute *attr,\
const char *buf, size_t size) \
#define __sysfs_attribute(_name, _mode) \
static struct attribute sysfs_##_name = \
{ .name = #_name, .mode = _mode }
#define write_attribute(n) __sysfs_attribute(n, S_IWUSR)
#define read_attribute(n) __sysfs_attribute(n, S_IRUGO)
#define rw_attribute(n) __sysfs_attribute(n, S_IRUGO|S_IWUSR)
#define sysfs_printf(file, fmt, ...) \
do { \
if (attr == &sysfs_ ## file) \
return scnprintf(buf, PAGE_SIZE, fmt "\n", __VA_ARGS__);\
} while (0)
#define sysfs_print(file, var) \
do { \
if (attr == &sysfs_ ## file) \
return snprint(buf, PAGE_SIZE, var); \
} while (0)
#define sysfs_hprint(file, val) \
do { \
if (attr == &sysfs_ ## file) { \
ssize_t ret = bch2_hprint(buf, val); \
strcat(buf, "\n"); \
return ret + 1; \
} \
} while (0)
#define var_printf(_var, fmt) sysfs_printf(_var, fmt, var(_var))
#define var_print(_var) sysfs_print(_var, var(_var))
#define var_hprint(_var) sysfs_hprint(_var, var(_var))
#define sysfs_strtoul(file, var) \
do { \
if (attr == &sysfs_ ## file) \
return strtoul_safe(buf, var) ?: (ssize_t) size; \
} while (0)
#define sysfs_strtoul_clamp(file, var, min, max) \
do { \
if (attr == &sysfs_ ## file) \
return strtoul_safe_clamp(buf, var, min, max) \
?: (ssize_t) size; \
} while (0)
#define strtoul_or_return(cp) \
({ \
unsigned long _v; \
int _r = kstrtoul(cp, 10, &_v); \
if (_r) \
return _r; \
_v; \
})
#define strtoul_restrict_or_return(cp, min, max) \
({ \
unsigned long __v = 0; \
int _r = strtoul_safe_restrict(cp, __v, min, max); \
if (_r) \
return _r; \
__v; \
})
#define strtoi_h_or_return(cp) \
({ \
u64 _v; \
int _r = strtoi_h(cp, &_v); \
if (_r) \
return _r; \
_v; \
})
#define sysfs_hatoi(file, var) \
do { \
if (attr == &sysfs_ ## file) \
return strtoi_h(buf, &var) ?: (ssize_t) size; \
} while (0)
2017-04-11 08:19:15 +03:00
write_attribute(trigger_journal_flush);
2017-01-08 12:13:18 +03:00
write_attribute(trigger_btree_coalesce);
write_attribute(trigger_gc);
write_attribute(prune_cache);
rw_attribute(btree_gc_periodic);
2017-01-08 12:13:18 +03:00
read_attribute(uuid);
read_attribute(minor);
read_attribute(bucket_size);
read_attribute(block_size);
read_attribute(btree_node_size);
read_attribute(first_bucket);
read_attribute(nbuckets);
read_attribute(iostats);
2017-01-08 12:13:18 +03:00
read_attribute(read_priority_stats);
read_attribute(write_priority_stats);
read_attribute(fragmentation_stats);
read_attribute(oldest_gen_stats);
read_attribute(reserve_stats);
read_attribute(btree_cache_size);
read_attribute(compression_stats);
read_attribute(journal_debug);
2017-04-11 08:19:15 +03:00
read_attribute(journal_pins);
read_attribute(btree_updates);
read_attribute(dirty_btree_nodes);
2017-01-08 12:13:18 +03:00
2017-04-11 08:19:15 +03:00
read_attribute(internal_uuid);
2017-01-08 12:13:18 +03:00
read_attribute(has_data);
read_attribute(alloc_debug);
write_attribute(wake_allocator);
2017-01-08 12:13:18 +03:00
2017-04-11 08:19:15 +03:00
read_attribute(read_realloc_races);
read_attribute(extent_migrate_done);
read_attribute(extent_migrate_raced);
2017-01-08 12:13:18 +03:00
rw_attribute(journal_write_delay_ms);
rw_attribute(journal_reclaim_delay_ms);
rw_attribute(discard);
rw_attribute(cache_replacement_policy);
rw_attribute(group);
2017-01-08 12:13:18 +03:00
rw_attribute(copy_gc_enabled);
sysfs_pd_controller_attribute(copy_gc);
2017-03-01 13:45:15 +03:00
rw_attribute(rebalance_enabled);
rw_attribute(rebalance_percent);
sysfs_pd_controller_attribute(rebalance);
2017-01-08 12:13:18 +03:00
rw_attribute(pd_controllers_update_seconds);
read_attribute(meta_replicas_have);
read_attribute(data_replicas_have);
#define BCH_DEBUG_PARAM(name, description) \
rw_attribute(name);
BCH_DEBUG_PARAMS()
#undef BCH_DEBUG_PARAM
#define BCH_TIME_STAT(name, frequency_units, duration_units) \
sysfs_time_stats_attribute(name, frequency_units, duration_units);
BCH_TIME_STATS()
#undef BCH_TIME_STAT
static struct attribute sysfs_state_rw = {
.name = "state",
.mode = S_IRUGO
2017-01-08 12:13:18 +03:00
};
static size_t bch2_btree_cache_size(struct bch_fs *c)
2017-01-08 12:13:18 +03:00
{
size_t ret = 0;
struct btree *b;
mutex_lock(&c->btree_cache.lock);
list_for_each_entry(b, &c->btree_cache.live, list)
2017-01-08 12:13:18 +03:00
ret += btree_bytes(c);
mutex_unlock(&c->btree_cache.lock);
2017-01-08 12:13:18 +03:00
return ret;
}
2017-03-11 00:40:01 +03:00
static ssize_t show_fs_alloc_debug(struct bch_fs *c, char *buf)
2017-01-08 12:13:18 +03:00
{
struct bch_fs_usage stats = bch2_fs_usage_read(c);
2017-01-08 12:13:18 +03:00
return scnprintf(buf, PAGE_SIZE,
"capacity:\t\t%llu\n"
"1 replicas:\n"
2017-01-08 12:13:18 +03:00
"\tmeta:\t\t%llu\n"
"\tdirty:\t\t%llu\n"
"\treserved:\t%llu\n"
"2 replicas:\n"
2017-01-08 12:13:18 +03:00
"\tmeta:\t\t%llu\n"
"\tdirty:\t\t%llu\n"
"\treserved:\t%llu\n"
"3 replicas:\n"
"\tmeta:\t\t%llu\n"
"\tdirty:\t\t%llu\n"
"\treserved:\t%llu\n"
"4 replicas:\n"
"\tmeta:\t\t%llu\n"
"\tdirty:\t\t%llu\n"
"\treserved:\t%llu\n"
"online reserved:\t%llu\n",
2017-01-08 12:13:18 +03:00
c->capacity,
stats.s[0].data[S_META],
stats.s[0].data[S_DIRTY],
stats.s[0].persistent_reserved,
stats.s[1].data[S_META],
stats.s[1].data[S_DIRTY],
stats.s[1].persistent_reserved,
stats.s[2].data[S_META],
stats.s[2].data[S_DIRTY],
stats.s[2].persistent_reserved,
stats.s[3].data[S_META],
stats.s[3].data[S_DIRTY],
stats.s[3].persistent_reserved,
2017-01-08 12:13:18 +03:00
stats.online_reserved);
}
static ssize_t bch2_compression_stats(struct bch_fs *c, char *buf)
2017-01-08 12:13:18 +03:00
{
struct btree_iter iter;
struct bkey_s_c k;
u64 nr_uncompressed_extents = 0, uncompressed_sectors = 0,
nr_compressed_extents = 0,
compressed_sectors_compressed = 0,
compressed_sectors_uncompressed = 0;
2017-04-11 08:19:15 +03:00
if (!bch2_fs_running(c))
return -EPERM;
2017-04-24 08:56:57 +03:00
for_each_btree_key(&iter, c, BTREE_ID_EXTENTS, POS_MIN, 0, k)
2017-01-08 12:13:18 +03:00
if (k.k->type == BCH_EXTENT) {
struct bkey_s_c_extent e = bkey_s_c_to_extent(k);
const struct bch_extent_ptr *ptr;
struct bch_extent_crc_unpacked crc;
2017-01-08 12:13:18 +03:00
extent_for_each_ptr_crc(e, ptr, crc) {
if (crc.compression_type == BCH_COMPRESSION_NONE) {
2017-01-08 12:13:18 +03:00
nr_uncompressed_extents++;
uncompressed_sectors += e.k->size;
} else {
nr_compressed_extents++;
compressed_sectors_compressed +=
crc.compressed_size;
2017-01-08 12:13:18 +03:00
compressed_sectors_uncompressed +=
crc.uncompressed_size;
2017-01-08 12:13:18 +03:00
}
/* only looking at the first ptr */
break;
}
}
bch2_btree_iter_unlock(&iter);
2017-01-08 12:13:18 +03:00
return scnprintf(buf, PAGE_SIZE,
2017-01-08 12:13:18 +03:00
"uncompressed data:\n"
" nr extents: %llu\n"
" size (bytes): %llu\n"
"compressed data:\n"
" nr extents: %llu\n"
" compressed size (bytes): %llu\n"
" uncompressed size (bytes): %llu\n",
nr_uncompressed_extents,
uncompressed_sectors << 9,
nr_compressed_extents,
compressed_sectors_compressed << 9,
compressed_sectors_uncompressed << 9);
}
SHOW(bch2_fs)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_fs *c = container_of(kobj, struct bch_fs, kobj);
2017-01-08 12:13:18 +03:00
sysfs_print(minor, c->minor);
2017-04-11 08:19:15 +03:00
sysfs_printf(internal_uuid, "%pU", c->sb.uuid.b);
2017-01-08 12:13:18 +03:00
sysfs_print(journal_write_delay_ms, c->journal.write_delay_ms);
sysfs_print(journal_reclaim_delay_ms, c->journal.reclaim_delay_ms);
2017-04-11 08:19:15 +03:00
sysfs_print(block_size, block_bytes(c));
sysfs_print(btree_node_size, btree_bytes(c));
sysfs_hprint(btree_cache_size, bch2_btree_cache_size(c));
2017-01-08 12:13:18 +03:00
2017-04-11 08:19:15 +03:00
sysfs_print(read_realloc_races,
atomic_long_read(&c->read_realloc_races));
sysfs_print(extent_migrate_done,
atomic_long_read(&c->extent_migrate_done));
sysfs_print(extent_migrate_raced,
atomic_long_read(&c->extent_migrate_raced));
2017-01-08 12:13:18 +03:00
sysfs_printf(btree_gc_periodic, "%u", (int) c->btree_gc_periodic);
2017-01-08 12:13:18 +03:00
sysfs_printf(copy_gc_enabled, "%i", c->copy_gc_enabled);
sysfs_print(pd_controllers_update_seconds,
c->pd_controllers_update_seconds);
sysfs_printf(rebalance_enabled, "%i", c->rebalance_enabled);
sysfs_print(rebalance_percent, c->rebalance_percent);
2017-03-01 13:45:15 +03:00
sysfs_pd_controller_show(rebalance, &c->rebalance_pd); /* XXX */
2017-01-08 12:13:18 +03:00
sysfs_printf(meta_replicas_have, "%u", bch2_replicas_online(c, true));
sysfs_printf(data_replicas_have, "%u", bch2_replicas_online(c, false));
2017-01-08 12:13:18 +03:00
/* Debugging: */
if (attr == &sysfs_alloc_debug)
return show_fs_alloc_debug(c, buf);
2017-01-08 12:13:18 +03:00
2017-04-11 08:19:15 +03:00
if (attr == &sysfs_journal_debug)
return bch2_journal_print_debug(&c->journal, buf);
if (attr == &sysfs_journal_pins)
return bch2_journal_print_pins(&c->journal, buf);
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_btree_updates)
return bch2_btree_updates_print(c, buf);
if (attr == &sysfs_dirty_btree_nodes)
return bch2_dirty_btree_nodes_print(c, buf);
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_compression_stats)
return bch2_compression_stats(c, buf);
2017-01-08 12:13:18 +03:00
2017-04-11 08:19:15 +03:00
#define BCH_DEBUG_PARAM(name, description) sysfs_print(name, c->name);
BCH_DEBUG_PARAMS()
#undef BCH_DEBUG_PARAM
2017-01-08 12:13:18 +03:00
return 0;
}
STORE(__bch2_fs)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_fs *c = container_of(kobj, struct bch_fs, kobj);
2017-01-08 12:13:18 +03:00
sysfs_strtoul(journal_write_delay_ms, c->journal.write_delay_ms);
sysfs_strtoul(journal_reclaim_delay_ms, c->journal.reclaim_delay_ms);
if (attr == &sysfs_btree_gc_periodic) {
ssize_t ret = strtoul_safe(buf, c->btree_gc_periodic)
?: (ssize_t) size;
wake_up_process(c->gc_thread);
return ret;
}
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_copy_gc_enabled) {
2017-03-11 00:40:01 +03:00
struct bch_dev *ca;
2017-01-08 12:13:18 +03:00
unsigned i;
ssize_t ret = strtoul_safe(buf, c->copy_gc_enabled)
?: (ssize_t) size;
2017-03-11 00:40:01 +03:00
for_each_member_device(ca, c, i)
if (ca->copygc_thread)
wake_up_process(ca->copygc_thread);
2017-01-08 12:13:18 +03:00
return ret;
}
if (attr == &sysfs_rebalance_enabled) {
ssize_t ret = strtoul_safe(buf, c->rebalance_enabled)
2017-01-08 12:13:18 +03:00
?: (ssize_t) size;
rebalance_wakeup(c);
2017-01-08 12:13:18 +03:00
return ret;
}
sysfs_strtoul(pd_controllers_update_seconds,
c->pd_controllers_update_seconds);
sysfs_strtoul(rebalance_percent, c->rebalance_percent);
sysfs_pd_controller_store(rebalance, &c->rebalance_pd);
2017-01-08 12:13:18 +03:00
/* Debugging: */
#define BCH_DEBUG_PARAM(name, description) sysfs_strtoul(name, c->name);
BCH_DEBUG_PARAMS()
#undef BCH_DEBUG_PARAM
if (!bch2_fs_running(c))
2017-01-08 12:13:18 +03:00
return -EPERM;
2017-04-11 08:19:15 +03:00
/* Debugging: */
2017-03-01 13:45:15 +03:00
2017-04-11 08:19:15 +03:00
if (attr == &sysfs_trigger_journal_flush)
bch2_journal_meta_async(&c->journal, NULL);
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_trigger_btree_coalesce)
bch2_coalesce(c);
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_trigger_gc)
bch2_gc(c);
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_prune_cache) {
struct shrink_control sc;
sc.gfp_mask = GFP_KERNEL;
sc.nr_to_scan = strtoul_or_return(buf);
c->btree_cache.shrink.scan_objects(&c->btree_cache.shrink, &sc);
2017-01-08 12:13:18 +03:00
}
return size;
}
STORE(bch2_fs)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_fs *c = container_of(kobj, struct bch_fs, kobj);
2017-01-08 12:13:18 +03:00
2017-03-01 13:45:15 +03:00
mutex_lock(&c->state_lock);
size = __bch2_fs_store(kobj, attr, buf, size);
2017-03-01 13:45:15 +03:00
mutex_unlock(&c->state_lock);
2017-01-08 12:13:18 +03:00
return size;
}
SYSFS_OPS(bch2_fs);
2017-01-08 12:13:18 +03:00
struct attribute *bch2_fs_files[] = {
2017-04-11 08:19:15 +03:00
&sysfs_minor,
2017-01-08 12:13:18 +03:00
&sysfs_block_size,
&sysfs_btree_node_size,
&sysfs_btree_cache_size,
&sysfs_meta_replicas_have,
&sysfs_data_replicas_have,
2017-04-11 08:19:15 +03:00
&sysfs_journal_write_delay_ms,
&sysfs_journal_reclaim_delay_ms,
&sysfs_rebalance_percent,
2017-01-08 12:13:18 +03:00
2017-04-11 08:19:15 +03:00
&sysfs_compression_stats,
2017-01-08 12:13:18 +03:00
NULL
};
/* internal dir - just a wrapper */
SHOW(bch2_fs_internal)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_fs *c = container_of(kobj, struct bch_fs, internal);
return bch2_fs_show(&c->kobj, attr, buf);
2017-01-08 12:13:18 +03:00
}
STORE(bch2_fs_internal)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_fs *c = container_of(kobj, struct bch_fs, internal);
return bch2_fs_store(&c->kobj, attr, buf, size);
2017-01-08 12:13:18 +03:00
}
SYSFS_OPS(bch2_fs_internal);
2017-01-08 12:13:18 +03:00
struct attribute *bch2_fs_internal_files[] = {
2017-01-08 12:13:18 +03:00
&sysfs_alloc_debug,
2017-04-11 08:19:15 +03:00
&sysfs_journal_debug,
&sysfs_journal_pins,
&sysfs_btree_updates,
&sysfs_dirty_btree_nodes,
2017-01-08 12:13:18 +03:00
2017-04-11 08:19:15 +03:00
&sysfs_read_realloc_races,
&sysfs_extent_migrate_done,
&sysfs_extent_migrate_raced,
2017-01-08 12:13:18 +03:00
2017-04-11 08:19:15 +03:00
&sysfs_trigger_journal_flush,
2017-01-08 12:13:18 +03:00
&sysfs_trigger_btree_coalesce,
&sysfs_trigger_gc,
&sysfs_prune_cache,
2017-04-11 08:19:15 +03:00
2017-01-08 12:13:18 +03:00
&sysfs_copy_gc_enabled,
&sysfs_rebalance_enabled,
sysfs_pd_controller_files(rebalance),
2017-01-08 12:13:18 +03:00
&sysfs_internal_uuid,
#define BCH_DEBUG_PARAM(name, description) &sysfs_##name,
BCH_DEBUG_PARAMS()
#undef BCH_DEBUG_PARAM
NULL
};
/* options */
SHOW(bch2_fs_opts_dir)
2017-01-08 12:13:18 +03:00
{
char *out = buf, *end = buf + PAGE_SIZE;
2017-03-11 00:40:01 +03:00
struct bch_fs *c = container_of(kobj, struct bch_fs, opts_dir);
const struct bch_option *opt = container_of(attr, struct bch_option, attr);
int id = opt - bch2_opt_table;
u64 v = bch2_opt_get_by_id(&c->opts, id);
2017-01-08 12:13:18 +03:00
out += bch2_opt_to_text(c, out, end - out, opt, v, OPT_SHOW_FULL_LIST);
out += scnprintf(out, end - out, "\n");
return out - buf;
2017-01-08 12:13:18 +03:00
}
STORE(bch2_fs_opts_dir)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_fs *c = container_of(kobj, struct bch_fs, opts_dir);
const struct bch_option *opt = container_of(attr, struct bch_option, attr);
int ret, id = opt - bch2_opt_table;
u64 v;
ret = bch2_opt_parse(c, opt, buf, &v);
if (ret < 0)
return ret;
if (id == Opt_compression ||
id == Opt_background_compression) {
int ret = bch2_check_set_has_compressed_data(c, v);
if (ret) {
mutex_unlock(&c->sb_lock);
return ret;
}
2017-01-08 12:13:18 +03:00
}
if (opt->set_sb != SET_NO_SB_OPT) {
mutex_lock(&c->sb_lock);
opt->set_sb(c->disk_sb, v);
bch2_write_super(c);
mutex_unlock(&c->sb_lock);
}
bch2_opt_set_by_id(&c->opts, id, v);
if ((id == Opt_background_target ||
id == Opt_background_compression) && v) {
bch2_rebalance_add_work(c, S64_MAX);
rebalance_wakeup(c);
}
2017-01-08 12:13:18 +03:00
return size;
}
SYSFS_OPS(bch2_fs_opts_dir);
2017-01-08 12:13:18 +03:00
struct attribute *bch2_fs_opts_dir_files[] = { NULL };
2017-01-08 12:13:18 +03:00
int bch2_opts_create_sysfs_files(struct kobject *kobj)
{
const struct bch_option *i;
int ret;
2017-01-08 12:13:18 +03:00
for (i = bch2_opt_table;
i < bch2_opt_table + bch2_opts_nr;
i++) {
if (i->mode == OPT_INTERNAL)
continue;
ret = sysfs_create_file(kobj, &i->attr);
if (ret)
return ret;
}
return 0;
}
2017-01-08 12:13:18 +03:00
/* time stats */
SHOW(bch2_fs_time_stats)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_fs *c = container_of(kobj, struct bch_fs, time_stats);
2017-01-08 12:13:18 +03:00
#define BCH_TIME_STAT(name, frequency_units, duration_units) \
sysfs_print_time_stats(&c->name##_time, name, \
frequency_units, duration_units);
BCH_TIME_STATS()
#undef BCH_TIME_STAT
return 0;
}
STORE(bch2_fs_time_stats)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_fs *c = container_of(kobj, struct bch_fs, time_stats);
2017-01-08 12:13:18 +03:00
#define BCH_TIME_STAT(name, frequency_units, duration_units) \
sysfs_clear_time_stats(&c->name##_time, name);
BCH_TIME_STATS()
#undef BCH_TIME_STAT
return size;
}
SYSFS_OPS(bch2_fs_time_stats);
2017-01-08 12:13:18 +03:00
struct attribute *bch2_fs_time_stats_files[] = {
2017-01-08 12:13:18 +03:00
#define BCH_TIME_STAT(name, frequency_units, duration_units) \
sysfs_time_stats_attribute_list(name, frequency_units, duration_units)
BCH_TIME_STATS()
#undef BCH_TIME_STAT
NULL
};
typedef unsigned (bucket_map_fn)(struct bch_dev *, size_t, void *);
2017-01-08 12:13:18 +03:00
static unsigned bucket_priority_fn(struct bch_dev *ca, size_t b,
2017-01-08 12:13:18 +03:00
void *private)
{
struct bucket *g = bucket(ca, b);
2017-01-08 12:13:18 +03:00
int rw = (private ? 1 : 0);
2017-03-11 00:40:01 +03:00
return ca->fs->prio_clock[rw].hand - g->prio[rw];
2017-01-08 12:13:18 +03:00
}
static unsigned bucket_sectors_used_fn(struct bch_dev *ca, size_t b,
2017-01-08 12:13:18 +03:00
void *private)
{
struct bucket *g = bucket(ca, b);
2017-04-24 08:56:57 +03:00
return bucket_sectors_used(g->mark);
2017-01-08 12:13:18 +03:00
}
static unsigned bucket_oldest_gen_fn(struct bch_dev *ca, size_t b,
2017-01-08 12:13:18 +03:00
void *private)
{
return bucket_gc_gen(ca, b);
2017-01-08 12:13:18 +03:00
}
2017-03-11 00:40:01 +03:00
static ssize_t show_quantiles(struct bch_dev *ca, char *buf,
2017-01-08 12:13:18 +03:00
bucket_map_fn *fn, void *private)
{
int cmp(const void *l, const void *r)
{ return *((unsigned *) r) - *((unsigned *) l); }
size_t i, n;
2017-01-08 12:13:18 +03:00
/* Compute 31 quantiles */
unsigned q[31], *p;
ssize_t ret = 0;
down_read(&ca->bucket_lock);
n = ca->mi.nbuckets;
p = vzalloc(n * sizeof(unsigned));
if (!p) {
up_read(&ca->bucket_lock);
2017-01-08 12:13:18 +03:00
return -ENOMEM;
}
2017-01-08 12:13:18 +03:00
for (i = ca->mi.first_bucket; i < n; i++)
p[i] = fn(ca, i, private);
2017-01-08 12:13:18 +03:00
sort(p, n, sizeof(unsigned), cmp, NULL);
up_read(&ca->bucket_lock);
2017-01-08 12:13:18 +03:00
while (n &&
!p[n - 1])
--n;
for (i = 0; i < ARRAY_SIZE(q); i++)
q[i] = p[n * (i + 1) / (ARRAY_SIZE(q) + 1)];
vfree(p);
for (i = 0; i < ARRAY_SIZE(q); i++)
ret += scnprintf(buf + ret, PAGE_SIZE - ret,
"%u ", q[i]);
buf[ret - 1] = '\n';
return ret;
}
2017-03-11 00:40:01 +03:00
static ssize_t show_reserve_stats(struct bch_dev *ca, char *buf)
2017-01-08 12:13:18 +03:00
{
enum alloc_reserve i;
ssize_t ret;
spin_lock(&ca->freelist_lock);
ret = scnprintf(buf, PAGE_SIZE,
"free_inc:\t%zu\t%zu\n",
fifo_used(&ca->free_inc),
ca->free_inc.size);
for (i = 0; i < RESERVE_NR; i++)
ret += scnprintf(buf + ret, PAGE_SIZE - ret,
"free[%u]:\t%zu\t%zu\n", i,
fifo_used(&ca->free[i]),
ca->free[i].size);
spin_unlock(&ca->freelist_lock);
return ret;
}
2017-03-11 00:40:01 +03:00
static ssize_t show_dev_alloc_debug(struct bch_dev *ca, char *buf)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_fs *c = ca->fs;
struct bch_dev_usage stats = bch2_dev_usage_read(c, ca);
2017-01-08 12:13:18 +03:00
return scnprintf(buf, PAGE_SIZE,
"free_inc: %zu/%zu\n"
"free[RESERVE_BTREE]: %zu/%zu\n"
"free[RESERVE_MOVINGGC]: %zu/%zu\n"
"free[RESERVE_NONE]: %zu/%zu\n"
"buckets:\n"
" capacity: %llu\n"
" alloc: %llu\n"
" sb: %llu\n"
" journal: %llu\n"
" meta: %llu\n"
" user: %llu\n"
" cached: %llu\n"
" available: %llu\n"
"sectors:\n"
" sb: %llu\n"
" journal: %llu\n"
" meta: %llu\n"
" user: %llu\n"
" cached: %llu\n"
2017-01-08 12:13:18 +03:00
"freelist_wait: %s\n"
"open buckets: %u/%u (reserved %u)\n"
"open_buckets_wait: %s\n",
fifo_used(&ca->free_inc), ca->free_inc.size,
fifo_used(&ca->free[RESERVE_BTREE]), ca->free[RESERVE_BTREE].size,
fifo_used(&ca->free[RESERVE_MOVINGGC]), ca->free[RESERVE_MOVINGGC].size,
fifo_used(&ca->free[RESERVE_NONE]), ca->free[RESERVE_NONE].size,
ca->mi.nbuckets - ca->mi.first_bucket,
stats.buckets_alloc,
stats.buckets[BCH_DATA_SB],
stats.buckets[BCH_DATA_JOURNAL],
stats.buckets[BCH_DATA_BTREE],
stats.buckets[BCH_DATA_USER],
stats.buckets[BCH_DATA_CACHED],
__dev_buckets_available(ca, stats),
stats.sectors[BCH_DATA_SB],
stats.sectors[BCH_DATA_JOURNAL],
stats.sectors[BCH_DATA_BTREE],
stats.sectors[BCH_DATA_USER],
stats.sectors[BCH_DATA_CACHED],
2017-01-08 12:13:18 +03:00
c->freelist_wait.list.first ? "waiting" : "empty",
c->open_buckets_nr_free, OPEN_BUCKETS_COUNT, BTREE_NODE_RESERVE,
c->open_buckets_wait.list.first ? "waiting" : "empty");
}
static const char * const bch2_rw[] = {
"read",
"write",
NULL
};
static ssize_t show_dev_iostats(struct bch_dev *ca, char *buf)
2017-01-08 12:13:18 +03:00
{
char *out = buf, *end = buf + PAGE_SIZE;
int rw, i, cpu;
2017-01-08 12:13:18 +03:00
for (rw = 0; rw < 2; rw++) {
out += scnprintf(out, end - out, "%s:\n", bch2_rw[rw]);
2017-01-08 12:13:18 +03:00
for (i = 1; i < BCH_DATA_NR; i++) {
u64 n = 0;
for_each_possible_cpu(cpu)
n += per_cpu_ptr(ca->io_done, cpu)->sectors[rw][i];
out += scnprintf(out, end - out, "%-12s:%12llu\n",
bch2_data_types[i], n << 9);
}
}
return out - buf;
2017-01-08 12:13:18 +03:00
}
SHOW(bch2_dev)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_dev *ca = container_of(kobj, struct bch_dev, kobj);
struct bch_fs *c = ca->fs;
char *out = buf, *end = buf + PAGE_SIZE;
2017-01-08 12:13:18 +03:00
2016-10-04 06:22:17 +03:00
sysfs_printf(uuid, "%pU\n", ca->uuid.b);
2017-01-08 12:13:18 +03:00
2017-04-11 08:19:15 +03:00
sysfs_print(bucket_size, bucket_bytes(ca));
sysfs_print(block_size, block_bytes(c));
2017-01-08 12:13:18 +03:00
sysfs_print(first_bucket, ca->mi.first_bucket);
sysfs_print(nbuckets, ca->mi.nbuckets);
sysfs_print(discard, ca->mi.discard);
if (attr == &sysfs_group) {
struct bch_sb_field_disk_groups *groups;
struct bch_disk_group *g;
unsigned len;
if (!ca->mi.group)
return scnprintf(out, end - out, "none\n");
mutex_lock(&c->sb_lock);
groups = bch2_sb_get_disk_groups(c->disk_sb);
g = &groups->entries[ca->mi.group - 1];
len = strnlen(g->label, sizeof(g->label));
memcpy(buf, g->label, len);
mutex_unlock(&c->sb_lock);
buf[len++] = '\n';
return len;
}
if (attr == &sysfs_has_data) {
out += bch2_scnprint_flag_list(out, end - out,
bch2_data_types,
bch2_dev_has_data(c, ca));
out += scnprintf(out, end - out, "\n");
return out - buf;
}
2017-01-08 12:13:18 +03:00
sysfs_pd_controller_show(copy_gc, &ca->copygc_pd);
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_cache_replacement_policy) {
out += bch2_scnprint_string_list(out, end - out,
bch2_cache_replacement_policies,
ca->mi.replacement);
out += scnprintf(out, end - out, "\n");
return out - buf;
}
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_state_rw) {
out += bch2_scnprint_string_list(out, end - out,
bch2_dev_state,
ca->mi.state);
out += scnprintf(out, end - out, "\n");
return out - buf;
}
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_iostats)
return show_dev_iostats(ca, buf);
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_read_priority_stats)
return show_quantiles(ca, buf, bucket_priority_fn, (void *) 0);
if (attr == &sysfs_write_priority_stats)
return show_quantiles(ca, buf, bucket_priority_fn, (void *) 1);
if (attr == &sysfs_fragmentation_stats)
return show_quantiles(ca, buf, bucket_sectors_used_fn, NULL);
if (attr == &sysfs_oldest_gen_stats)
return show_quantiles(ca, buf, bucket_oldest_gen_fn, NULL);
if (attr == &sysfs_reserve_stats)
return show_reserve_stats(ca, buf);
if (attr == &sysfs_alloc_debug)
return show_dev_alloc_debug(ca, buf);
2017-01-08 12:13:18 +03:00
return 0;
}
STORE(bch2_dev)
2017-01-08 12:13:18 +03:00
{
2017-03-11 00:40:01 +03:00
struct bch_dev *ca = container_of(kobj, struct bch_dev, kobj);
struct bch_fs *c = ca->fs;
2016-10-04 06:22:17 +03:00
struct bch_member *mi;
2017-01-08 12:13:18 +03:00
sysfs_pd_controller_store(copy_gc, &ca->copygc_pd);
2017-01-08 12:13:18 +03:00
if (attr == &sysfs_discard) {
bool v = strtoul_or_return(buf);
2016-10-04 06:22:17 +03:00
mutex_lock(&c->sb_lock);
mi = &bch2_sb_get_members(c->disk_sb)->members[ca->dev_idx];
2016-10-04 06:22:17 +03:00
if (v != BCH_MEMBER_DISCARD(mi)) {
SET_BCH_MEMBER_DISCARD(mi, v);
bch2_write_super(c);
2017-01-08 12:13:18 +03:00
}
2016-10-04 06:22:17 +03:00
mutex_unlock(&c->sb_lock);
2017-01-08 12:13:18 +03:00
}
if (attr == &sysfs_cache_replacement_policy) {
ssize_t v = bch2_read_string_list(buf, bch2_cache_replacement_policies);
2017-01-08 12:13:18 +03:00
if (v < 0)
return v;
2016-10-04 06:22:17 +03:00
mutex_lock(&c->sb_lock);
mi = &bch2_sb_get_members(c->disk_sb)->members[ca->dev_idx];
2016-10-04 06:22:17 +03:00
if ((unsigned) v != BCH_MEMBER_REPLACEMENT(mi)) {
SET_BCH_MEMBER_REPLACEMENT(mi, v);
bch2_write_super(c);
2017-01-08 12:13:18 +03:00
}
2016-10-04 06:22:17 +03:00
mutex_unlock(&c->sb_lock);
2017-01-08 12:13:18 +03:00
}
if (attr == &sysfs_group) {
char *tmp;
int ret;
tmp = kstrdup(buf, GFP_KERNEL);
if (!tmp)
return -ENOMEM;
ret = bch2_dev_group_set(c, ca, strim(tmp));
kfree(tmp);
if (ret)
return ret;
2017-01-08 12:13:18 +03:00
}
if (attr == &sysfs_wake_allocator)
bch2_wake_allocator(ca);
2017-01-08 12:13:18 +03:00
return size;
}
SYSFS_OPS(bch2_dev);
2017-01-08 12:13:18 +03:00
struct attribute *bch2_dev_files[] = {
2017-01-08 12:13:18 +03:00
&sysfs_uuid,
&sysfs_bucket_size,
&sysfs_block_size,
&sysfs_first_bucket,
&sysfs_nbuckets,
2017-04-11 08:19:15 +03:00
/* settings: */
&sysfs_discard,
&sysfs_cache_replacement_policy,
&sysfs_state_rw,
&sysfs_group,
2017-04-11 08:19:15 +03:00
&sysfs_has_data,
&sysfs_iostats,
2017-04-11 08:19:15 +03:00
/* alloc info - other stats: */
&sysfs_read_priority_stats,
&sysfs_write_priority_stats,
&sysfs_fragmentation_stats,
&sysfs_oldest_gen_stats,
&sysfs_reserve_stats,
/* debug: */
2017-01-08 12:13:18 +03:00
&sysfs_alloc_debug,
&sysfs_wake_allocator,
2017-01-08 12:13:18 +03:00
sysfs_pd_controller_files(copy_gc),
NULL
};
#endif /* _BCACHEFS_SYSFS_H_ */