sysfs.c 29.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
K
Kent Overstreet 已提交
2 3 4 5 6 7 8 9 10 11 12
/*
 * bcache sysfs interfaces
 *
 * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
 * Copyright 2012 Google, Inc.
 */

#include "bcache.h"
#include "sysfs.h"
#include "btree.h"
#include "request.h"
13
#include "writeback.h"
14
#include "features.h"
K
Kent Overstreet 已提交
15

K
Kent Overstreet 已提交
16
#include <linux/blkdev.h>
K
Kent Overstreet 已提交
17
#include <linux/sort.h>
18
#include <linux/sched/clock.h>
K
Kent Overstreet 已提交
19

20 21
extern bool bcache_is_reboot;

S
Shenghui Wang 已提交
22
/* Default is 0 ("writethrough") */
23 24 25 26
static const char * const bch_cache_modes[] = {
	"writethrough",
	"writeback",
	"writearound",
27 28
	"none",
	NULL
29 30
};

31 32 33 34 35 36
static const char * const bch_reada_cache_policies[] = {
	"all",
	"meta-only",
	NULL
};

S
Shenghui Wang 已提交
37
/* Default is 0 ("auto") */
38 39
static const char * const bch_stop_on_failure_modes[] = {
	"auto",
40 41
	"always",
	NULL
42 43
};

K
Kent Overstreet 已提交
44 45 46
static const char * const cache_replacement_policies[] = {
	"lru",
	"fifo",
47 48
	"random",
	NULL
K
Kent Overstreet 已提交
49 50
};

51 52
static const char * const error_actions[] = {
	"unregister",
53 54
	"panic",
	NULL
55 56
};

K
Kent Overstreet 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
write_attribute(attach);
write_attribute(detach);
write_attribute(unregister);
write_attribute(stop);
write_attribute(clear_stats);
write_attribute(trigger_gc);
write_attribute(prune_cache);
write_attribute(flash_vol_create);

read_attribute(bucket_size);
read_attribute(block_size);
read_attribute(nbuckets);
read_attribute(tree_depth);
read_attribute(root_usage_percent);
read_attribute(priority_stats);
read_attribute(btree_cache_size);
read_attribute(btree_cache_max_chain);
read_attribute(cache_available_percent);
read_attribute(written);
read_attribute(btree_written);
read_attribute(metadata_written);
read_attribute(active_journal_entries);
79
read_attribute(backing_dev_name);
80
read_attribute(backing_dev_uuid);
K
Kent Overstreet 已提交
81 82 83 84 85 86 87 88 89 90 91

sysfs_time_stats_attribute(btree_gc,	sec, ms);
sysfs_time_stats_attribute(btree_split, sec, us);
sysfs_time_stats_attribute(btree_sort,	ms,  us);
sysfs_time_stats_attribute(btree_read,	ms,  us);

read_attribute(btree_nodes);
read_attribute(btree_used_percent);
read_attribute(average_key_size);
read_attribute(dirty_data);
read_attribute(bset_tree_stats);
92 93 94
read_attribute(feature_compat);
read_attribute(feature_ro_compat);
read_attribute(feature_incompat);
K
Kent Overstreet 已提交
95 96 97

read_attribute(state);
read_attribute(cache_read_races);
T
Tang Junhui 已提交
98
read_attribute(reclaim);
99
read_attribute(reclaimed_journal_buckets);
T
Tang Junhui 已提交
100
read_attribute(flush_write);
K
Kent Overstreet 已提交
101 102 103 104
read_attribute(writeback_keys_done);
read_attribute(writeback_keys_failed);
read_attribute(io_errors);
read_attribute(congested);
105 106
read_attribute(cutoff_writeback);
read_attribute(cutoff_writeback_sync);
K
Kent Overstreet 已提交
107 108 109 110
rw_attribute(congested_read_threshold_us);
rw_attribute(congested_write_threshold_us);

rw_attribute(sequential_cutoff);
111
rw_attribute(read_bypass);
K
Kent Overstreet 已提交
112 113
rw_attribute(data_csum);
rw_attribute(cache_mode);
114
rw_attribute(readahead_cache_policy);
115
rw_attribute(stop_when_cache_set_failed);
K
Kent Overstreet 已提交
116 117 118 119 120 121 122
rw_attribute(writeback_metadata);
rw_attribute(writeback_running);
rw_attribute(writeback_percent);
rw_attribute(writeback_delay);
rw_attribute(writeback_rate);

rw_attribute(writeback_rate_update_seconds);
123
rw_attribute(writeback_rate_i_term_inverse);
K
Kent Overstreet 已提交
124
rw_attribute(writeback_rate_p_term_inverse);
125
rw_attribute(writeback_rate_minimum);
K
Kent Overstreet 已提交
126 127
read_attribute(writeback_rate_debug);

K
Kent Overstreet 已提交
128 129 130
read_attribute(stripe_size);
read_attribute(partial_stripes_expensive);

K
Kent Overstreet 已提交
131 132
rw_attribute(synchronous);
rw_attribute(journal_delay_ms);
133
rw_attribute(io_disable);
K
Kent Overstreet 已提交
134 135 136 137
rw_attribute(discard);
rw_attribute(running);
rw_attribute(label);
rw_attribute(readahead);
138
rw_attribute(errors);
K
Kent Overstreet 已提交
139 140 141
rw_attribute(io_error_limit);
rw_attribute(io_error_halflife);
rw_attribute(verify);
K
Kent Overstreet 已提交
142
rw_attribute(bypass_torture_test);
K
Kent Overstreet 已提交
143 144
rw_attribute(key_merging_disabled);
rw_attribute(gc_always_rewrite);
K
Kent Overstreet 已提交
145
rw_attribute(expensive_debug_checks);
K
Kent Overstreet 已提交
146 147 148
rw_attribute(cache_replacement_policy);
rw_attribute(btree_shrinker_disabled);
rw_attribute(copy_gc_enabled);
149
rw_attribute(idle_max_writeback_rate);
150
rw_attribute(gc_after_writeback);
K
Kent Overstreet 已提交
151 152
rw_attribute(size);

153 154 155 156
static ssize_t bch_snprint_string_list(char *buf,
				       size_t size,
				       const char * const list[],
				       size_t selected)
157 158 159 160 161
{
	char *out = buf;
	size_t i;

	for (i = 0; list[i]; i++)
162
		out += scnprintf(out, buf + size - out,
163 164 165 166 167 168
				i == selected ? "[%s] " : "%s ", list[i]);

	out[-1] = '\n';
	return out - buf;
}

K
Kent Overstreet 已提交
169 170 171 172
SHOW(__bch_cached_dev)
{
	struct cached_dev *dc = container_of(kobj, struct cached_dev,
					     disk.kobj);
173
	char const *states[] = { "no cache", "clean", "dirty", "inconsistent" };
174
	int wb = dc->writeback_running;
K
Kent Overstreet 已提交
175 176 177 178

#define var(stat)		(dc->stat)

	if (attr == &sysfs_cache_mode)
179
		return bch_snprint_string_list(buf, PAGE_SIZE,
180
					       bch_cache_modes,
181
					       BDEV_CACHE_MODE(&dc->sb));
K
Kent Overstreet 已提交
182

183 184 185 186 187
	if (attr == &sysfs_readahead_cache_policy)
		return bch_snprint_string_list(buf, PAGE_SIZE,
					      bch_reada_cache_policies,
					      dc->cache_readahead_policy);

188 189
	if (attr == &sysfs_stop_when_cache_set_failed)
		return bch_snprint_string_list(buf, PAGE_SIZE,
190
					       bch_stop_on_failure_modes,
191 192 193
					       dc->stop_when_cache_set_failed);


K
Kent Overstreet 已提交
194 195
	sysfs_printf(data_csum,		"%i", dc->disk.data_csum);
	var_printf(verify,		"%i");
K
Kent Overstreet 已提交
196
	var_printf(bypass_torture_test,	"%i");
K
Kent Overstreet 已提交
197 198 199 200
	var_printf(writeback_metadata,	"%i");
	var_printf(writeback_running,	"%i");
	var_print(writeback_delay);
	var_print(writeback_percent);
201 202
	sysfs_hprint(writeback_rate,
		     wb ? atomic_long_read(&dc->writeback_rate.rate) << 9 : 0);
203
	sysfs_printf(io_errors,		"%i", atomic_read(&dc->io_errors));
204 205
	sysfs_printf(io_error_limit,	"%i", dc->error_limit);
	sysfs_printf(io_disable,	"%i", dc->io_disable);
K
Kent Overstreet 已提交
206
	var_print(writeback_rate_update_seconds);
207
	var_print(writeback_rate_i_term_inverse);
K
Kent Overstreet 已提交
208
	var_print(writeback_rate_p_term_inverse);
209
	var_print(writeback_rate_minimum);
K
Kent Overstreet 已提交
210 211

	if (attr == &sysfs_writeback_rate_debug) {
212
		char rate[20];
K
Kent Overstreet 已提交
213 214
		char dirty[20];
		char target[20];
215
		char proportional[20];
216
		char integral[20];
217 218 219
		char change[20];
		s64 next_io;

220 221 222 223
		/*
		 * Except for dirty and target, other values should
		 * be 0 if writeback is not running.
		 */
224 225 226
		bch_hprint(rate,
			   wb ? atomic_long_read(&dc->writeback_rate.rate) << 9
			      : 0);
227 228 229 230 231 232 233 234 235
		bch_hprint(dirty, bcache_dev_sectors_dirty(&dc->disk) << 9);
		bch_hprint(target, dc->writeback_rate_target << 9);
		bch_hprint(proportional,
			   wb ? dc->writeback_rate_proportional << 9 : 0);
		bch_hprint(integral,
			   wb ? dc->writeback_rate_integral_scaled << 9 : 0);
		bch_hprint(change, wb ? dc->writeback_rate_change << 9 : 0);
		next_io = wb ? div64_s64(dc->writeback_rate.next-local_clock(),
					 NSEC_PER_MSEC) : 0;
K
Kent Overstreet 已提交
236 237

		return sprintf(buf,
238
			       "rate:\t\t%s/sec\n"
K
Kent Overstreet 已提交
239
			       "dirty:\t\t%s\n"
240 241
			       "target:\t\t%s\n"
			       "proportional:\t%s\n"
242
			       "integral:\t%s\n"
243 244 245
			       "change:\t\t%s/sec\n"
			       "next io:\t%llims\n",
			       rate, dirty, target, proportional,
246
			       integral, change, next_io);
K
Kent Overstreet 已提交
247 248 249
	}

	sysfs_hprint(dirty_data,
250
		     bcache_dev_sectors_dirty(&dc->disk) << 9);
K
Kent Overstreet 已提交
251

252
	sysfs_hprint(stripe_size,	 ((uint64_t)dc->disk.stripe_size) << 9);
K
Kent Overstreet 已提交
253 254
	var_printf(partial_stripes_expensive,	"%u");

K
Kent Overstreet 已提交
255
	var_hprint(sequential_cutoff);
256
	var_print(read_bypass);
K
Kent Overstreet 已提交
257 258 259 260 261 262 263 264 265 266 267 268
	var_hprint(readahead);

	sysfs_print(running,		atomic_read(&dc->running));
	sysfs_print(state,		states[BDEV_STATE(&dc->sb)]);

	if (attr == &sysfs_label) {
		memcpy(buf, dc->sb.label, SB_LABEL_SIZE);
		buf[SB_LABEL_SIZE + 1] = '\0';
		strcat(buf, "\n");
		return strlen(buf);
	}

269 270 271 272 273 274
	if (attr == &sysfs_backing_dev_name) {
		snprintf(buf, BDEVNAME_SIZE + 1, "%s", dc->backing_dev_name);
		strcat(buf, "\n");
		return strlen(buf);
	}

275 276 277 278 279 280 281
	if (attr == &sysfs_backing_dev_uuid) {
		/* convert binary uuid into 36-byte string plus '\0' */
		snprintf(buf, 36+1, "%pU", dc->sb.uuid);
		strcat(buf, "\n");
		return strlen(buf);
	}

K
Kent Overstreet 已提交
282 283 284 285 286 287 288 289 290
#undef var
	return 0;
}
SHOW_LOCKED(bch_cached_dev)

STORE(__cached_dev)
{
	struct cached_dev *dc = container_of(kobj, struct cached_dev,
					     disk.kobj);
291
	ssize_t v;
K
Kent Overstreet 已提交
292
	struct cache_set *c;
G
Gabriel de Perthuis 已提交
293
	struct kobj_uevent_env *env;
K
Kent Overstreet 已提交
294

295 296 297 298
	/* no user space access if system is rebooting */
	if (bcache_is_reboot)
		return -EBUSY;

K
Kent Overstreet 已提交
299
#define d_strtoul(var)		sysfs_strtoul(var, dc->var)
300
#define d_strtoul_nonzero(var)	sysfs_strtoul_clamp(var, dc->var, 1, INT_MAX)
K
Kent Overstreet 已提交
301 302 303 304
#define d_strtoi_h(var)		sysfs_hatoi(var, dc->var)

	sysfs_strtoul(data_csum,	dc->disk.data_csum);
	d_strtoul(verify);
305 306 307
	sysfs_strtoul_bool(bypass_torture_test, dc->bypass_torture_test);
	sysfs_strtoul_bool(writeback_metadata, dc->writeback_metadata);
	sysfs_strtoul_bool(writeback_running, dc->writeback_running);
308
	sysfs_strtoul_clamp(writeback_delay, dc->writeback_delay, 0, UINT_MAX);
309

310 311
	sysfs_strtoul_clamp(writeback_percent, dc->writeback_percent,
			    0, bch_cutoff_writeback);
K
Kent Overstreet 已提交
312

313
	if (attr == &sysfs_writeback_rate) {
314 315
		ssize_t ret;
		long int v = atomic_long_read(&dc->writeback_rate.rate);
316

317 318 319 320 321 322 323 324
		ret = strtoul_safe_clamp(buf, v, 1, INT_MAX);

		if (!ret) {
			atomic_long_set(&dc->writeback_rate.rate, v);
			ret = size;
		}

		return ret;
325
	}
326

327 328 329
	sysfs_strtoul_clamp(writeback_rate_update_seconds,
			    dc->writeback_rate_update_seconds,
			    1, WRITEBACK_RATE_UPDATE_SECS_MAX);
330 331 332
	sysfs_strtoul_clamp(writeback_rate_i_term_inverse,
			    dc->writeback_rate_i_term_inverse,
			    1, UINT_MAX);
333 334 335
	sysfs_strtoul_clamp(writeback_rate_p_term_inverse,
			    dc->writeback_rate_p_term_inverse,
			    1, UINT_MAX);
336 337 338
	sysfs_strtoul_clamp(writeback_rate_minimum,
			    dc->writeback_rate_minimum,
			    1, UINT_MAX);
K
Kent Overstreet 已提交
339

340 341 342 343 344 345 346 347
	sysfs_strtoul_clamp(io_error_limit, dc->error_limit, 0, INT_MAX);

	if (attr == &sysfs_io_disable) {
		int v = strtoul_or_return(buf);

		dc->io_disable = v ? 1 : 0;
	}

348 349 350
	sysfs_strtoul_clamp(sequential_cutoff,
			    dc->sequential_cutoff,
			    0, UINT_MAX);
351 352 353
	sysfs_strtoul_clamp(read_bypass,
			    dc->read_bypass,
			    0, 1);
K
Kent Overstreet 已提交
354 355 356 357 358 359
	d_strtoi_h(readahead);

	if (attr == &sysfs_clear_stats)
		bch_cache_accounting_clear(&dc->accounting);

	if (attr == &sysfs_running &&
360 361 362 363 364
	    strtoul_or_return(buf)) {
		v = bch_cached_dev_run(dc);
		if (v)
			return v;
	}
K
Kent Overstreet 已提交
365 366

	if (attr == &sysfs_cache_mode) {
367
		v = __sysfs_match_string(bch_cache_modes, -1, buf);
K
Kent Overstreet 已提交
368 369 370
		if (v < 0)
			return v;

371
		if ((unsigned int) v != BDEV_CACHE_MODE(&dc->sb)) {
K
Kent Overstreet 已提交
372 373 374 375 376
			SET_BDEV_CACHE_MODE(&dc->sb, v);
			bch_write_bdev_super(dc, NULL);
		}
	}

377 378 379 380 381 382 383 384 385
	if (attr == &sysfs_readahead_cache_policy) {
		v = __sysfs_match_string(bch_reada_cache_policies, -1, buf);
		if (v < 0)
			return v;

		if ((unsigned int) v != dc->cache_readahead_policy)
			dc->cache_readahead_policy = v;
	}

386
	if (attr == &sysfs_stop_when_cache_set_failed) {
387
		v = __sysfs_match_string(bch_stop_on_failure_modes, -1, buf);
388 389 390 391 392 393
		if (v < 0)
			return v;

		dc->stop_when_cache_set_failed = v;
	}

K
Kent Overstreet 已提交
394
	if (attr == &sysfs_label) {
395 396 397 398 399 400 401
		if (size > SB_LABEL_SIZE)
			return -EINVAL;
		memcpy(dc->sb.label, buf, size);
		if (size < SB_LABEL_SIZE)
			dc->sb.label[size] = '\0';
		if (size && dc->sb.label[size - 1] == '\n')
			dc->sb.label[size - 1] = '\0';
K
Kent Overstreet 已提交
402 403 404 405 406 407
		bch_write_bdev_super(dc, NULL);
		if (dc->disk.c) {
			memcpy(dc->disk.c->uuids[dc->disk.id].label,
			       buf, SB_LABEL_SIZE);
			bch_uuid_write(dc->disk.c);
		}
G
Gabriel de Perthuis 已提交
408
		env = kzalloc(sizeof(struct kobj_uevent_env), GFP_KERNEL);
409 410
		if (!env)
			return -ENOMEM;
G
Gabriel de Perthuis 已提交
411 412 413
		add_uevent_var(env, "DRIVER=bcache");
		add_uevent_var(env, "CACHED_UUID=%pU", dc->sb.uuid),
		add_uevent_var(env, "CACHED_LABEL=%s", buf);
414 415 416
		kobject_uevent_env(&disk_to_dev(dc->disk.disk)->kobj,
				   KOBJ_CHANGE,
				   env->envp);
G
Gabriel de Perthuis 已提交
417
		kfree(env);
K
Kent Overstreet 已提交
418 419 420
	}

	if (attr == &sysfs_attach) {
421 422 423
		uint8_t		set_uuid[16];

		if (bch_parse_uuid(buf, set_uuid) < 16)
K
Kent Overstreet 已提交
424 425
			return -EINVAL;

426
		v = -ENOENT;
K
Kent Overstreet 已提交
427
		list_for_each_entry(c, &bch_cache_sets, list) {
428
			v = bch_cached_dev_attach(dc, c, set_uuid);
K
Kent Overstreet 已提交
429 430 431
			if (!v)
				return size;
		}
432
		if (v == -ENOENT)
433
			pr_err("Can't attach %s: cache set not found\n", buf);
434
		return v;
K
Kent Overstreet 已提交
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
	}

	if (attr == &sysfs_detach && dc->disk.c)
		bch_cached_dev_detach(dc);

	if (attr == &sysfs_stop)
		bcache_device_stop(&dc->disk);

	return size;
}

STORE(bch_cached_dev)
{
	struct cached_dev *dc = container_of(kobj, struct cached_dev,
					     disk.kobj);

451 452 453 454
	/* no user space access if system is rebooting */
	if (bcache_is_reboot)
		return -EBUSY;

K
Kent Overstreet 已提交
455 456 457
	mutex_lock(&bch_register_lock);
	size = __cached_dev_store(kobj, attr, buf, size);

458 459 460 461 462 463 464 465 466
	if (attr == &sysfs_writeback_running) {
		/* dc->writeback_running changed in __cached_dev_store() */
		if (IS_ERR_OR_NULL(dc->writeback_thread)) {
			/*
			 * reject setting it to 1 via sysfs if writeback
			 * kthread is not created yet.
			 */
			if (dc->writeback_running) {
				dc->writeback_running = false;
467
				pr_err("%s: failed to run non-existent writeback thread\n",
468 469 470 471 472 473 474 475 476
						dc->disk.disk->disk_name);
			}
		} else
			/*
			 * writeback kthread will check if dc->writeback_running
			 * is true or false.
			 */
			bch_writeback_queue(dc);
	}
K
Kent Overstreet 已提交
477

478 479 480 481
	/*
	 * Only set BCACHE_DEV_WB_RUNNING when cached device attached to
	 * a cache set, otherwise it doesn't make sense.
	 */
K
Kent Overstreet 已提交
482
	if (attr == &sysfs_writeback_percent)
483 484
		if ((dc->disk.c != NULL) &&
		    (!test_and_set_bit(BCACHE_DEV_WB_RUNNING, &dc->disk.flags)))
485
			schedule_delayed_work(&dc->writeback_rate_update,
K
Kent Overstreet 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499
				      dc->writeback_rate_update_seconds * HZ);

	mutex_unlock(&bch_register_lock);
	return size;
}

static struct attribute *bch_cached_dev_files[] = {
	&sysfs_attach,
	&sysfs_detach,
	&sysfs_stop,
#if 0
	&sysfs_data_csum,
#endif
	&sysfs_cache_mode,
500
	&sysfs_readahead_cache_policy,
501
	&sysfs_stop_when_cache_set_failed,
K
Kent Overstreet 已提交
502 503 504 505 506 507
	&sysfs_writeback_metadata,
	&sysfs_writeback_running,
	&sysfs_writeback_delay,
	&sysfs_writeback_percent,
	&sysfs_writeback_rate,
	&sysfs_writeback_rate_update_seconds,
508
	&sysfs_writeback_rate_i_term_inverse,
K
Kent Overstreet 已提交
509
	&sysfs_writeback_rate_p_term_inverse,
510
	&sysfs_writeback_rate_minimum,
K
Kent Overstreet 已提交
511
	&sysfs_writeback_rate_debug,
512
	&sysfs_io_errors,
513 514
	&sysfs_io_error_limit,
	&sysfs_io_disable,
K
Kent Overstreet 已提交
515
	&sysfs_dirty_data,
K
Kent Overstreet 已提交
516 517
	&sysfs_stripe_size,
	&sysfs_partial_stripes_expensive,
K
Kent Overstreet 已提交
518
	&sysfs_sequential_cutoff,
519
	&sysfs_read_bypass,
K
Kent Overstreet 已提交
520 521 522 523 524 525 526
	&sysfs_clear_stats,
	&sysfs_running,
	&sysfs_state,
	&sysfs_label,
	&sysfs_readahead,
#ifdef CONFIG_BCACHE_DEBUG
	&sysfs_verify,
K
Kent Overstreet 已提交
527
	&sysfs_bypass_torture_test,
K
Kent Overstreet 已提交
528
#endif
529
	&sysfs_backing_dev_name,
530
	&sysfs_backing_dev_uuid,
K
Kent Overstreet 已提交
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
	NULL
};
KTYPE(bch_cached_dev);

SHOW(bch_flash_dev)
{
	struct bcache_device *d = container_of(kobj, struct bcache_device,
					       kobj);
	struct uuid_entry *u = &d->c->uuids[d->id];

	sysfs_printf(data_csum,	"%i", d->data_csum);
	sysfs_hprint(size,	u->sectors << 9);

	if (attr == &sysfs_label) {
		memcpy(buf, u->label, SB_LABEL_SIZE);
		buf[SB_LABEL_SIZE + 1] = '\0';
		strcat(buf, "\n");
		return strlen(buf);
	}

	return 0;
}

STORE(__bch_flash_dev)
{
	struct bcache_device *d = container_of(kobj, struct bcache_device,
					       kobj);
	struct uuid_entry *u = &d->c->uuids[d->id];

560 561 562 563
	/* no user space access if system is rebooting */
	if (bcache_is_reboot)
		return -EBUSY;

K
Kent Overstreet 已提交
564 565 566 567
	sysfs_strtoul(data_csum,	d->data_csum);

	if (attr == &sysfs_size) {
		uint64_t v;
568

K
Kent Overstreet 已提交
569 570 571 572 573 574 575 576 577 578 579 580 581
		strtoi_h_or_return(buf, v);

		u->sectors = v >> 9;
		bch_uuid_write(d->c);
		set_capacity(d->disk, u->sectors);
	}

	if (attr == &sysfs_label) {
		memcpy(u->label, buf, SB_LABEL_SIZE);
		bch_uuid_write(d->c);
	}

	if (attr == &sysfs_unregister) {
582
		set_bit(BCACHE_DEV_DETACHING, &d->flags);
K
Kent Overstreet 已提交
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
		bcache_device_stop(d);
	}

	return size;
}
STORE_LOCKED(bch_flash_dev)

static struct attribute *bch_flash_dev_files[] = {
	&sysfs_unregister,
#if 0
	&sysfs_data_csum,
#endif
	&sysfs_label,
	&sysfs_size,
	NULL
};
KTYPE(bch_flash_dev);

601 602 603 604 605 606
struct bset_stats_op {
	struct btree_op op;
	size_t nodes;
	struct bset_stats stats;
};

J
John Sheu 已提交
607
static int bch_btree_bset_stats(struct btree_op *b_op, struct btree *b)
608 609 610 611 612 613 614 615 616
{
	struct bset_stats_op *op = container_of(b_op, struct bset_stats_op, op);

	op->nodes++;
	bch_btree_keys_stats(&b->keys, &op->stats);

	return MAP_CONTINUE;
}

617
static int bch_bset_print_stats(struct cache_set *c, char *buf)
618 619 620 621 622 623 624
{
	struct bset_stats_op op;
	int ret;

	memset(&op, 0, sizeof(op));
	bch_btree_op_init(&op.op, -1);

J
John Sheu 已提交
625
	ret = bch_btree_map_nodes(&op.op, c, &ZERO_KEY, bch_btree_bset_stats);
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
	if (ret < 0)
		return ret;

	return snprintf(buf, PAGE_SIZE,
			"btree nodes:		%zu\n"
			"written sets:		%zu\n"
			"unwritten sets:		%zu\n"
			"written key bytes:	%zu\n"
			"unwritten key bytes:	%zu\n"
			"floats:			%zu\n"
			"failed:			%zu\n",
			op.nodes,
			op.stats.sets_written, op.stats.sets_unwritten,
			op.stats.bytes_written, op.stats.bytes_unwritten,
			op.stats.floats, op.stats.failed);
}

643
static unsigned int bch_root_usage(struct cache_set *c)
K
Kent Overstreet 已提交
644
{
645
	unsigned int bytes = 0;
J
John Sheu 已提交
646 647 648
	struct bkey *k;
	struct btree *b;
	struct btree_iter iter;
K
Kent Overstreet 已提交
649

J
John Sheu 已提交
650
	goto lock_root;
K
Kent Overstreet 已提交
651

J
John Sheu 已提交
652 653
	do {
		rw_unlock(false, b);
K
Kent Overstreet 已提交
654
lock_root:
J
John Sheu 已提交
655 656 657
		b = c->root;
		rw_lock(false, b, b->level);
	} while (b != c->root);
K
Kent Overstreet 已提交
658

J
John Sheu 已提交
659 660
	for_each_key_filter(&b->keys, k, &iter, bch_ptr_bad)
		bytes += bkey_bytes(k);
K
Kent Overstreet 已提交
661

J
John Sheu 已提交
662
	rw_unlock(false, b);
K
Kent Overstreet 已提交
663

J
John Sheu 已提交
664 665
	return (bytes * 100) / btree_bytes(c);
}
K
Kent Overstreet 已提交
666

J
John Sheu 已提交
667 668 669 670
static size_t bch_cache_size(struct cache_set *c)
{
	size_t ret = 0;
	struct btree *b;
K
Kent Overstreet 已提交
671

J
John Sheu 已提交
672 673 674
	mutex_lock(&c->bucket_lock);
	list_for_each_entry(b, &c->btree_cache, list)
		ret += 1 << (b->keys.page_order + PAGE_SHIFT);
K
Kent Overstreet 已提交
675

J
John Sheu 已提交
676 677 678
	mutex_unlock(&c->bucket_lock);
	return ret;
}
K
Kent Overstreet 已提交
679

680
static unsigned int bch_cache_max_chain(struct cache_set *c)
J
John Sheu 已提交
681
{
682
	unsigned int ret = 0;
J
John Sheu 已提交
683
	struct hlist_head *h;
K
Kent Overstreet 已提交
684

J
John Sheu 已提交
685
	mutex_lock(&c->bucket_lock);
K
Kent Overstreet 已提交
686

J
John Sheu 已提交
687 688 689
	for (h = c->bucket_hash;
	     h < c->bucket_hash + (1 << BUCKET_HASH_BITS);
	     h++) {
690
		unsigned int i = 0;
J
John Sheu 已提交
691
		struct hlist_node *p;
K
Kent Overstreet 已提交
692

J
John Sheu 已提交
693 694
		hlist_for_each(p, h)
			i++;
K
Kent Overstreet 已提交
695

J
John Sheu 已提交
696
		ret = max(ret, i);
K
Kent Overstreet 已提交
697 698
	}

J
John Sheu 已提交
699 700 701
	mutex_unlock(&c->bucket_lock);
	return ret;
}
K
Kent Overstreet 已提交
702

703
static unsigned int bch_btree_used(struct cache_set *c)
J
John Sheu 已提交
704 705 706 707
{
	return div64_u64(c->gc_stats.key_bytes * 100,
			 (c->gc_stats.nodes ?: 1) * btree_bytes(c));
}
K
Kent Overstreet 已提交
708

709
static unsigned int bch_average_key_size(struct cache_set *c)
J
John Sheu 已提交
710 711 712 713 714 715 716 717
{
	return c->gc_stats.nkeys
		? div64_u64(c->gc_stats.data, c->gc_stats.nkeys)
		: 0;
}

SHOW(__bch_cache_set)
{
K
Kent Overstreet 已提交
718 719
	struct cache_set *c = container_of(kobj, struct cache_set, kobj);

720
	sysfs_print(synchronous,		CACHE_SYNC(&c->cache->sb));
K
Kent Overstreet 已提交
721
	sysfs_print(journal_delay_ms,		c->journal_delay_ms);
722
	sysfs_hprint(bucket_size,		bucket_bytes(c->cache));
723
	sysfs_hprint(block_size,		block_bytes(c->cache));
K
Kent Overstreet 已提交
724
	sysfs_print(tree_depth,			c->root->level);
J
John Sheu 已提交
725
	sysfs_print(root_usage_percent,		bch_root_usage(c));
K
Kent Overstreet 已提交
726

J
John Sheu 已提交
727 728
	sysfs_hprint(btree_cache_size,		bch_cache_size(c));
	sysfs_print(btree_cache_max_chain,	bch_cache_max_chain(c));
K
Kent Overstreet 已提交
729 730 731 732
	sysfs_print(cache_available_percent,	100 - c->gc_stats.in_use);

	sysfs_print_time_stats(&c->btree_gc_time,	btree_gc, sec, ms);
	sysfs_print_time_stats(&c->btree_split_time,	btree_split, sec, us);
733
	sysfs_print_time_stats(&c->sort.time,		btree_sort, ms, us);
K
Kent Overstreet 已提交
734 735
	sysfs_print_time_stats(&c->btree_read_time,	btree_read, ms, us);

J
John Sheu 已提交
736
	sysfs_print(btree_used_percent,	bch_btree_used(c));
K
Kent Overstreet 已提交
737
	sysfs_print(btree_nodes,	c->gc_stats.nodes);
J
John Sheu 已提交
738
	sysfs_hprint(average_key_size,	bch_average_key_size(c));
K
Kent Overstreet 已提交
739 740 741 742

	sysfs_print(cache_read_races,
		    atomic_long_read(&c->cache_read_races));

T
Tang Junhui 已提交
743 744 745
	sysfs_print(reclaim,
		    atomic_long_read(&c->reclaim));

746 747 748
	sysfs_print(reclaimed_journal_buckets,
		    atomic_long_read(&c->reclaimed_journal_buckets));

T
Tang Junhui 已提交
749 750 751
	sysfs_print(flush_write,
		    atomic_long_read(&c->flush_write));

K
Kent Overstreet 已提交
752 753 754 755 756
	sysfs_print(writeback_keys_done,
		    atomic_long_read(&c->writeback_keys_done));
	sysfs_print(writeback_keys_failed,
		    atomic_long_read(&c->writeback_keys_failed));

757 758 759 760
	if (attr == &sysfs_errors)
		return bch_snprint_string_list(buf, PAGE_SIZE, error_actions,
					       c->on_error);

K
Kent Overstreet 已提交
761 762
	/* See count_io_errors for why 88 */
	sysfs_print(io_error_halflife,	c->error_decay * 88);
C
Coly Li 已提交
763
	sysfs_print(io_error_limit,	c->error_limit);
K
Kent Overstreet 已提交
764 765 766 767 768 769 770 771

	sysfs_hprint(congested,
		     ((uint64_t) bch_get_congested(c)) << 9);
	sysfs_print(congested_read_threshold_us,
		    c->congested_read_threshold_us);
	sysfs_print(congested_write_threshold_us,
		    c->congested_write_threshold_us);

772 773 774
	sysfs_print(cutoff_writeback, bch_cutoff_writeback);
	sysfs_print(cutoff_writeback_sync, bch_cutoff_writeback_sync);

K
Kent Overstreet 已提交
775 776 777
	sysfs_print(active_journal_entries,	fifo_used(&c->journal.pin));
	sysfs_printf(verify,			"%i", c->verify);
	sysfs_printf(key_merging_disabled,	"%i", c->key_merging_disabled);
K
Kent Overstreet 已提交
778 779
	sysfs_printf(expensive_debug_checks,
		     "%i", c->expensive_debug_checks);
K
Kent Overstreet 已提交
780 781 782
	sysfs_printf(gc_always_rewrite,		"%i", c->gc_always_rewrite);
	sysfs_printf(btree_shrinker_disabled,	"%i", c->shrinker_disabled);
	sysfs_printf(copy_gc_enabled,		"%i", c->copy_gc_enabled);
783 784
	sysfs_printf(idle_max_writeback_rate,	"%i",
		     c->idle_max_writeback_rate_enabled);
785
	sysfs_printf(gc_after_writeback,	"%i", c->gc_after_writeback);
786 787
	sysfs_printf(io_disable,		"%i",
		     test_bit(CACHE_SET_IO_DISABLE, &c->flags));
K
Kent Overstreet 已提交
788 789 790 791

	if (attr == &sysfs_bset_tree_stats)
		return bch_bset_print_stats(c, buf);

792 793 794 795 796 797 798
	if (attr == &sysfs_feature_compat)
		return bch_print_cache_set_feature_compat(c, buf, PAGE_SIZE);
	if (attr == &sysfs_feature_ro_compat)
		return bch_print_cache_set_feature_ro_compat(c, buf, PAGE_SIZE);
	if (attr == &sysfs_feature_incompat)
		return bch_print_cache_set_feature_incompat(c, buf, PAGE_SIZE);

K
Kent Overstreet 已提交
799 800 801 802 803 804 805
	return 0;
}
SHOW_LOCKED(bch_cache_set)

STORE(__bch_cache_set)
{
	struct cache_set *c = container_of(kobj, struct cache_set, kobj);
806
	ssize_t v;
K
Kent Overstreet 已提交
807

808 809 810 811
	/* no user space access if system is rebooting */
	if (bcache_is_reboot)
		return -EBUSY;

K
Kent Overstreet 已提交
812 813 814 815 816 817 818 819 820
	if (attr == &sysfs_unregister)
		bch_cache_set_unregister(c);

	if (attr == &sysfs_stop)
		bch_cache_set_stop(c);

	if (attr == &sysfs_synchronous) {
		bool sync = strtoul_or_return(buf);

821 822
		if (sync != CACHE_SYNC(&c->cache->sb)) {
			SET_CACHE_SYNC(&c->cache->sb, sync);
K
Kent Overstreet 已提交
823 824 825 826 827 828 829
			bcache_write_super(c);
		}
	}

	if (attr == &sysfs_flash_vol_create) {
		int r;
		uint64_t v;
830

K
Kent Overstreet 已提交
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
		strtoi_h_or_return(buf, v);

		r = bch_flash_dev_create(c, v);
		if (r)
			return r;
	}

	if (attr == &sysfs_clear_stats) {
		atomic_long_set(&c->writeback_keys_done,	0);
		atomic_long_set(&c->writeback_keys_failed,	0);

		memset(&c->gc_stats, 0, sizeof(struct gc_stat));
		bch_cache_accounting_clear(&c->accounting);
	}

C
Coly Li 已提交
846 847
	if (attr == &sysfs_trigger_gc)
		force_wake_up_gc(c);
K
Kent Overstreet 已提交
848 849 850

	if (attr == &sysfs_prune_cache) {
		struct shrink_control sc;
851

K
Kent Overstreet 已提交
852 853
		sc.gfp_mask = GFP_KERNEL;
		sc.nr_to_scan = strtoul_or_return(buf);
854
		c->shrink.scan_objects(&c->shrink, &sc);
K
Kent Overstreet 已提交
855 856
	}

857 858 859 860 861 862
	sysfs_strtoul_clamp(congested_read_threshold_us,
			    c->congested_read_threshold_us,
			    0, UINT_MAX);
	sysfs_strtoul_clamp(congested_write_threshold_us,
			    c->congested_write_threshold_us,
			    0, UINT_MAX);
K
Kent Overstreet 已提交
863

864
	if (attr == &sysfs_errors) {
865
		v = __sysfs_match_string(error_actions, -1, buf);
866 867 868 869 870 871
		if (v < 0)
			return v;

		c->on_error = v;
	}

872
	sysfs_strtoul_clamp(io_error_limit, c->error_limit, 0, UINT_MAX);
K
Kent Overstreet 已提交
873 874

	/* See count_io_errors() for why 88 */
875 876 877 878 879 880 881 882 883 884 885
	if (attr == &sysfs_io_error_halflife) {
		unsigned long v = 0;
		ssize_t ret;

		ret = strtoul_safe_clamp(buf, v, 0, UINT_MAX);
		if (!ret) {
			c->error_decay = v / 88;
			return size;
		}
		return ret;
	}
K
Kent Overstreet 已提交
886

887
	if (attr == &sysfs_io_disable) {
888
		v = strtoul_or_return(buf);
889 890 891
		if (v) {
			if (test_and_set_bit(CACHE_SET_IO_DISABLE,
					     &c->flags))
892
				pr_warn("CACHE_SET_IO_DISABLE already set\n");
893 894 895
		} else {
			if (!test_and_clear_bit(CACHE_SET_IO_DISABLE,
						&c->flags))
896
				pr_warn("CACHE_SET_IO_DISABLE already cleared\n");
897 898 899
		}
	}

900 901 902
	sysfs_strtoul_clamp(journal_delay_ms,
			    c->journal_delay_ms,
			    0, USHRT_MAX);
903 904
	sysfs_strtoul_bool(verify,		c->verify);
	sysfs_strtoul_bool(key_merging_disabled, c->key_merging_disabled);
K
Kent Overstreet 已提交
905
	sysfs_strtoul(expensive_debug_checks,	c->expensive_debug_checks);
906 907 908
	sysfs_strtoul_bool(gc_always_rewrite,	c->gc_always_rewrite);
	sysfs_strtoul_bool(btree_shrinker_disabled, c->shrinker_disabled);
	sysfs_strtoul_bool(copy_gc_enabled,	c->copy_gc_enabled);
909 910 911
	sysfs_strtoul_bool(idle_max_writeback_rate,
			   c->idle_max_writeback_rate_enabled);

912 913 914 915 916 917
	/*
	 * write gc_after_writeback here may overwrite an already set
	 * BCH_DO_AUTO_GC, it doesn't matter because this flag will be
	 * set in next chance.
	 */
	sysfs_strtoul_clamp(gc_after_writeback, c->gc_after_writeback, 0, 1);
K
Kent Overstreet 已提交
918 919 920 921 922 923 924 925

	return size;
}
STORE_LOCKED(bch_cache_set)

SHOW(bch_cache_set_internal)
{
	struct cache_set *c = container_of(kobj, struct cache_set, internal);
926

K
Kent Overstreet 已提交
927 928 929 930 931 932
	return bch_cache_set_show(&c->kobj, attr, buf);
}

STORE(bch_cache_set_internal)
{
	struct cache_set *c = container_of(kobj, struct cache_set, internal);
933

934 935 936 937
	/* no user space access if system is rebooting */
	if (bcache_is_reboot)
		return -EBUSY;

K
Kent Overstreet 已提交
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
	return bch_cache_set_store(&c->kobj, attr, buf, size);
}

static void bch_cache_set_internal_release(struct kobject *k)
{
}

static struct attribute *bch_cache_set_files[] = {
	&sysfs_unregister,
	&sysfs_stop,
	&sysfs_synchronous,
	&sysfs_journal_delay_ms,
	&sysfs_flash_vol_create,

	&sysfs_bucket_size,
	&sysfs_block_size,
	&sysfs_tree_depth,
	&sysfs_root_usage_percent,
	&sysfs_btree_cache_size,
	&sysfs_cache_available_percent,

	&sysfs_average_key_size,

961
	&sysfs_errors,
K
Kent Overstreet 已提交
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985
	&sysfs_io_error_limit,
	&sysfs_io_error_halflife,
	&sysfs_congested,
	&sysfs_congested_read_threshold_us,
	&sysfs_congested_write_threshold_us,
	&sysfs_clear_stats,
	NULL
};
KTYPE(bch_cache_set);

static struct attribute *bch_cache_set_internal_files[] = {
	&sysfs_active_journal_entries,

	sysfs_time_stats_attribute_list(btree_gc, sec, ms)
	sysfs_time_stats_attribute_list(btree_split, sec, us)
	sysfs_time_stats_attribute_list(btree_sort, ms, us)
	sysfs_time_stats_attribute_list(btree_read, ms, us)

	&sysfs_btree_nodes,
	&sysfs_btree_used_percent,
	&sysfs_btree_cache_max_chain,

	&sysfs_bset_tree_stats,
	&sysfs_cache_read_races,
T
Tang Junhui 已提交
986
	&sysfs_reclaim,
987
	&sysfs_reclaimed_journal_buckets,
T
Tang Junhui 已提交
988
	&sysfs_flush_write,
K
Kent Overstreet 已提交
989 990 991 992 993 994 995 996
	&sysfs_writeback_keys_done,
	&sysfs_writeback_keys_failed,

	&sysfs_trigger_gc,
	&sysfs_prune_cache,
#ifdef CONFIG_BCACHE_DEBUG
	&sysfs_verify,
	&sysfs_key_merging_disabled,
K
Kent Overstreet 已提交
997
	&sysfs_expensive_debug_checks,
K
Kent Overstreet 已提交
998 999 1000 1001
#endif
	&sysfs_gc_always_rewrite,
	&sysfs_btree_shrinker_disabled,
	&sysfs_copy_gc_enabled,
1002
	&sysfs_idle_max_writeback_rate,
1003
	&sysfs_gc_after_writeback,
1004
	&sysfs_io_disable,
1005 1006
	&sysfs_cutoff_writeback,
	&sysfs_cutoff_writeback_sync,
1007 1008 1009
	&sysfs_feature_compat,
	&sysfs_feature_ro_compat,
	&sysfs_feature_incompat,
K
Kent Overstreet 已提交
1010 1011 1012 1013
	NULL
};
KTYPE(bch_cache_set_internal);

1014 1015
static int __bch_cache_cmp(const void *l, const void *r)
{
1016
	cond_resched();
1017 1018 1019
	return *((uint16_t *)r) - *((uint16_t *)l);
}

K
Kent Overstreet 已提交
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
SHOW(__bch_cache)
{
	struct cache *ca = container_of(kobj, struct cache, kobj);

	sysfs_hprint(bucket_size,	bucket_bytes(ca));
	sysfs_hprint(block_size,	block_bytes(ca));
	sysfs_print(nbuckets,		ca->sb.nbuckets);
	sysfs_print(discard,		ca->discard);
	sysfs_hprint(written, atomic_long_read(&ca->sectors_written) << 9);
	sysfs_hprint(btree_written,
		     atomic_long_read(&ca->btree_sectors_written) << 9);
	sysfs_hprint(metadata_written,
		     (atomic_long_read(&ca->meta_sectors_written) +
		      atomic_long_read(&ca->btree_sectors_written)) << 9);

	sysfs_print(io_errors,
		    atomic_read(&ca->io_errors) >> IO_ERROR_SHIFT);

	if (attr == &sysfs_cache_replacement_policy)
1039 1040 1041
		return bch_snprint_string_list(buf, PAGE_SIZE,
					       cache_replacement_policies,
					       CACHE_REPLACEMENT(&ca->sb));
K
Kent Overstreet 已提交
1042 1043

	if (attr == &sysfs_priority_stats) {
K
Kent Overstreet 已提交
1044 1045 1046
		struct bucket *b;
		size_t n = ca->sb.nbuckets, i;
		size_t unused = 0, available = 0, dirty = 0, meta = 0;
K
Kent Overstreet 已提交
1047
		uint64_t sum = 0;
1048 1049
		/* Compute 31 quantiles */
		uint16_t q[31], *p, *cached;
K
Kent Overstreet 已提交
1050 1051
		ssize_t ret;

1052 1053
		cached = p = vmalloc(array_size(sizeof(uint16_t),
						ca->sb.nbuckets));
K
Kent Overstreet 已提交
1054 1055 1056 1057
		if (!p)
			return -ENOMEM;

		mutex_lock(&ca->set->bucket_lock);
K
Kent Overstreet 已提交
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
		for_each_bucket(b, ca) {
			if (!GC_SECTORS_USED(b))
				unused++;
			if (GC_MARK(b) == GC_MARK_RECLAIMABLE)
				available++;
			if (GC_MARK(b) == GC_MARK_DIRTY)
				dirty++;
			if (GC_MARK(b) == GC_MARK_METADATA)
				meta++;
		}

K
Kent Overstreet 已提交
1069 1070 1071 1072
		for (i = ca->sb.first_bucket; i < n; i++)
			p[i] = ca->buckets[i].prio;
		mutex_unlock(&ca->set->bucket_lock);

1073
		sort(p, n, sizeof(uint16_t), __bch_cache_cmp, NULL);
K
Kent Overstreet 已提交
1074 1075 1076 1077 1078 1079 1080

		while (n &&
		       !cached[n - 1])
			--n;

		while (cached < p + n &&
		       *cached == BTREE_PRIO)
K
Kent Overstreet 已提交
1081
			cached++, n--;
K
Kent Overstreet 已提交
1082 1083 1084 1085 1086 1087 1088

		for (i = 0; i < n; i++)
			sum += INITIAL_PRIO - cached[i];

		if (n)
			do_div(sum, n);

1089 1090 1091
		for (i = 0; i < ARRAY_SIZE(q); i++)
			q[i] = INITIAL_PRIO - cached[n * (i + 1) /
				(ARRAY_SIZE(q) + 1)];
K
Kent Overstreet 已提交
1092 1093 1094

		vfree(p);

1095 1096
		ret = scnprintf(buf, PAGE_SIZE,
				"Unused:		%zu%%\n"
K
Kent Overstreet 已提交
1097 1098
				"Clean:		%zu%%\n"
				"Dirty:		%zu%%\n"
1099 1100 1101 1102 1103
				"Metadata:	%zu%%\n"
				"Average:	%llu\n"
				"Sectors per Q:	%zu\n"
				"Quantiles:	[",
				unused * 100 / (size_t) ca->sb.nbuckets,
K
Kent Overstreet 已提交
1104 1105 1106
				available * 100 / (size_t) ca->sb.nbuckets,
				dirty * 100 / (size_t) ca->sb.nbuckets,
				meta * 100 / (size_t) ca->sb.nbuckets, sum,
1107 1108 1109 1110 1111 1112 1113 1114 1115
				n * ca->sb.bucket_size / (ARRAY_SIZE(q) + 1));

		for (i = 0; i < ARRAY_SIZE(q); i++)
			ret += scnprintf(buf + ret, PAGE_SIZE - ret,
					 "%u ", q[i]);
		ret--;

		ret += scnprintf(buf + ret, PAGE_SIZE - ret, "]\n");

K
Kent Overstreet 已提交
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
		return ret;
	}

	return 0;
}
SHOW_LOCKED(bch_cache)

STORE(__bch_cache)
{
	struct cache *ca = container_of(kobj, struct cache, kobj);
1126
	ssize_t v;
K
Kent Overstreet 已提交
1127

1128 1129 1130 1131
	/* no user space access if system is rebooting */
	if (bcache_is_reboot)
		return -EBUSY;

K
Kent Overstreet 已提交
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
	if (attr == &sysfs_discard) {
		bool v = strtoul_or_return(buf);

		if (blk_queue_discard(bdev_get_queue(ca->bdev)))
			ca->discard = v;

		if (v != CACHE_DISCARD(&ca->sb)) {
			SET_CACHE_DISCARD(&ca->sb, v);
			bcache_write_super(ca->set);
		}
	}

	if (attr == &sysfs_cache_replacement_policy) {
1145
		v = __sysfs_match_string(cache_replacement_policies, -1, buf);
K
Kent Overstreet 已提交
1146 1147 1148
		if (v < 0)
			return v;

1149
		if ((unsigned int) v != CACHE_REPLACEMENT(&ca->sb)) {
K
Kent Overstreet 已提交
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
			mutex_lock(&ca->set->bucket_lock);
			SET_CACHE_REPLACEMENT(&ca->sb, v);
			mutex_unlock(&ca->set->bucket_lock);

			bcache_write_super(ca->set);
		}
	}

	if (attr == &sysfs_clear_stats) {
		atomic_long_set(&ca->sectors_written, 0);
		atomic_long_set(&ca->btree_sectors_written, 0);
		atomic_long_set(&ca->meta_sectors_written, 0);
		atomic_set(&ca->io_count, 0);
		atomic_set(&ca->io_errors, 0);
	}

	return size;
}
STORE_LOCKED(bch_cache)

static struct attribute *bch_cache_files[] = {
	&sysfs_bucket_size,
	&sysfs_block_size,
	&sysfs_nbuckets,
	&sysfs_priority_stats,
	&sysfs_discard,
	&sysfs_written,
	&sysfs_btree_written,
	&sysfs_metadata_written,
	&sysfs_io_errors,
	&sysfs_clear_stats,
	&sysfs_cache_replacement_policy,
	NULL
};
KTYPE(bch_cache);