mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

People have been asking to see the plan for this, so - bcachefs has various background tasks that need to be scheduled to balance efficiency, predictability of performance, etc. The design and philosophy hasn't changed too much since bcache, which was primarily designed for server usage, with sustained load in mind. These days we're seeing more desktop usage - where we really want to let the system idle effictively, to reduce total power usage - while also still balancing previous concerns, we still want to let work accumulate to a degree. This lays out all the requirements and starts to sketch out the algorithm I have in mind. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
38 lines
748 B
ReStructuredText
38 lines
748 B
ReStructuredText
.. SPDX-License-Identifier: GPL-2.0
|
|
|
|
======================
|
|
bcachefs Documentation
|
|
======================
|
|
|
|
Subsystem-specific development process notes
|
|
--------------------------------------------
|
|
|
|
Development notes specific to bcachefs. These are intended to supplement
|
|
:doc:`general kernel development handbook </process/index>`.
|
|
|
|
.. toctree::
|
|
:maxdepth: 1
|
|
:numbered:
|
|
|
|
CodingStyle
|
|
SubmittingPatches
|
|
|
|
Filesystem implementation
|
|
-------------------------
|
|
|
|
Documentation for filesystem features and their implementation details.
|
|
At this moment, only a few of these are described here.
|
|
|
|
.. toctree::
|
|
:maxdepth: 1
|
|
:numbered:
|
|
|
|
casefolding
|
|
errorcodes
|
|
|
|
Future design
|
|
-------------
|
|
.. toctree::
|
|
:maxdepth: 1
|
|
|
|
future/idle_work
|