The source for the Linux kernel used in Windows Subsystem for Linux 2 (WSL2)
Перейти к файлу
Andreas Gruenbacher fa5dfa645d gfs2: buffered write prefaulting
In gfs2_file_buffered_write, to increase the likelihood that all the
user memory we're trying to write will be resident in memory, carry out
the write in chunks and fault in each chunk of user memory before trying
to write it.  Otherwise, some workloads will trigger frequent short
"internal" writes, causing filesystem blocks to be allocated and then
partially deallocated again when writing into holes, which is wasteful
and breaks reservations.

Neither the chunked writes nor any of the short "internal" writes are
user visible.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
2022-05-13 22:32:52 +02:00
Documentation docs: vm/page_owner: use literal blocks for param description 2022-04-27 13:28:48 -07:00
LICENSES
arch Pin control fixes for v5.18: 2022-04-26 16:34:11 -07:00
block
certs
crypto
drivers MTD core fix: 2022-04-27 10:14:52 -07:00
fs gfs2: buffered write prefaulting 2022-05-13 22:32:52 +02:00
include hex2bin: make the function hex_to_bin constant-time 2022-04-27 10:57:33 -07:00
init
ipc
kernel - Fix a corner case when calculating sched runqueue variables 2022-04-24 13:28:06 -07:00
lib hex2bin: fix access beyond string end 2022-04-27 10:57:33 -07:00
mm kasan: prevent cpu_quarantine corruption when CPU offline and cache shrink occur at same time 2022-04-27 13:28:48 -07:00
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS xfs: fixes for v5.18-rc5 2022-04-28 09:37:56 -07:00
Makefile Linux 5.18-rc4 2022-04-24 14:51:22 -07:00
README

README

Linux kernel
============

There are several guides for kernel developers and users. These guides can
be rendered in a number of formats, like HTML and PDF. Please read
Documentation/admin-guide/README.rst first.

In order to build the documentation, use ``make htmldocs`` or
``make pdfdocs``.  The formatted documentation can also be read online at:

    https://www.kernel.org/doc/html/latest/

There are various text files in the Documentation/ subdirectory,
several of them using the Restructured Text markup notation.

Please read the Documentation/process/changes.rst file, as it contains the
requirements for building and running the kernel, and information about
the problems which may result by upgrading your kernel.