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 git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: drivers/net/wireless/ath/ath9k/Kconfig drivers/net/xen-netback/netback.c net/batman-adv/bat_iv_ogm.c net/wireless/nl80211.c The ath9k Kconfig conflict was a change of a Kconfig option name right next to the deletion of another option. The xen-netback conflict was overlapping changes involving the handling of the notify list in xen_netbk_rx_action(). Batman conflict resolution provided by Antonio Quartulli, basically keep everything in both conflict hunks. The nl80211 conflict is a little more involved. In 'net' we added a dynamic memory allocation to nl80211_dump_wiphy() to fix a race that Linus reported. Meanwhile in 'net-next' the handlers were converted to use pre and post doit handlers which use a flag to determine whether to hold the RTNL mutex around the operation. However, the dump handlers to not use this logic. Instead they have to explicitly do the locking. There were apparent bugs in the conversion of nl80211_dump_wiphy() in that we were not dropping the RTNL mutex in all the return paths, and it seems we very much should be doing so. So I fixed that whilst handling the overlapping changes. To simplify the initial returns, I take the RTNL mutex after we try to allocate 'tb'. Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Showing
369 changed files
with
8,019 additions
and
2,198 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
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
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 |
---|---|---|
|
@@ -2895,8 +2895,8 @@ F: drivers/media/dvb-frontends/ec100* | |
|
||
ECRYPT FILE SYSTEM | ||
M: Tyler Hicks <[email protected]> | ||
M: Dustin Kirkland <[email protected]> | ||
L: [email protected] | ||
W: http://ecryptfs.org | ||
W: https://launchpad.net/ecryptfs | ||
S: Supported | ||
F: Documentation/filesystems/ecryptfs.txt | ||
|
@@ -4453,6 +4453,16 @@ S: Maintained | |
F: drivers/scsi/*iscsi* | ||
F: include/scsi/*iscsi* | ||
|
||
ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR | ||
M: Or Gerlitz <[email protected]> | ||
M: Roi Dayan <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
W: http://www.openfabrics.org | ||
W: www.open-iscsi.org | ||
Q: http://patchwork.kernel.org/project/linux-rdma/list/ | ||
F: drivers/infiniband/ulp/iser | ||
|
||
ISDN SUBSYSTEM | ||
M: Karsten Keil <[email protected]> | ||
L: [email protected] (subscribers-only) | ||
|
@@ -5761,7 +5771,7 @@ M: Matthew Wilcox <[email protected]> | |
L: [email protected] | ||
T: git git://git.infradead.org/users/willy/linux-nvme.git | ||
S: Supported | ||
F: drivers/block/nvme.c | ||
F: drivers/block/nvme* | ||
F: include/linux/nvme.h | ||
|
||
OMAP SUPPORT | ||
|
@@ -7619,7 +7629,7 @@ F: drivers/clk/spear/ | |
SPI SUBSYSTEM | ||
M: Mark Brown <[email protected]> | ||
M: Grant Likely <[email protected]> | ||
L: [email protected] | ||
L: [email protected] | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git | ||
Q: http://patchwork.kernel.org/project/spi-devel-general/list/ | ||
S: Maintained | ||
|
@@ -8999,7 +9009,7 @@ S: Maintained | |
F: drivers/net/wireless/wl3501* | ||
|
||
WM97XX TOUCHSCREEN DRIVERS | ||
M: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
M: Mark Brown <broonie@kernel.org> | ||
M: Liam Girdwood <[email protected]> | ||
L: [email protected] | ||
T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | ||
|
@@ -9009,7 +9019,6 @@ F: drivers/input/touchscreen/*wm97* | |
F: include/linux/wm97xx.h | ||
|
||
WOLFSON MICROELECTRONICS DRIVERS | ||
M: Mark Brown <[email protected]> | ||
L: [email protected] | ||
T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc | ||
T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus | ||
|
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
#include <asm/mach-types.h> | ||
|
||
.section ".start", "ax" | ||
.arch armv4 | ||
|
||
__SA1100_start: | ||
|
||
|
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 |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
|
||
.section ".start", "ax" | ||
|
||
.arch armv4 | ||
b __beginning | ||
|
||
__ofw_data: .long 0 @ the number of memory blocks | ||
|
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
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.