Home
last modified time | relevance | path

Searched refs:bch_cutoff_writeback_sync (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/md/bcache/
H A Dwriteback.h96 extern unsigned int bch_cutoff_writeback_sync;
105 in_use > bch_cutoff_writeback_sync) in should_writeback()
H A Dsuper.c30 unsigned int bch_cutoff_writeback_sync; variable
2857 if (bch_cutoff_writeback_sync == 0) in check_module_parameters()
2858 bch_cutoff_writeback_sync = CUTOFF_WRITEBACK_SYNC; in check_module_parameters()
2859 else if (bch_cutoff_writeback_sync > CUTOFF_WRITEBACK_SYNC_MAX) { in check_module_parameters()
2861 bch_cutoff_writeback_sync, CUTOFF_WRITEBACK_SYNC_MAX); in check_module_parameters()
2862 bch_cutoff_writeback_sync = CUTOFF_WRITEBACK_SYNC_MAX; in check_module_parameters()
2873 if (bch_cutoff_writeback > bch_cutoff_writeback_sync) { in check_module_parameters()
2875 bch_cutoff_writeback, bch_cutoff_writeback_sync); in check_module_parameters()
2876 bch_cutoff_writeback = bch_cutoff_writeback_sync; in check_module_parameters()
2954 module_param(bch_cutoff_writeback_sync, uint, 0);
[all …]
H A Dsysfs.c767 sysfs_print(cutoff_writeback_sync, bch_cutoff_writeback_sync); in SHOW()