Skip to content

Commit 1806c13

Browse files
committed
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
xdp_umem.c had overlapping changes between the 64-bit math fix for the calculation of npgs and the removal of the zerocopy memory type which got rid of the chunk_size_nohdr member. The mlx5 Kconfig conflict is a case where we just take the net-next copy of the Kconfig entry dependency as it takes on the ESWITCH dependency by one level of indirection which is what the 'net' conflicting change is trying to ensure. Signed-off-by: David S. Miller <[email protected]>
2 parents 1079a34 + bdc48fa commit 1806c13

File tree

173 files changed

+1496
-835
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+1496
-835
lines changed

Documentation/process/coding-style.rst

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,20 @@ Get a decent editor and don't leave whitespace at the end of lines.
8484
Coding style is all about readability and maintainability using commonly
8585
available tools.
8686

87-
The limit on the length of lines is 80 columns and this is a strongly
88-
preferred limit.
89-
90-
Statements longer than 80 columns will be broken into sensible chunks, unless
91-
exceeding 80 columns significantly increases readability and does not hide
92-
information. Descendants are always substantially shorter than the parent and
93-
are placed substantially to the right. The same applies to function headers
94-
with a long argument list. However, never break user-visible strings such as
95-
printk messages, because that breaks the ability to grep for them.
87+
The preferred limit on the length of a single line is 80 columns.
88+
89+
Statements longer than 80 columns should be broken into sensible chunks,
90+
unless exceeding 80 columns significantly increases readability and does
91+
not hide information.
92+
93+
Descendants are always substantially shorter than the parent and are
94+
are placed substantially to the right. A very commonly used style
95+
is to align descendants to a function open parenthesis.
96+
97+
These same rules are applied to function headers with a long argument list.
98+
99+
However, never break user-visible strings such as printk messages because
100+
that breaks the ability to grep for them.
96101

97102

98103
3) Placing Braces and Spaces

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
VERSION = 5
33
PATCHLEVEL = 7
44
SUBLEVEL = 0
5-
EXTRAVERSION = -rc6
5+
EXTRAVERSION = -rc7
66
NAME = Kleptomaniac Octopus
77

88
# *DOCUMENTATION*

arch/arm/boot/compressed/vmlinux.lds.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ SECTIONS
4242
}
4343
.table : ALIGN(4) {
4444
_table_start = .;
45-
LONG(ZIMAGE_MAGIC(2))
45+
LONG(ZIMAGE_MAGIC(4))
4646
LONG(ZIMAGE_MAGIC(0x5a534c4b))
4747
LONG(ZIMAGE_MAGIC(__piggy_size_addr - _start))
4848
LONG(ZIMAGE_MAGIC(_kernel_bss_size))

arch/arm/boot/dts/am437x-gp-evm.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@
943943

944944
&cpsw_emac0 {
945945
phy-handle = <&ethphy0>;
946-
phy-mode = "rgmii";
946+
phy-mode = "rgmii-rxid";
947947
};
948948

949949
&elm {

arch/arm/boot/dts/am437x-idk-evm.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@
504504

505505
&cpsw_emac0 {
506506
phy-handle = <&ethphy0>;
507-
phy-mode = "rgmii";
507+
phy-mode = "rgmii-rxid";
508508
};
509509

510510
&rtc {

arch/arm/boot/dts/am437x-sk-evm.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -833,13 +833,13 @@
833833

834834
&cpsw_emac0 {
835835
phy-handle = <&ethphy0>;
836-
phy-mode = "rgmii";
836+
phy-mode = "rgmii-rxid";
837837
dual_emac_res_vlan = <1>;
838838
};
839839

840840
&cpsw_emac1 {
841841
phy-handle = <&ethphy1>;
842-
phy-mode = "rgmii";
842+
phy-mode = "rgmii-rxid";
843843
dual_emac_res_vlan = <2>;
844844
};
845845

arch/arm/boot/dts/am571x-idk.dts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,13 +190,13 @@
190190

191191
&cpsw_port1 {
192192
phy-handle = <&ethphy0_sw>;
193-
phy-mode = "rgmii";
193+
phy-mode = "rgmii-rxid";
194194
ti,dual-emac-pvid = <1>;
195195
};
196196

197197
&cpsw_port2 {
198198
phy-handle = <&ethphy1_sw>;
199-
phy-mode = "rgmii";
199+
phy-mode = "rgmii-rxid";
200200
ti,dual-emac-pvid = <2>;
201201
};
202202

arch/arm/boot/dts/am57xx-beagle-x15-common.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,13 +433,13 @@
433433

434434
&cpsw_emac0 {
435435
phy-handle = <&phy0>;
436-
phy-mode = "rgmii";
436+
phy-mode = "rgmii-rxid";
437437
dual_emac_res_vlan = <1>;
438438
};
439439

440440
&cpsw_emac1 {
441441
phy-handle = <&phy1>;
442-
phy-mode = "rgmii";
442+
phy-mode = "rgmii-rxid";
443443
dual_emac_res_vlan = <2>;
444444
};
445445

arch/arm/boot/dts/am57xx-idk-common.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,13 +408,13 @@
408408

409409
&cpsw_emac0 {
410410
phy-handle = <&ethphy0>;
411-
phy-mode = "rgmii";
411+
phy-mode = "rgmii-rxid";
412412
dual_emac_res_vlan = <1>;
413413
};
414414

415415
&cpsw_emac1 {
416416
phy-handle = <&ethphy1>;
417-
phy-mode = "rgmii";
417+
phy-mode = "rgmii-rxid";
418418
dual_emac_res_vlan = <2>;
419419
};
420420

arch/arm/boot/dts/bcm-hr2.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,23 +75,23 @@
7575
timer@20200 {
7676
compatible = "arm,cortex-a9-global-timer";
7777
reg = <0x20200 0x100>;
78-
interrupts = <GIC_PPI 11 IRQ_TYPE_LEVEL_HIGH>;
78+
interrupts = <GIC_PPI 11 IRQ_TYPE_EDGE_RISING>;
7979
clocks = <&periph_clk>;
8080
};
8181

8282
twd-timer@20600 {
8383
compatible = "arm,cortex-a9-twd-timer";
8484
reg = <0x20600 0x20>;
8585
interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(1) |
86-
IRQ_TYPE_LEVEL_HIGH)>;
86+
IRQ_TYPE_EDGE_RISING)>;
8787
clocks = <&periph_clk>;
8888
};
8989

9090
twd-watchdog@20620 {
9191
compatible = "arm,cortex-a9-twd-wdt";
9292
reg = <0x20620 0x20>;
9393
interrupts = <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(1) |
94-
IRQ_TYPE_LEVEL_HIGH)>;
94+
IRQ_TYPE_EDGE_RISING)>;
9595
clocks = <&periph_clk>;
9696
};
9797

0 commit comments

Comments
 (0)