Skip to content

Commit 703a3cd

Browse files
author
James Morris
committed
Merge branch 'master' into next
2 parents df7f54c + 8e0ee43 commit 703a3cd

File tree

1,409 files changed

+58102
-39802
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,409 files changed

+58102
-39802
lines changed

.mailmap

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ Rudolf Marek <R.Marek@sh.cvut.cz>
9292
Rui Saraiva <rmps@joel.ist.utl.pt>
9393
Sachin P Sant <ssant@in.ibm.com>
9494
Sam Ravnborg <sam@mars.ravnborg.org>
95+
Sascha Hauer <s.hauer@pengutronix.de>
9596
S.Çağlar Onur <caglar@pardus.org.tr>
9697
Simon Kelley <simon@thekelleys.org.uk>
9798
Stéphane Witzmann <stephane.witzmann@ubpmes.univ-bpclermont.fr>
@@ -100,6 +101,7 @@ Tejun Heo <htejun@gmail.com>
100101
Thomas Graf <tgraf@suug.ch>
101102
Tony Luck <tony.luck@intel.com>
102103
Tsuneo Yoshioka <Tsuneo.Yoshioka@f-secure.com>
103-
Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
104104
Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de>
105+
Uwe Kleine-König <ukl@pengutronix.de>
106+
Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
105107
Valdis Kletnieks <Valdis.Kletnieks@vt.edu>

CREDITS

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2166,7 +2166,6 @@ D: Initial implementation of VC's, pty's and select()
21662166

21672167
N: Pavel Machek
21682168
E: pavel@ucw.cz
2169-
E: pavel@suse.cz
21702169
D: Softcursor for vga, hypertech cdrom support, vcsa bugfix, nbd
21712170
D: sun4/330 port, capabilities for elf, speedup for rm on ext2, USB,
21722171
D: work on suspend-to-ram/disk, killing duplicates from ioctl32
@@ -3739,7 +3738,7 @@ S: 93149 Nittenau
37393738
S: Germany
37403739

37413740
N: Gertjan van Wingerde
3742-
E: gwingerde@home.nl
3741+
E: gwingerde@gmail.com
37433742
D: Ralink rt2x00 WLAN driver
37443743
D: Minix V2 file-system
37453744
D: Misc fixes

Documentation/ABI/testing/sysfs-bus-pci

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
What: /sys/bus/pci/drivers/.../bind
2+
Date: December 2003
3+
Contact: linux-pci@vger.kernel.org
4+
Description:
5+
Writing a device location to this file will cause
6+
the driver to attempt to bind to the device found at
7+
this location. This is useful for overriding default
8+
bindings. The format for the location is: DDDD:BB:DD.F.
9+
That is Domain:Bus:Device.Function and is the same as
10+
found in /sys/bus/pci/devices/. For example:
11+
# echo 0000:00:19.0 > /sys/bus/pci/drivers/foo/bind
12+
(Note: kernels before 2.6.28 may require echo -n).
13+
14+
What: /sys/bus/pci/drivers/.../unbind
15+
Date: December 2003
16+
Contact: linux-pci@vger.kernel.org
17+
Description:
18+
Writing a device location to this file will cause the
19+
driver to attempt to unbind from the device found at
20+
this location. This may be useful when overriding default
21+
bindings. The format for the location is: DDDD:BB:DD.F.
22+
That is Domain:Bus:Device.Function and is the same as
23+
found in /sys/bus/pci/devices/. For example:
24+
# echo 0000:00:19.0 > /sys/bus/pci/drivers/foo/unbind
25+
(Note: kernels before 2.6.28 may require echo -n).
26+
27+
What: /sys/bus/pci/drivers/.../new_id
28+
Date: December 2003
29+
Contact: linux-pci@vger.kernel.org
30+
Description:
31+
Writing a device ID to this file will attempt to
32+
dynamically add a new device ID to a PCI device driver.
33+
This may allow the driver to support more hardware than
34+
was included in the driver's static device ID support
35+
table at compile time. The format for the device ID is:
36+
VVVV DDDD SVVV SDDD CCCC MMMM PPPP. That is Vendor ID,
37+
Device ID, Subsystem Vendor ID, Subsystem Device ID,
38+
Class, Class Mask, and Private Driver Data. The Vendor ID
39+
and Device ID fields are required, the rest are optional.
40+
Upon successfully adding an ID, the driver will probe
41+
for the device and attempt to bind to it. For example:
42+
# echo "8086 10f5" > /sys/bus/pci/drivers/foo/new_id
43+
144
What: /sys/bus/pci/devices/.../vpd
245
Date: February 2008
346
Contact: Ben Hutchings <bhutchings@solarflare.com>

Documentation/ABI/testing/sysfs-firmware-memmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
What: /sys/firmware/memmap/
22
Date: June 2008
3-
Contact: Bernhard Walle <bwalle@suse.de>
3+
Contact: Bernhard Walle <bernhard.walle@gmx.de>
44
Description:
55
On all platforms, the firmware provides a memory map which the
66
kernel reads. The resources from that memory map are registered

Documentation/DocBook/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# To add a new book the only step required is to add the book to the
77
# list of DOCBOOKS.
88

9-
DOCBOOKS := z8530book.xml mcabook.xml \
9+
DOCBOOKS := z8530book.xml mcabook.xml device-drivers.xml \
1010
kernel-hacking.xml kernel-locking.xml deviceiobook.xml \
1111
procfs-guide.xml writing_usb_driver.xml networking.xml \
1212
kernel-api.xml filesystems.xml lsm.xml usb.xml kgdb.xml \

0 commit comments

Comments
 (0)