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

Commit f1dccedc authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files
parents c943aa85 0238cb4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ KernelNewbies:
	http://kernelnewbies.org/

Linux USB project:
	http://linux-usb.sourceforge.net/
	http://www.linux-usb.org/

How to NOT write kernel driver by arjanv@redhat.com
	http://people.redhat.com/arjanv/olspaper.pdf
+2 −1
Original line number Diff line number Diff line
@@ -478,10 +478,11 @@ Andrew Morton, "The perfect patch" (tpp).
Jeff Garzik, "Linux kernel patch submission format."
  <http://linux.yyz.us/patch-format.html>

Greg Kroah, "How to piss off a kernel subsystem maintainer".
Greg Kroah-Hartman "How to piss off a kernel subsystem maintainer".
  <http://www.kroah.com/log/2005/03/31/>
  <http://www.kroah.com/log/2005/07/08/>
  <http://www.kroah.com/log/2005/10/19/>
  <http://www.kroah.com/log/2006/01/11/>

NO!!!! No more huge patch bombs to linux-kernel@vger.kernel.org people!.
  <http://marc.theaimsgroup.com/?l=linux-kernel&m=112112749912944&w=2>
+9 −0
Original line number Diff line number Diff line
@@ -123,6 +123,15 @@ Who: Christoph Hellwig <hch@lst.de>

---------------------------

What:	CONFIG_FORCED_INLINING
When:	June 2006
Why:	Config option is there to see if gcc is good enough. (in january
        2006). If it is, the behavior should just be the default. If it's not,
	the option should just go away entirely.
Who:    Arjan van de Ven

---------------------------

What:	START_ARRAY ioctl for md
When:	July 2006
Files:	drivers/md/md.c
+12 −0
Original line number Diff line number Diff line
@@ -78,6 +78,18 @@ use up all the memory on the machine; but enhances the scalability of
that instance in a system with many cpus making intensive use of it.


tmpfs has a mount option to set the NUMA memory allocation policy for
all files in that instance:
mpol=interleave		prefers to allocate memory from each node in turn
mpol=default		prefers to allocate memory from the local node
mpol=bind		prefers to allocate from mpol_nodelist
mpol=preferred		prefers to allocate from first node in mpol_nodelist

The following mount option is used in conjunction with mpol=interleave,
mpol=bind or mpol=preferred:
mpol_nodelist:	nodelist suitable for parsing with nodelist_parse.


To specify the initial root directory you can use the following mount
options:

+11 −3
Original line number Diff line number Diff line
@@ -471,7 +471,7 @@ running once the system is up.
			arch/i386/kernel/cpu/cpufreq/elanfreq.c.

	elevator=	[IOSCHED]
			Format: {"as" | "cfq" | "deadline" | "noop"}
			Format: {"anticipatory" | "cfq" | "deadline" | "noop"}
			See Documentation/block/as-iosched.txt and
			Documentation/block/deadline-iosched.txt for details.

@@ -712,9 +712,17 @@ running once the system is up.
	load_ramdisk=	[RAM] List of ramdisks to load from floppy
			See Documentation/ramdisk.txt.

	lockd.udpport=	[NFS]
	lockd.nlm_grace_period=P  [NFS] Assign grace period.
			Format: <integer>

	lockd.nlm_tcpport=N	[NFS] Assign TCP port.
			Format: <integer>

	lockd.tcpport=	[NFS]
	lockd.nlm_timeout=T	[NFS] Assign timeout value.
			Format: <integer>

	lockd.nlm_udpport=M	[NFS] Assign UDP port.
			Format: <integer>

	logibm.irq=	[HW,MOUSE] Logitech Bus Mouse Driver
			Format: <irq>
Loading