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/netdev/net
Pull networking fixes from David Miller: 1) Fix type of bind option flag in af_xdp, from Baruch Siach. 2) Fix use after free in bpf_xdp_link_release(), from Xuan Zhao. 3) PM refcnt imbakance in r8152, from Takashi Iwai. 4) Sign extension ug in liquidio, from Colin Ian King. 5) Mising range check in s390 bpf jit, from Colin Ian King. 6) Uninit value in caif_seqpkt_sendmsg(), from Ziyong Xuan. 7) Fix skb page recycling race, from Ilias Apalodimas. 8) Fix memory leak in tcindex_partial_destroy_work, from Pave Skripkin. 9) netrom timer sk refcnt issues, from Nguyen Dinh Phi. 10) Fix data races aroun tcp's tfo_active_disable_stamp, from Eric Dumazet. 11) act_skbmod should only operate on ethernet packets, from Peilin Ye. 12) Fix slab out-of-bpunds in fib6_nh_flush_exceptions(),, from Psolo Abeni. 13) Fix sparx5 dependencies, from Yajun Deng. * git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (74 commits) dpaa2-switch: seed the buffer pool after allocating the swp net: sched: cls_api: Fix the the wrong parameter net: sparx5: fix unmet dependencies warning net: dsa: tag_ksz: dont let the hardware process the layer 4 checksum net: dsa: ensure linearized SKBs in case of tail taggers ravb: Remove extra TAB ravb: Fix a typo in comment net: dsa: sja1105: make VID 4095 a bridge VLAN too tcp: disable TFO blackhole logic by default sctp: do not update transport pathmtu if SPP_PMTUD_ENABLE is not set net: ixp46x: fix ptp build failure ibmvnic: Remove the proper scrq flush selftests: net: add ESP-in-UDP PMTU test udp: check encap socket in __udp_lib_err sctp: update active_key for asoc when old key is being replaced r8169: Avoid duplicate sysfs entry creation error ixgbe: Fix packet corruption due to missing DMA sync Revert "qed: fix possible unpaired spin_{un}lock_bh in _qed_mcp_cmd_and_union()" ipv6: fix another slab-out-of-bounds in fib6_nh_flush_exceptions fsl/fman: Add fibre support ...
- Loading branch information
Showing
77 changed files
with
1,217 additions
and
269 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/net/nxp,dwmac-imx.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: NXP i.MX8 DWMAC glue layer Device Tree Bindings | ||
|
||
maintainers: | ||
- Joakim Zhang <[email protected]> | ||
|
||
# We need a select here so we don't match all nodes with 'snps,dwmac' | ||
select: | ||
properties: | ||
compatible: | ||
contains: | ||
enum: | ||
- nxp,imx8mp-dwmac-eqos | ||
- nxp,imx8dxl-dwmac-eqos | ||
required: | ||
- compatible | ||
|
||
allOf: | ||
- $ref: "snps,dwmac.yaml#" | ||
|
||
properties: | ||
compatible: | ||
oneOf: | ||
- items: | ||
- enum: | ||
- nxp,imx8mp-dwmac-eqos | ||
- nxp,imx8dxl-dwmac-eqos | ||
- const: snps,dwmac-5.10a | ||
|
||
clocks: | ||
minItems: 3 | ||
maxItems: 5 | ||
items: | ||
- description: MAC host clock | ||
- description: MAC apb clock | ||
- description: MAC timer clock | ||
- description: MAC RGMII TX clock | ||
- description: EQOS MEM clock | ||
|
||
clock-names: | ||
minItems: 3 | ||
maxItems: 5 | ||
contains: | ||
enum: | ||
- stmmaceth | ||
- pclk | ||
- ptp_ref | ||
- tx | ||
- mem | ||
|
||
intf_mode: | ||
$ref: /schemas/types.yaml#/definitions/phandle-array | ||
description: | ||
Should be phandle/offset pair. The phandle to the syscon node which | ||
encompases the GPR register, and the offset of the GPR register. | ||
|
||
snps,rmii_refclk_ext: | ||
$ref: /schemas/types.yaml#/definitions/flag | ||
description: | ||
To select RMII reference clock from external. | ||
|
||
required: | ||
- compatible | ||
- clocks | ||
- clock-names | ||
|
||
unevaluatedProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/interrupt-controller/arm-gic.h> | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
#include <dt-bindings/clock/imx8mp-clock.h> | ||
eqos: ethernet@30bf0000 { | ||
compatible = "nxp,imx8mp-dwmac-eqos","snps,dwmac-5.10a"; | ||
reg = <0x30bf0000 0x10000>; | ||
interrupts = <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>, | ||
<GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>; | ||
interrupt-names = "macirq", "eth_wake_irq"; | ||
clocks = <&clk IMX8MP_CLK_ENET_QOS_ROOT>, | ||
<&clk IMX8MP_CLK_QOS_ENET_ROOT>, | ||
<&clk IMX8MP_CLK_ENET_QOS_TIMER>, | ||
<&clk IMX8MP_CLK_ENET_QOS>; | ||
clock-names = "stmmaceth", "pclk", "ptp_ref", "tx"; | ||
phy-mode = "rgmii"; | ||
status = "disabled"; | ||
}; |
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 |
---|---|---|
|
@@ -11758,6 +11758,7 @@ F: drivers/char/hw_random/mtk-rng.c | |
MEDIATEK SWITCH DRIVER | ||
M: Sean Wang <[email protected]> | ||
M: Landen Chao <[email protected]> | ||
M: DENG Qingfang <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: drivers/net/dsa/mt7530.* | ||
|
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.