Go to file
Masahiro Yamada de985c1090 linux/init.h: include <linux/build_bug.h> and <linux/stringify.h>
With CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y, the following code fails to
build:

  ---------------->8----------------
  #include <linux/init.h>

  int foo(void) { return 0; }
  core_initcall(foo);
  ---------------->8----------------

Include <linux/build_bug.h> for static_assert() and <linux/stringify.h>
for __stringify().

Link: https://lkml.kernel.org/r/20221113110802.3760705-1-masahiroy@kernel.org
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Cc: Jiangshan Yi <yijiangshan@kylinos.cn>
Cc: Kees Cook <keescook@chromium.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Randy Dunlap <rdunlap@infradead.org> # build-tested
Cc: Sami Tolvanen <samitolvanen@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
2022-11-30 16:13:18 -08:00
Documentation debugfs: fix error when writing negative value to atomic_t debugfs file 2022-11-30 16:13:16 -08:00
LICENSES
arch ia64: remove unused __SLOW_DOWN_IO and SLOW_DOWN_IO definitions 2022-11-18 13:55:08 -08:00
block
certs
crypto
drivers rapidio: rio: fix possible name leak in rio_register_mport() 2022-11-30 16:13:17 -08:00
fs fat (exportfs): fix some kernel-doc warnings 2022-11-30 16:13:17 -08:00
include linux/init.h: include <linux/build_bug.h> and <linux/stringify.h> 2022-11-30 16:13:18 -08:00
init initramfs: remove unnecessary (void*) conversion 2022-11-18 13:55:08 -08:00
io_uring
ipc
kernel vmcoreinfo: warn if we exceed vmcoreinfo data size 2022-11-30 16:13:17 -08:00
lib lib/radix-tree.c: fix uninitialized variable compilation warning 2022-11-30 16:13:17 -08:00
mm
net
rust
samples
scripts checkpatch: add check for array allocator family argument order 2022-11-30 16:13:16 -08:00
security
sound
tools selftests: cgroup: fix unsigned comparison with less than zero 2022-11-18 13:55:09 -08:00
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
.rustfmt.toml
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS MAINTAINERS: git://github -> https://github.com for linux-test-project 2022-11-18 13:55:06 -08:00
Makefile
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.