forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'v2.6.29' into x86/setup-lzma
- Loading branch information
Showing
3,472 changed files
with
124,061 additions
and
61,389 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,6 +92,7 @@ Rudolf Marek <[email protected]> | |
Rui Saraiva <[email protected]> | ||
Sachin P Sant <[email protected]> | ||
Sam Ravnborg <[email protected]> | ||
Sascha Hauer <[email protected]> | ||
S.Çağlar Onur <[email protected]> | ||
Simon Kelley <[email protected]> | ||
Stéphane Witzmann <[email protected]> | ||
|
@@ -100,6 +101,7 @@ Tejun Heo <[email protected]> | |
Thomas Graf <[email protected]> | ||
Tony Luck <[email protected]> | ||
Tsuneo Yoshioka <[email protected]> | ||
Uwe Kleine-König <[email protected]> | ||
Uwe Kleine-König <[email protected]> | ||
Uwe Kleine-König <[email protected]> | ||
Uwe Kleine-König <[email protected]> | ||
Valdis Kletnieks <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2166,7 +2166,6 @@ D: Initial implementation of VC's, pty's and select() | |
|
||
N: Pavel Machek | ||
E: [email protected] | ||
E: [email protected] | ||
D: Softcursor for vga, hypertech cdrom support, vcsa bugfix, nbd | ||
D: sun4/330 port, capabilities for elf, speedup for rm on ext2, USB, | ||
D: work on suspend-to-ram/disk, killing duplicates from ioctl32 | ||
|
@@ -3739,7 +3738,7 @@ S: 93149 Nittenau | |
S: Germany | ||
|
||
N: Gertjan van Wingerde | ||
E: gwingerde@home.nl | ||
E: gwingerde@gmail.com | ||
D: Ralink rt2x00 WLAN driver | ||
D: Minix V2 file-system | ||
D: Misc fixes | ||
|
@@ -3786,14 +3785,11 @@ S: The Netherlands | |
|
||
N: David Woodhouse | ||
E: [email protected] | ||
D: ARCnet stuff, Applicom board driver, SO_BINDTODEVICE, | ||
D: some Alpha platform porting from 2.0, Memory Technology Devices, | ||
D: Acquire watchdog timer, PC speaker driver maintenance, | ||
D: JFFS2 file system, Memory Technology Device subsystem, | ||
D: various other stuff that annoyed me by not working. | ||
S: c/o Red Hat Engineering | ||
S: Rustat House | ||
S: 60 Clifton Road | ||
S: Cambridge. CB1 7EG | ||
S: c/o Intel Corporation | ||
S: Pipers Way | ||
S: Swindon. SN3 1RJ | ||
S: England | ||
|
||
N: Chris Wright | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,46 @@ | ||
What: /sys/bus/pci/drivers/.../bind | ||
Date: December 2003 | ||
Contact: [email protected] | ||
Description: | ||
Writing a device location to this file will cause | ||
the driver to attempt to bind to the device found at | ||
this location. This is useful for overriding default | ||
bindings. The format for the location is: DDDD:BB:DD.F. | ||
That is Domain:Bus:Device.Function and is the same as | ||
found in /sys/bus/pci/devices/. For example: | ||
# echo 0000:00:19.0 > /sys/bus/pci/drivers/foo/bind | ||
(Note: kernels before 2.6.28 may require echo -n). | ||
|
||
What: /sys/bus/pci/drivers/.../unbind | ||
Date: December 2003 | ||
Contact: [email protected] | ||
Description: | ||
Writing a device location to this file will cause the | ||
driver to attempt to unbind from the device found at | ||
this location. This may be useful when overriding default | ||
bindings. The format for the location is: DDDD:BB:DD.F. | ||
That is Domain:Bus:Device.Function and is the same as | ||
found in /sys/bus/pci/devices/. For example: | ||
# echo 0000:00:19.0 > /sys/bus/pci/drivers/foo/unbind | ||
(Note: kernels before 2.6.28 may require echo -n). | ||
|
||
What: /sys/bus/pci/drivers/.../new_id | ||
Date: December 2003 | ||
Contact: [email protected] | ||
Description: | ||
Writing a device ID to this file will attempt to | ||
dynamically add a new device ID to a PCI device driver. | ||
This may allow the driver to support more hardware than | ||
was included in the driver's static device ID support | ||
table at compile time. The format for the device ID is: | ||
VVVV DDDD SVVV SDDD CCCC MMMM PPPP. That is Vendor ID, | ||
Device ID, Subsystem Vendor ID, Subsystem Device ID, | ||
Class, Class Mask, and Private Driver Data. The Vendor ID | ||
and Device ID fields are required, the rest are optional. | ||
Upon successfully adding an ID, the driver will probe | ||
for the device and attempt to bind to it. For example: | ||
# echo "8086 10f5" > /sys/bus/pci/drivers/foo/new_id | ||
|
||
What: /sys/bus/pci/devices/.../vpd | ||
Date: February 2008 | ||
Contact: Ben Hutchings <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.