Skip to content

Commit 623b1ae

Browse files
author
Simao Gomes Viana
committed
Merge remote-tracking branch 'zen/5.5/master' into v5.5+
2 parents e55e84f + e1479f7 commit 623b1ae

200 files changed

Lines changed: 2169 additions & 1141 deletions

File tree

Some content is hidden

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

Documentation/networking/nf_flowtable.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ flowtable and add one rule to your forward chain.
7676

7777
table inet x {
7878
flowtable f {
79-
hook ingress priority 0 devices = { eth0, eth1 };
79+
hook ingress priority 0; devices = { eth0, eth1 };
8080
}
8181
chain y {
8282
type filter hook forward priority 0; policy accept;

Documentation/sphinx/parallel-wrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ if [ -n "$parallel" ] ; then
3030
parallel="-j$parallel"
3131
fi
3232

33-
exec "$sphinx" "$parallel" "$@"
33+
exec "$sphinx" $parallel "$@"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: GPL-2.0
22
VERSION = 5
33
PATCHLEVEL = 5
4-
SUBLEVEL = 7
4+
SUBLEVEL = 8
55
EXTRAVERSION =
66
NAME = Kleptomaniac Octopus
77

arch/arm/boot/dts/stihxxx-b2120.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
/* DAC */
4747
format = "i2s";
4848
mclk-fs = <256>;
49-
frame-inversion = <1>;
49+
frame-inversion;
5050
cpu {
5151
sound-dai = <&sti_uni_player2>;
5252
};

arch/arm/include/asm/vdso/vsyscall.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ struct vdso_data *__arm_get_k_vdso_data(void)
3434
#define __arch_get_k_vdso_data __arm_get_k_vdso_data
3535

3636
static __always_inline
37-
int __arm_update_vdso_data(void)
37+
bool __arm_update_vdso_data(void)
3838
{
39-
return !cntvct_ok;
39+
return cntvct_ok;
4040
}
4141
#define __arch_update_vdso_data __arm_update_vdso_data
4242

arch/mips/include/asm/sync.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,11 @@
155155
* effective barrier as noted by commit 6b07d38aaa52 ("MIPS: Octeon: Use
156156
* optimized memory barrier primitives."). Here we specify that the affected
157157
* sync instructions should be emitted twice.
158+
* Note that this expression is evaluated by the assembler (not the compiler),
159+
* and that the assembler evaluates '==' as 0 or -1, not 0 or 1.
158160
*/
159161
#ifdef CONFIG_CPU_CAVIUM_OCTEON
160-
# define __SYNC_rpt(type) (1 + (type == __SYNC_wmb))
162+
# define __SYNC_rpt(type) (1 - (type == __SYNC_wmb))
161163
#else
162164
# define __SYNC_rpt(type) 1
163165
#endif

arch/mips/kernel/vpe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ void release_vpe(struct vpe *v)
134134
{
135135
list_del(&v->list);
136136
if (v->load_addr)
137-
release_progmem(v);
137+
release_progmem(v->load_addr);
138138
kfree(v);
139139
}
140140

arch/riscv/kernel/traps.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,6 @@ void __init trap_init(void)
156156
csr_write(CSR_SCRATCH, 0);
157157
/* Set the exception vector address */
158158
csr_write(CSR_TVEC, &handle_exception);
159-
/* Enable all interrupts */
160-
csr_write(CSR_IE, -1);
159+
/* Enable interrupts */
160+
csr_write(CSR_IE, IE_SIE | IE_EIE);
161161
}

arch/x86/events/intel/core.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4765,6 +4765,7 @@ __init int intel_pmu_init(void)
47654765
break;
47664766

47674767
case INTEL_FAM6_ATOM_TREMONT_D:
4768+
case INTEL_FAM6_ATOM_TREMONT:
47684769
x86_pmu.late_ack = true;
47694770
memcpy(hw_cache_event_ids, glp_hw_cache_event_ids,
47704771
sizeof(hw_cache_event_ids));

arch/x86/events/intel/cstate.c

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,18 @@
4040
* Model specific counters:
4141
* MSR_CORE_C1_RES: CORE C1 Residency Counter
4242
* perf code: 0x00
43-
* Available model: SLM,AMT,GLM,CNL
43+
* Available model: SLM,AMT,GLM,CNL,TNT
4444
* Scope: Core (each processor core has a MSR)
4545
* MSR_CORE_C3_RESIDENCY: CORE C3 Residency Counter
4646
* perf code: 0x01
4747
* Available model: NHM,WSM,SNB,IVB,HSW,BDW,SKL,GLM,
48-
* CNL,KBL,CML
48+
* CNL,KBL,CML,TNT
4949
* Scope: Core
5050
* MSR_CORE_C6_RESIDENCY: CORE C6 Residency Counter
5151
* perf code: 0x02
5252
* Available model: SLM,AMT,NHM,WSM,SNB,IVB,HSW,BDW,
53-
* SKL,KNL,GLM,CNL,KBL,CML,ICL,TGL
53+
* SKL,KNL,GLM,CNL,KBL,CML,ICL,TGL,
54+
* TNT
5455
* Scope: Core
5556
* MSR_CORE_C7_RESIDENCY: CORE C7 Residency Counter
5657
* perf code: 0x03
@@ -60,17 +61,18 @@
6061
* MSR_PKG_C2_RESIDENCY: Package C2 Residency Counter.
6162
* perf code: 0x00
6263
* Available model: SNB,IVB,HSW,BDW,SKL,KNL,GLM,CNL,
63-
* KBL,CML,ICL,TGL
64+
* KBL,CML,ICL,TGL,TNT
6465
* Scope: Package (physical package)
6566
* MSR_PKG_C3_RESIDENCY: Package C3 Residency Counter.
6667
* perf code: 0x01
6768
* Available model: NHM,WSM,SNB,IVB,HSW,BDW,SKL,KNL,
68-
* GLM,CNL,KBL,CML,ICL,TGL
69+
* GLM,CNL,KBL,CML,ICL,TGL,TNT
6970
* Scope: Package (physical package)
7071
* MSR_PKG_C6_RESIDENCY: Package C6 Residency Counter.
7172
* perf code: 0x02
72-
* Available model: SLM,AMT,NHM,WSM,SNB,IVB,HSW,BDW
73-
* SKL,KNL,GLM,CNL,KBL,CML,ICL,TGL
73+
* Available model: SLM,AMT,NHM,WSM,SNB,IVB,HSW,BDW,
74+
* SKL,KNL,GLM,CNL,KBL,CML,ICL,TGL,
75+
* TNT
7476
* Scope: Package (physical package)
7577
* MSR_PKG_C7_RESIDENCY: Package C7 Residency Counter.
7678
* perf code: 0x03
@@ -87,7 +89,8 @@
8789
* Scope: Package (physical package)
8890
* MSR_PKG_C10_RESIDENCY: Package C10 Residency Counter.
8991
* perf code: 0x06
90-
* Available model: HSW ULT,KBL,GLM,CNL,CML,ICL,TGL
92+
* Available model: HSW ULT,KBL,GLM,CNL,CML,ICL,TGL,
93+
* TNT
9194
* Scope: Package (physical package)
9295
*
9396
*/
@@ -640,8 +643,9 @@ static const struct x86_cpu_id intel_cstates_match[] __initconst = {
640643

641644
X86_CSTATES_MODEL(INTEL_FAM6_ATOM_GOLDMONT, glm_cstates),
642645
X86_CSTATES_MODEL(INTEL_FAM6_ATOM_GOLDMONT_D, glm_cstates),
643-
644646
X86_CSTATES_MODEL(INTEL_FAM6_ATOM_GOLDMONT_PLUS, glm_cstates),
647+
X86_CSTATES_MODEL(INTEL_FAM6_ATOM_TREMONT_D, glm_cstates),
648+
X86_CSTATES_MODEL(INTEL_FAM6_ATOM_TREMONT, glm_cstates),
645649

646650
X86_CSTATES_MODEL(INTEL_FAM6_ICELAKE_L, icl_cstates),
647651
X86_CSTATES_MODEL(INTEL_FAM6_ICELAKE, icl_cstates),

0 commit comments

Comments
 (0)