Skip to content

Commit 5c07488

Browse files
committed
Merge 5.0-rc6 into char-misc-next
We need the char-misc fixes in here as well. Signed-off-by: Greg Kroah-Hartman <[email protected]>
2 parents b5390f4 + d139371 commit 5c07488

File tree

566 files changed

+5560
-2185
lines changed

Some content is hidden

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

566 files changed

+5560
-2185
lines changed

Documentation/ABI/stable/sysfs-driver-mlxreg-io

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ What: /sys/devices/platform/mlxplat/mlxreg-io/hwmon/hwmon*/
2424
cpld3_version
2525

2626
Date: November 2018
27-
KernelVersion: 4.21
27+
KernelVersion: 5.0
2828
Contact: Vadim Pasternak <vadimpmellanox.com>
2929
Description: These files show with which CPLD versions have been burned
3030
on LED board.
@@ -35,7 +35,7 @@ What: /sys/devices/platform/mlxplat/mlxreg-io/hwmon/hwmon*/
3535
jtag_enable
3636

3737
Date: November 2018
38-
KernelVersion: 4.21
38+
KernelVersion: 5.0
3939
Contact: Vadim Pasternak <vadimpmellanox.com>
4040
Description: These files enable and disable the access to the JTAG domain.
4141
By default access to the JTAG domain is disabled.
@@ -105,7 +105,7 @@ What: /sys/devices/platform/mlxplat/mlxreg-io/hwmon/hwmon*/
105105
reset_voltmon_upgrade_fail
106106

107107
Date: November 2018
108-
KernelVersion: 4.21
108+
KernelVersion: 5.0
109109
Contact: Vadim Pasternak <vadimpmellanox.com>
110110
Description: These files show the system reset cause, as following: ComEx
111111
power fail, reset from ComEx, system platform reset, reset

Documentation/admin-guide/kernel-parameters.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1696,12 +1696,11 @@
16961696
By default, super page will be supported if Intel IOMMU
16971697
has the capability. With this option, super page will
16981698
not be supported.
1699-
sm_off [Default Off]
1700-
By default, scalable mode will be supported if the
1699+
sm_on [Default Off]
1700+
By default, scalable mode will be disabled even if the
17011701
hardware advertises that it has support for the scalable
17021702
mode translation. With this option set, scalable mode
1703-
will not be used even on hardware which claims to support
1704-
it.
1703+
will be used on hardware which claims to support it.
17051704
tboot_noforce [Default Off]
17061705
Do not force the Intel IOMMU enabled under tboot.
17071706
By default, tboot will force Intel IOMMU on, which

Documentation/devicetree/bindings/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ extra-y += $(DT_TMP_SCHEMA)
1717
quiet_cmd_mk_schema = SCHEMA $@
1818
cmd_mk_schema = $(DT_MK_SCHEMA) $(DT_MK_SCHEMA_FLAGS) -o $@ $(filter-out FORCE, $^)
1919

20-
DT_DOCS = $(shell cd $(srctree)/$(src) && find * -name '*.yaml')
20+
DT_DOCS = $(shell \
21+
cd $(srctree)/$(src) && \
22+
find * \( -name '*.yaml' ! -name $(DT_TMP_SCHEMA) \) \
23+
)
24+
2125
DT_SCHEMA_FILES ?= $(addprefix $(src)/,$(DT_DOCS))
2226

2327
extra-y += $(patsubst $(src)/%.yaml,%.example.dts, $(DT_SCHEMA_FILES))

Documentation/devicetree/bindings/serio/olpc,ap-sp.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,10 @@ Required properties:
44
- compatible : "olpc,ap-sp"
55
- reg : base address and length of SoC's WTM registers
66
- interrupts : SP-AP interrupt
7-
- clocks : phandle + clock-specifier for the clock that drives the WTM
8-
- clock-names: should be "sp"
97

108
Example:
119
ap-sp@d4290000 {
1210
compatible = "olpc,ap-sp";
1311
reg = <0xd4290000 0x1000>;
1412
interrupts = <40>;
15-
clocks = <&soc_clocks MMP2_CLK_SP>;
16-
clock-names = "sp";
1713
}

Documentation/sysctl/fs.txt

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,26 +56,32 @@ of any kernel data structures.
5656

5757
dentry-state:
5858

59-
From linux/fs/dentry.c:
59+
From linux/include/linux/dcache.h:
6060
--------------------------------------------------------------
61-
struct {
61+
struct dentry_stat_t dentry_stat {
6262
int nr_dentry;
6363
int nr_unused;
6464
int age_limit; /* age in seconds */
6565
int want_pages; /* pages requested by system */
66-
int dummy[2];
67-
} dentry_stat = {0, 0, 45, 0,};
68-
--------------------------------------------------------------
69-
70-
Dentries are dynamically allocated and deallocated, and
71-
nr_dentry seems to be 0 all the time. Hence it's safe to
72-
assume that only nr_unused, age_limit and want_pages are
73-
used. Nr_unused seems to be exactly what its name says.
66+
int nr_negative; /* # of unused negative dentries */
67+
int dummy; /* Reserved for future use */
68+
};
69+
--------------------------------------------------------------
70+
71+
Dentries are dynamically allocated and deallocated.
72+
73+
nr_dentry shows the total number of dentries allocated (active
74+
+ unused). nr_unused shows the number of dentries that are not
75+
actively used, but are saved in the LRU list for future reuse.
76+
7477
Age_limit is the age in seconds after which dcache entries
7578
can be reclaimed when memory is short and want_pages is
7679
nonzero when shrink_dcache_pages() has been called and the
7780
dcache isn't pruned yet.
7881

82+
nr_negative shows the number of unused dentries that are also
83+
negative dentries which do not mapped to actual files.
84+
7985
==============================================================
8086

8187
dquot-max & dquot-nr:

Documentation/x86/resctrl_ui.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Fenghua Yu <[email protected]>
99
Tony Luck <[email protected]>
1010
Vikas Shivappa <[email protected]>
1111

12-
This feature is enabled by the CONFIG_X86_RESCTRL and the x86 /proc/cpuinfo
12+
This feature is enabled by the CONFIG_X86_CPU_RESCTRL and the x86 /proc/cpuinfo
1313
flag bits:
1414
RDT (Resource Director Technology) Allocation - "rdt_a"
1515
CAT (Cache Allocation Technology) - "cat_l3", "cat_l2"

MAINTAINERS

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2848,6 +2848,9 @@ F: include/uapi/linux/if_bonding.h
28482848
BPF (Safe dynamic programs and tools)
28492849
M: Alexei Starovoitov <[email protected]>
28502850
M: Daniel Borkmann <[email protected]>
2851+
R: Martin KaFai Lau <[email protected]>
2852+
R: Song Liu <[email protected]>
2853+
R: Yonghong Song <[email protected]>
28512854
28522855
28532856
T: git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
@@ -2873,6 +2876,8 @@ F: samples/bpf/
28732876
F: tools/bpf/
28742877
F: tools/lib/bpf/
28752878
F: tools/testing/selftests/bpf/
2879+
K: bpf
2880+
N: bpf
28762881

28772882
BPF JIT for ARM
28782883
M: Shubham Bansal <[email protected]>
@@ -5181,7 +5186,7 @@ DRM DRIVERS FOR XEN
51815186
M: Oleksandr Andrushchenko <[email protected]>
51825187
T: git git://anongit.freedesktop.org/drm/drm-misc
51835188
5184-
L: xen-devel@lists.xen.org
5189+
L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
51855190
S: Supported
51865191
F: drivers/gpu/drm/xen/
51875192
F: Documentation/gpu/xen-front.rst
@@ -11317,10 +11322,12 @@ F: include/dt-bindings/
1131711322

1131811323
OPENCORES I2C BUS DRIVER
1131911324
M: Peter Korsgaard <[email protected]>
11325+
M: Andrew Lunn <[email protected]>
1132011326
1132111327
S: Maintained
1132211328
F: Documentation/i2c/busses/i2c-ocores
1132311329
F: drivers/i2c/busses/i2c-ocores.c
11330+
F: include/linux/platform_data/i2c-ocores.h
1132411331

1132511332
OPENRISC ARCHITECTURE
1132611333
M: Jonas Bonn <[email protected]>
@@ -12878,6 +12885,13 @@ F: Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
1287812885
F: drivers/net/dsa/realtek-smi*
1287912886
F: drivers/net/dsa/rtl83*
1288012887

12888+
REDPINE WIRELESS DRIVER
12889+
M: Amitkumar Karwar <[email protected]>
12890+
M: Siva Rebbagondla <[email protected]>
12891+
12892+
S: Maintained
12893+
F: drivers/net/wireless/rsi/
12894+
1288112895
REGISTER MAP ABSTRACTION
1288212896
M: Mark Brown <[email protected]>
1288312897
@@ -13706,6 +13720,15 @@ L: [email protected]
1370613720
S: Supported
1370713721
F: drivers/net/ethernet/sfc/
1370813722

13723+
SFF/SFP/SFP+ MODULE SUPPORT
13724+
M: Russell King <[email protected]>
13725+
13726+
S: Maintained
13727+
F: drivers/net/phy/phylink.c
13728+
F: drivers/net/phy/sfp*
13729+
F: include/linux/phylink.h
13730+
F: include/linux/sfp.h
13731+
1370913732
SGI GRU DRIVER
1371013733
M: Dimitri Sivanich <[email protected]>
1371113734
S: Maintained
@@ -16651,6 +16674,15 @@ S: Maintained
1665116674
F: drivers/platform/x86/
1665216675
F: drivers/platform/olpc/
1665316676

16677+
X86 PLATFORM DRIVERS - ARCH
16678+
R: Darren Hart <[email protected]>
16679+
R: Andy Shevchenko <[email protected]>
16680+
16681+
16682+
T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
16683+
S: Maintained
16684+
F: arch/x86/platform
16685+
1665416686
X86 VDSO
1665516687
M: Andy Lutomirski <[email protected]>
1665616688
@@ -16683,6 +16715,24 @@ T: git git://linuxtv.org/media_tree.git
1668316715
S: Maintained
1668416716
F: drivers/media/tuners/tuner-xc2028.*
1668516717

16718+
XDP (eXpress Data Path)
16719+
M: Alexei Starovoitov <[email protected]>
16720+
M: Daniel Borkmann <[email protected]>
16721+
M: David S. Miller <[email protected]>
16722+
M: Jakub Kicinski <[email protected]>
16723+
M: Jesper Dangaard Brouer <[email protected]>
16724+
M: John Fastabend <[email protected]>
16725+
16726+
16727+
S: Supported
16728+
F: net/core/xdp.c
16729+
F: include/net/xdp.h
16730+
F: kernel/bpf/devmap.c
16731+
F: kernel/bpf/cpumap.c
16732+
F: include/trace/events/xdp.h
16733+
K: xdp
16734+
N: xdp
16735+
1668616736
XDP SOCKETS (AF_XDP)
1668716737
M: Björn Töpel <[email protected]>
1668816738
M: Magnus Karlsson <[email protected]>

Makefile

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

88
# *DOCUMENTATION*

arch/arm/boot/dts/am335x-shc.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
pinctrl-names = "default";
216216
pinctrl-0 = <&mmc1_pins>;
217217
bus-width = <0x4>;
218-
cd-gpios = <&gpio0 6 GPIO_ACTIVE_HIGH>;
218+
cd-gpios = <&gpio0 6 GPIO_ACTIVE_LOW>;
219219
cd-inverted;
220220
max-frequency = <26000000>;
221221
vmmc-supply = <&vmmcsd_fixed>;

arch/arm/boot/dts/da850.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@
476476
clocksource: timer@20000 {
477477
compatible = "ti,da830-timer";
478478
reg = <0x20000 0x1000>;
479-
interrupts = <12>, <13>;
479+
interrupts = <21>, <22>;
480480
interrupt-names = "tint12", "tint34";
481481
clocks = <&pll0_auxclk>;
482482
};

0 commit comments

Comments
 (0)