Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2c10c22a authored by Ingo Molnar's avatar Ingo Molnar
Browse files

Merge branch 'linus' into sched/devel

parents f6121f4f fec6ed1d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -740,7 +740,7 @@ failure can be determined by:
	dma_addr_t dma_handle;

	dma_handle = pci_map_single(pdev, addr, size, direction);
	if (pci_dma_mapping_error(dma_handle)) {
	if (pci_dma_mapping_error(pdev, dma_handle)) {
		/*
		 * reduce current DMA mapping usage,
		 * delay and try again later or
+2 −1
Original line number Diff line number Diff line
@@ -77,7 +77,8 @@ documentation files are also added which explain how to use the feature.
When a kernel change causes the interface that the kernel exposes to
userspace to change, it is recommended that you send the information or
a patch to the manual pages explaining the change to the manual pages
maintainer at mtk.manpages@gmail.com.
maintainer at mtk.manpages@gmail.com, and CC the list
linux-api@vger.kernel.org.

Here is a list of files that are in the kernel source tree that are
required reading:
+2 −0
Original line number Diff line number Diff line
@@ -67,6 +67,8 @@ kernel patches.

19: All new userspace interfaces are documented in Documentation/ABI/.
    See Documentation/ABI/README for more information.
    Patches that change userspace interfaces should be CCed to
    linux-api@vger.kernel.org.

20: Check that it all passes `make headers_check'.

+2 −2
Original line number Diff line number Diff line
@@ -271,14 +271,14 @@ CDROMCLOSETRAY pendant of CDROMEJECT

	usage:

	  ioctl(fd, CDROMEJECT, 0);
	  ioctl(fd, CDROMCLOSETRAY, 0);

	inputs:		none

	outputs:	none

	error returns:
	  ENOSYS	cd drive not capable of ejecting
	  ENOSYS	cd drive not capable of closing the tray
	  EBUSY		other processes are accessing drive, or door is locked

	notes:
+4 −3
Original line number Diff line number Diff line
@@ -351,9 +351,10 @@ kernel. This value defaults to SHMMAX.

softlockup_thresh:

This value can be used to lower the softlockup tolerance
threshold. The default threshold is 10s.  If a cpu is locked up
for 10s, the kernel complains.  Valid values are 1-60s.
This value can be used to lower the softlockup tolerance threshold.  The
default threshold is 60 seconds.  If a cpu is locked up for 60 seconds,
the kernel complains.  Valid values are 1-60 seconds.  Setting this
tunable to zero will disable the softlockup detection altogether.

==============================================================

Loading