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-next
Pull networking merge from David Miller: "1) Move ixgbe driver over to purely page based buffering on receive. From Alexander Duyck. 2) Add receive packet steering support to e1000e, from Bruce Allan. 3) Convert TCP MD5 support over to RCU, from Eric Dumazet. 4) Reduce cpu usage in handling out-of-order TCP packets on modern systems, also from Eric Dumazet. 5) Support the IP{,V6}_UNICAST_IF socket options, making the wine folks happy, from Erich Hoover. 6) Support VLAN trunking from guests in hyperv driver, from Haiyang Zhang. 7) Support byte-queue-limtis in r8169, from Igor Maravic. 8) Outline code intended for IP_RECVTOS in IP_PKTOPTIONS existed but was never properly implemented, Jiri Benc fixed that. 9) 64-bit statistics support in r8169 and 8139too, from Junchang Wang. 10) Support kernel side dump filtering by ctmark in netfilter ctnetlink, from Pablo Neira Ayuso. 11) Support byte-queue-limits in gianfar driver, from Paul Gortmaker. 12) Add new peek socket options to assist with socket migration, from Pavel Emelyanov. 13) Add sch_plug packet scheduler whose queue is controlled by userland daemons using explicit freeze and release commands. From Shriram Rajagopalan. 14) Fix FCOE checksum offload handling on transmit, from Yi Zou." * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next: (1846 commits) Fix pppol2tp getsockname() Remove printk from rds_sendmsg ipv6: fix incorrent ipv6 ipsec packet fragment cpsw: Hook up default ndo_change_mtu. net: qmi_wwan: fix build error due to cdc-wdm dependecy netdev: driver: ethernet: Add TI CPSW driver netdev: driver: ethernet: add cpsw address lookup engine support phy: add am79c874 PHY support mlx4_core: fix race on comm channel bonding: send igmp report for its master fs_enet: Add MPC5125 FEC support and PHY interface selection net: bpf_jit: fix BPF_S_LDX_B_MSH compilation net: update the usage of CHECKSUM_UNNECESSARY fcoe: use CHECKSUM_UNNECESSARY instead of CHECKSUM_PARTIAL on tx net: do not do gso for CHECKSUM_UNNECESSARY in netif_needs_gso ixgbe: Fix issues with SR-IOV loopback when flow control is disabled net/hyperv: Fix the code handling tx busy ixgbe: fix namespace issues when FCoE/DCB is not enabled rtlwifi: Remove unused ETH_ADDR_LEN defines igbvf: Use ETH_ALEN ... Fix up fairly trivial conflicts in drivers/isdn/gigaset/interface.c and drivers/net/usb/{Kconfig,qmi_wwan.c} as per David.
- Loading branch information
Showing
1,687 changed files
with
126,010 additions
and
98,971 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 |
---|---|---|
|
@@ -65,6 +65,13 @@ Description: | |
Defines the penalty which will be applied to an | ||
originator message's tq-field on every hop. | ||
|
||
What: /sys/class/net/<mesh_iface>/mesh/routing_algo | ||
Date: Dec 2011 | ||
Contact: Marek Lindner <[email protected]> | ||
Description: | ||
Defines the routing procotol this mesh instance | ||
uses to find the optimal paths through the mesh. | ||
|
||
What: /sys/class/net/<mesh_iface>/mesh/vis_mode | ||
Date: May 2010 | ||
Contact: Marek Lindner <[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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
* STMicroelectronics 10/100/1000 Ethernet driver (GMAC) | ||
|
||
Required properties: | ||
- compatible: Should be "st,spear600-gmac" | ||
- reg: Address and length of the register set for the device | ||
- interrupt-parent: Should be the phandle for the interrupt controller | ||
that services interrupts for this device | ||
- interrupts: Should contain the STMMAC interrupts | ||
- interrupt-names: Should contain the interrupt names "macirq" | ||
"eth_wake_irq" if this interrupt is supported in the "interrupts" | ||
property | ||
- phy-mode: String, operation mode of the PHY interface. | ||
Supported values are: "mii", "rmii", "gmii", "rgmii". | ||
|
||
Optional properties: | ||
- mac-address: 6 bytes, mac address | ||
|
||
Examples: | ||
|
||
gmac0: ethernet@e0800000 { | ||
compatible = "st,spear600-gmac"; | ||
reg = <0xe0800000 0x8000>; | ||
interrupt-parent = <&vic1>; | ||
interrupts = <24 23>; | ||
interrupt-names = "macirq", "eth_wake_irq"; | ||
mac-address = [000000000000]; /* Filled in by U-Boot */ | ||
phy-mode = "gmii"; | ||
}; |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# | ||
# This outlines the Linux authentication/association and | ||
# deauthentication/disassociation flows. | ||
# | ||
# This can be converted into a diagram using the service | ||
# at http://www.websequencediagrams.com/ | ||
# | ||
|
||
participant userspace | ||
participant mac80211 | ||
participant driver | ||
|
||
alt authentication needed (not FT) | ||
userspace->mac80211: authenticate | ||
|
||
alt authenticated/authenticating already | ||
mac80211->driver: sta_state(AP, not-exists) | ||
mac80211->driver: bss_info_changed(clear BSSID) | ||
else associated | ||
note over mac80211,driver | ||
like deauth/disassoc, without sending the | ||
BA session stop & deauth/disassoc frames | ||
end note | ||
end | ||
|
||
mac80211->driver: config(channel, non-HT) | ||
mac80211->driver: bss_info_changed(set BSSID, basic rate bitmap) | ||
mac80211->driver: sta_state(AP, exists) | ||
|
||
alt no probe request data known | ||
mac80211->driver: TX directed probe request | ||
driver->mac80211: RX probe response | ||
end | ||
|
||
mac80211->driver: TX auth frame | ||
driver->mac80211: RX auth frame | ||
|
||
alt WEP shared key auth | ||
mac80211->driver: TX auth frame | ||
driver->mac80211: RX auth frame | ||
end | ||
|
||
mac80211->driver: sta_state(AP, authenticated) | ||
mac80211->userspace: RX auth frame | ||
|
||
end | ||
|
||
userspace->mac80211: associate | ||
alt authenticated or associated | ||
note over mac80211,driver: cleanup like for authenticate | ||
end | ||
|
||
alt not previously authenticated (FT) | ||
mac80211->driver: config(channel, non-HT) | ||
mac80211->driver: bss_info_changed(set BSSID, basic rate bitmap) | ||
mac80211->driver: sta_state(AP, exists) | ||
mac80211->driver: sta_state(AP, authenticated) | ||
end | ||
mac80211->driver: TX assoc | ||
driver->mac80211: RX assoc response | ||
note over mac80211: init rate control | ||
mac80211->driver: sta_state(AP, associated) | ||
|
||
alt not using WPA | ||
mac80211->driver: sta_state(AP, authorized) | ||
end | ||
|
||
mac80211->driver: set up QoS parameters | ||
|
||
alt is HT channel | ||
mac80211->driver: config(channel, HT params) | ||
end | ||
|
||
mac80211->driver: bss_info_changed(QoS, HT, associated with AID) | ||
mac80211->userspace: associated | ||
|
||
note left of userspace: associated now | ||
|
||
alt using WPA | ||
note over userspace | ||
do 4-way-handshake | ||
(data frames) | ||
end note | ||
userspace->mac80211: authorized | ||
mac80211->driver: sta_state(AP, authorized) | ||
end | ||
|
||
userspace->mac80211: deauthenticate/disassociate | ||
mac80211->driver: stop BA sessions | ||
mac80211->driver: TX deauth/disassoc | ||
mac80211->driver: flush frames | ||
mac80211->driver: sta_state(AP,associated) | ||
mac80211->driver: sta_state(AP,authenticated) | ||
mac80211->driver: sta_state(AP,exists) | ||
mac80211->driver: sta_state(AP,not-exists) | ||
mac80211->driver: turn off powersave | ||
mac80211->driver: bss_info_changed(clear BSSID, not associated, no QoS, ...) | ||
mac80211->driver: config(non-HT channel type) | ||
mac80211->userspace: disconnected |
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 |
---|---|---|
|
@@ -1405,7 +1405,7 @@ F: net/ax25/ | |
B43 WIRELESS DRIVER | ||
M: Stefano Brivio <[email protected]> | ||
L: [email protected] | ||
L: [email protected] (moderated for non-subscribers) | ||
L: [email protected] | ||
W: http://linuxwireless.org/en/users/Drivers/b43 | ||
S: Maintained | ||
F: drivers/net/wireless/b43/ | ||
|
@@ -1414,6 +1414,7 @@ B43LEGACY WIRELESS DRIVER | |
M: Larry Finger <[email protected]> | ||
M: Stefano Brivio <[email protected]> | ||
L: [email protected] | ||
L: [email protected] | ||
W: http://linuxwireless.org/en/users/Drivers/b43 | ||
S: Maintained | ||
F: drivers/net/wireless/b43legacy/ | ||
|
@@ -1571,7 +1572,6 @@ F: drivers/net/ethernet/broadcom/tg3.* | |
|
||
BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER | ||
M: Brett Rudley <[email protected]> | ||
M: Henry Ptasinski <[email protected]> | ||
M: Roland Vossen <[email protected]> | ||
M: Arend van Spriel <[email protected]> | ||
M: Franky (Zhenhui) Lin <[email protected]> | ||
|
@@ -1809,7 +1809,8 @@ F: Documentation/zh_CN/ | |
CISCO VIC ETHERNET NIC DRIVER | ||
M: Christian Benvenuti <[email protected]> | ||
M: Roopa Prabhu <[email protected]> | ||
M: David Wang <[email protected]> | ||
M: Neel Patel <[email protected]> | ||
M: Nishank Trivedi <[email protected]> | ||
S: Supported | ||
F: drivers/net/ethernet/cisco/enic/ | ||
|
||
|
@@ -4937,8 +4938,6 @@ F: fs/ocfs2/ | |
|
||
ORINOCO DRIVER | ||
L: [email protected] | ||
L: [email protected] | ||
L: [email protected] | ||
W: http://linuxwireless.org/en/users/Drivers/orinoco | ||
W: http://www.nongnu.org/orinoco/ | ||
S: Orphan | ||
|
@@ -5345,6 +5344,17 @@ L: [email protected] | |
S: Maintained | ||
F: drivers/block/ps3vram.c | ||
|
||
PTP HARDWARE CLOCK SUPPORT | ||
M: Richard Cochran <[email protected]> | ||
S: Maintained | ||
W: http://linuxptp.sourceforge.net/ | ||
F: Documentation/ABI/testing/sysfs-ptp | ||
F: Documentation/ptp/* | ||
F: drivers/net/gianfar_ptp.c | ||
F: drivers/net/phy/dp83640* | ||
F: drivers/ptp/* | ||
F: include/linux/ptp_cl* | ||
|
||
PTRACE SUPPORT | ||
M: Roland McGrath <[email protected]> | ||
M: Oleg Nesterov <[email protected]> | ||
|
@@ -7501,6 +7511,12 @@ S: Supported | |
F: Documentation/filesystems/xfs.txt | ||
F: fs/xfs/ | ||
|
||
XILINX AXI ETHERNET DRIVER | ||
M: Ariane Keller <[email protected]> | ||
M: Daniel Borkmann <[email protected]> | ||
S: Maintained | ||
F: drivers/net/ethernet/xilinx/xilinx_axienet* | ||
|
||
XILINX SYSTEMACE DRIVER | ||
M: Grant Likely <[email protected]> | ||
W: http://www.secretlab.ca/ | ||
|
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.