The source for the Linux kernel used in Windows Subsystem for Linux 2 (WSL2)
Перейти к файлу
Geert Uytterhoeven 4f20b7471c libgcc: add forward declarations for generic library routines
With W=1 on platforms that use the generic gcc library routines
(csky/loongarch/mips/riscv/sh/xtensa):

    lib/ashldi3.c:9:19: warning: no previous prototype for '__ashldi3' [-Wmissing-prototypes]
	9 | long long notrace __ashldi3(long long u, word_type b)
	  |                   ^~~~~~~~~
      CC      lib/ashrdi3.o
    lib/ashrdi3.c:9:19: warning: no previous prototype for '__ashrdi3' [-Wmissing-prototypes]
	9 | long long notrace __ashrdi3(long long u, word_type b)
	  |                   ^~~~~~~~~
      CC      lib/cmpdi2.o
    lib/cmpdi2.c:9:19: warning: no previous prototype for '__cmpdi2' [-Wmissing-prototypes]
	9 | word_type notrace __cmpdi2(long long a, long long b)
	  |                   ^~~~~~~~
      CC      lib/lshrdi3.o
    lib/lshrdi3.c:9:19: warning: no previous prototype for '__lshrdi3' [-Wmissing-prototypes]
	9 | long long notrace __lshrdi3(long long u, word_type b)
	  |                   ^~~~~~~~~
      CC      lib/muldi3.o
    lib/muldi3.c:49:19: warning: no previous prototype for '__muldi3' [-Wmissing-prototypes]
       49 | long long notrace __muldi3(long long u, long long v)
	  |                   ^~~~~~~~
      CC      lib/ucmpdi2.o
    lib/ucmpdi2.c:8:19: warning: no previous prototype for '__ucmpdi2' [-Wmissing-prototypes]
	8 | word_type notrace __ucmpdi2(unsigned long long a, unsigned long long b)
	  |                   ^~~~~~~~~

Fix this by adding forward declarations to the common libgcc header
file.

Link: https://lkml.kernel.org/r/5cdbe08296693dd53849f199c3933e16e97b33c1.1682088593.git.geert+renesas@glider.be
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reported-by: kernel test robot <lkp@intel.com>
  Link: https://lore.kernel.org/oe-kbuild-all/202303272214.RxzpA6bP-lkp@intel.com/
Acked-by: Arnd Bergmann <arnd@arndb.de>
Cc: Chris Zankel <chris@zankel.net>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
2023-04-27 13:45:31 -07:00
Documentation fs/proc: add Kthread flag to /proc/$pid/status 2023-04-21 14:54:34 -07:00
LICENSES
arch ia64: fix an addr to taddr in huge_pte_offset() 2023-04-21 14:54:34 -07:00
block
certs
crypto
drivers rapidio/tsi721: remove redundant pci_clear_master 2023-04-08 13:45:38 -07:00
fs ocfs2: reduce ioctl stack usage 2023-04-21 14:54:34 -07:00
include libgcc: add forward declarations for generic library routines 2023-04-27 13:45:31 -07:00
init
io_uring io_uring-6.3-2023-03-30 2023-03-31 12:30:13 -07:00
ipc
kernel delayacct: track delays from IRQ/SOFTIRQ 2023-04-18 16:39:34 -07:00
lib lib/rbtree: use '+' instead of '|' for setting color. 2023-04-18 16:39:33 -07:00
mm mm: uninline kstrdup() 2023-04-08 13:45:37 -07:00
net Including fixes from wireless and can. 2023-04-06 11:39:07 -07:00
rust
samples
scripts checkpatch: introduce proper bindings license check 2023-04-18 16:39:35 -07:00
security
sound ELF: fix all "Elf" typos 2023-04-08 13:45:37 -07:00
tools delayacct: track delays from IRQ/SOFTIRQ 2023-04-18 16:39:34 -07:00
usr
virt KVM: PPC: Make KVM_CAP_IRQFD_RESAMPLE platform dependent 2023-03-31 11:19:05 -04:00
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap mailmap: add entry for Oleksandr 2023-04-21 14:54:35 -07:00
.rustfmt.toml
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS MAINTAINERS: remove the obsolete section EMBEDDED LINUX 2023-04-08 13:45:37 -07:00
Makefile Linux 6.3-rc5 2023-04-02 14:29:29 -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.