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

Commit 857c68f7 authored by Jeff Garzik's avatar Jeff Garzik
Browse files

Merge branch 'master'

parents 4741c336 402a26f0
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
As of the Linux 2.6.10 kernel, it is now possible to change the
IO scheduler for a given block device on the fly (thus making it possible,
for instance, to set the CFQ scheduler for the system default, but
set a specific device to use the anticipatory or noop schedulers - which
can improve that device's throughput).

To set a specific scheduler, simply do this:

echo SCHEDNAME > /sys/block/DEV/queue/scheduler

where SCHEDNAME is the name of a defined IO scheduler, and DEV is the
device name (hda, hdb, sga, or whatever you happen to have).

The list of defined schedulers can be found by simply doing
a "cat /sys/block/DEV/queue/scheduler" - the list of valid names
will be displayed, with the currently selected scheduler in brackets:

# cat /sys/block/hda/queue/scheduler
noop anticipatory deadline [cfq]
# echo anticipatory > /sys/block/hda/queue/scheduler
# cat /sys/block/hda/queue/scheduler
noop [anticipatory] deadline cfq
+1 −1
Original line number Diff line number Diff line
@@ -53,4 +53,4 @@ the CPUFreq Mailing list:
* http://lists.linux.org.uk/mailman/listinfo/cpufreq

Clock and voltage scaling for the SA-1100:
* http://www.lart.tudelft.nl/projects/scaling
* http://www.lartmaker.nl/projects/scaling
+3 −2
Original line number Diff line number Diff line
@@ -25,8 +25,9 @@ Who: Adrian Bunk <bunk@stusta.de>

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

What:	drivers depending on OBSOLETE_OSS_DRIVER
When:	January 2006
What:	drivers that were depending on OBSOLETE_OSS_DRIVER
        (config options already removed)
When:	before 2.6.19
Why:	OSS drivers with ALSA replacements
Who:	Adrian Bunk <bunk@stusta.de>

+10 −1
Original line number Diff line number Diff line
@@ -32,7 +32,16 @@ The output of "cat /proc/meminfo" will have lines like:
.....
HugePages_Total: xxx
HugePages_Free:  yyy
Hugepagesize:    zzz KB
HugePages_Rsvd:  www
Hugepagesize:    zzz kB

where:
HugePages_Total is the size of the pool of hugepages.
HugePages_Free is the number of hugepages in the pool that are not yet
allocated.
HugePages_Rsvd is short for "reserved," and is the number of hugepages
for which a commitment to allocate from the pool has been made, but no
allocation has yet been made. It's vaguely analogous to overcommit.

/proc/filesystems should also show a filesystem of type "hugetlbfs" configured
in the kernel.
+10 −0
Original line number Diff line number Diff line
@@ -411,6 +411,7 @@ AX.25 NETWORK LAYER
P:	Ralf Baechle
M:	ralf@linux-mips.org
L:	linux-hams@vger.kernel.org
W:	http://www.linux-ax25.org/
S:	Maintained

BAYCOM/HDLCDRV DRIVERS FOR AX.25
@@ -1457,6 +1458,13 @@ M: support@pathscale.com
L:	openib-general@openib.org
S:	Supported

IPMI SUBSYSTEM
P:	Corey Minyard
M:	minyard@acm.org
L:	openipmi-developer@lists.sourceforge.net
W:	http://openipmi.sourceforge.net/
S:	Supported

IPX NETWORK LAYER
P:	Arnaldo Carvalho de Melo
M:	acme@conectiva.com.br
@@ -1869,6 +1877,7 @@ NETROM NETWORK LAYER
P:	Ralf Baechle
M:	ralf@linux-mips.org
L:	linux-hams@vger.kernel.org
W:	http://www.linux-ax25.org/
S:	Maintained

NETWORK BLOCK DEVICE
@@ -2260,6 +2269,7 @@ ROSE NETWORK LAYER
P:	Ralf Baechle
M:	ralf@linux-mips.org
L:	linux-hams@vger.kernel.org
W:	http://www.linux-ax25.org/
S:	Maintained

RISCOM8 DRIVER
Loading