aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs
ModeNameSize
-rw-r--r--Kconfig998logstatsplainblame
-rw-r--r--Makefile119logstatsplainblame
-rw-r--r--bin.c10980logstatsplainblame
-rw-r--r--dir.c22717logstatsplainblame
-rw-r--r--file.c19380logstatsplainblame
-rw-r--r--group.c5425logstatsplainblame
-rw-r--r--inode.c8618logstatsplainblame
-rw-r--r--mount.c4587logstatsplainblame
-rw-r--r--symlink.c7285logstatsplainblame
-rw-r--r--sysfs.h6452logstatsplainblame
that has been done writes_starved number of times, we dispatch some writes based on the same criteria as reads. front_merges (bool) ------------ Sometimes it happens that a request enters the io scheduler that is contiguous with a request that is already on the queue. Either it fits in the back of that request, or it fits at the front. That is called either a back merge candidate or a front merge candidate. Due to the way files are typically laid out, back merges are much more common than front merges. For some work loads, you may even know that it is a waste of time to spend any time attempting to front merge requests. Setting front_merges to 0 disables this functionality. Front merges may still occur due to the cached last_merge hint, but since that comes at basically 0 cost we leave that on. We simply disable the rbtree front sector lookup when the io scheduler merge function is called. Nov 11 2002, Jens Axboe <jens.axboe@oracle.com>