forked from beagleboard/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 branch 'percpu-for-linus' into percpu-for-next
Conflicts: arch/sparc/kernel/smp_64.c arch/x86/kernel/cpu/perf_counter.c arch/x86/kernel/setup_percpu.c drivers/cpufreq/cpufreq_ondemand.c mm/percpu.c Conflicts in core and arch percpu codes are mostly from commit ed78e1e078dd44249f88b1dd8c76dafb39567161 which substituted many num_possible_cpus() with nr_cpu_ids. As for-next branch has moved all the first chunk allocators into mm/percpu.c, the changes are moved from arch code to mm/percpu.c. Signed-off-by: Tejun Heo <[email protected]>
- Loading branch information
Showing
1,985 changed files
with
49,305 additions
and
28,005 deletions.
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 |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
*.gz | ||
*.lzma | ||
*.patch | ||
*.gcno | ||
|
||
# | ||
# Top-level generic files | ||
|
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 |
---|---|---|
|
@@ -1856,7 +1856,7 @@ E: [email protected] | |
D: The Linux Support Team Erlangen | ||
|
||
N: Andreas Koensgen | ||
E: ajk@iehk.rwth-aachen.de | ||
E: ajk@comnets.uni-bremen.de | ||
D: 6pack driver for AX.25 | ||
|
||
N: Harald Koerfgen | ||
|
@@ -2006,6 +2006,9 @@ E: [email protected] | |
D: Soundblaster driver fixes, ISAPnP quirk | ||
S: California, USA | ||
|
||
N: Jonathan Layes | ||
D: ARPD support | ||
|
||
N: Tom Lees | ||
E: [email protected] | ||
W: http://www.lpsg.demon.co.uk/ | ||
|
@@ -3802,6 +3805,9 @@ S: van Bronckhorststraat 12 | |
S: 2612 XV Delft | ||
S: The Netherlands | ||
|
||
N: Thomas Woller | ||
D: CS461x Cirrus Logic sound driver | ||
|
||
N: David Woodhouse | ||
E: [email protected] | ||
D: JFFS2 file system, Memory Technology Device subsystem, | ||
|
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 |
---|---|---|
|
@@ -94,28 +94,37 @@ What: /sys/block/<disk>/queue/physical_block_size | |
Date: May 2009 | ||
Contact: Martin K. Petersen <[email protected]> | ||
Description: | ||
This is the smallest unit the storage device can write | ||
without resorting to read-modify-write operation. It is | ||
usually the same as the logical block size but may be | ||
bigger. One example is SATA drives with 4KB sectors | ||
that expose a 512-byte logical block size to the | ||
operating system. | ||
This is the smallest unit a physical storage device can | ||
write atomically. It is usually the same as the logical | ||
block size but may be bigger. One example is SATA | ||
drives with 4KB sectors that expose a 512-byte logical | ||
block size to the operating system. For stacked block | ||
devices the physical_block_size variable contains the | ||
maximum physical_block_size of the component devices. | ||
|
||
What: /sys/block/<disk>/queue/minimum_io_size | ||
Date: April 2009 | ||
Contact: Martin K. Petersen <[email protected]> | ||
Description: | ||
Storage devices may report a preferred minimum I/O size, | ||
which is the smallest request the device can perform | ||
without incurring a read-modify-write penalty. For disk | ||
drives this is often the physical block size. For RAID | ||
arrays it is often the stripe chunk size. | ||
Storage devices may report a granularity or preferred | ||
minimum I/O size which is the smallest request the | ||
device can perform without incurring a performance | ||
penalty. For disk drives this is often the physical | ||
block size. For RAID arrays it is often the stripe | ||
chunk size. A properly aligned multiple of | ||
minimum_io_size is the preferred request size for | ||
workloads where a high number of I/O operations is | ||
desired. | ||
|
||
What: /sys/block/<disk>/queue/optimal_io_size | ||
Date: April 2009 | ||
Contact: Martin K. Petersen <[email protected]> | ||
Description: | ||
Storage devices may report an optimal I/O size, which is | ||
the device's preferred unit of receiving I/O. This is | ||
rarely reported for disk drives. For RAID devices it is | ||
usually the stripe width or the internal block size. | ||
the device's preferred unit for sustained I/O. This is | ||
rarely reported for disk drives. For RAID arrays it is | ||
usually the stripe width or the internal track size. A | ||
properly aligned multiple of optimal_io_size is the | ||
preferred request size for workloads where sustained | ||
throughput is desired. If no optimal I/O size is | ||
reported this file contains 0. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* cn_test.c | ||
* | ||
* 2004-2005 Copyright (c) Evgeniy Polyakov <[email protected]> | ||
* 2004+ Copyright (c) Evgeniy Polyakov <[email protected]> | ||
* All rights reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
|
@@ -194,5 +194,5 @@ module_init(cn_test_init); | |
module_exit(cn_test_fini); | ||
|
||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Evgeniy Polyakov <[email protected]>"); | ||
MODULE_AUTHOR("Evgeniy Polyakov <[email protected]>"); | ||
MODULE_DESCRIPTION("Connector's test module"); |
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,7 +1,7 @@ | ||
/* | ||
* ucon.c | ||
* | ||
* Copyright (c) 2004+ Evgeniy Polyakov <[email protected]> | ||
* Copyright (c) 2004+ Evgeniy Polyakov <[email protected]> | ||
* | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -458,3 +458,13 @@ Why: Remove the old legacy 32bit machine check code. This has been | |
but the old version has been kept around for easier testing. Note this | ||
doesn't impact the old P5 and WinChip machine check handlers. | ||
Who: Andi Kleen <[email protected]> | ||
|
||
---------------------------- | ||
|
||
What: lock_policy_rwsem_* and unlock_policy_rwsem_* will not be | ||
exported interface anymore. | ||
When: 2.6.33 | ||
Why: cpu_policy_rwsem has a new cleaner definition making it local to | ||
cpufreq core and contained inside cpufreq.c. Other dependent | ||
drivers should not use it in order to safely avoid lockdep issues. | ||
Who: Venkatesh Pallipadi <[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
Oops, something went wrong.