Magellan Linux

Annotation of /trunk/kernel-magellan/patches-3.15/0108-3.15.9-all-fixes.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2496 - (hide annotations) (download)
Thu Sep 4 20:16:04 2014 UTC (9 years, 8 months ago) by niro
File size: 59735 byte(s)
-fixed patches
1 niro 2496 diff --git a/Documentation/x86/x86_64/mm.txt b/Documentation/x86/x86_64/mm.txt
2     index c584a51add15..afe68ddbe6a4 100644
3     --- a/Documentation/x86/x86_64/mm.txt
4     +++ b/Documentation/x86/x86_64/mm.txt
5     @@ -12,6 +12,8 @@ ffffc90000000000 - ffffe8ffffffffff (=45 bits) vmalloc/ioremap space
6     ffffe90000000000 - ffffe9ffffffffff (=40 bits) hole
7     ffffea0000000000 - ffffeaffffffffff (=40 bits) virtual memory map (1TB)
8     ... unused hole ...
9     +ffffff0000000000 - ffffff7fffffffff (=39 bits) %esp fixup stacks
10     +... unused hole ...
11     ffffffff80000000 - ffffffffa0000000 (=512 MB) kernel text mapping, from phys 0
12     ffffffffa0000000 - ffffffffff5fffff (=1525 MB) module mapping space
13     ffffffffff600000 - ffffffffffdfffff (=8 MB) vsyscalls
14 niro 2493 diff --git a/Makefile b/Makefile
15 niro 2496 index d5d9a22a404a..25b85aba1e2e 100644
16 niro 2493 --- a/Makefile
17     +++ b/Makefile
18     @@ -1,6 +1,6 @@
19     VERSION = 3
20     PATCHLEVEL = 15
21 niro 2496 -SUBLEVEL = 8
22     +SUBLEVEL = 9
23 niro 2493 EXTRAVERSION =
24     NAME = Double Funky Skunk
25    
26 niro 2496 diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
27     index 5babba0a3a75..904dcf5973f3 100644
28     --- a/arch/arm/boot/dts/dra7-evm.dts
29     +++ b/arch/arm/boot/dts/dra7-evm.dts
30     @@ -182,6 +182,7 @@
31     regulator-name = "ldo3";
32     regulator-min-microvolt = <1800000>;
33     regulator-max-microvolt = <1800000>;
34     + regulator-always-on;
35     regulator-boot-on;
36     };
37    
38     diff --git a/arch/arm/boot/dts/hi3620.dtsi b/arch/arm/boot/dts/hi3620.dtsi
39     index ab1116d086be..83a5b8685bd9 100644
40     --- a/arch/arm/boot/dts/hi3620.dtsi
41     +++ b/arch/arm/boot/dts/hi3620.dtsi
42     @@ -73,7 +73,7 @@
43    
44     L2: l2-cache {
45     compatible = "arm,pl310-cache";
46     - reg = <0xfc10000 0x100000>;
47     + reg = <0x100000 0x100000>;
48     interrupts = <0 15 4>;
49     cache-unified;
50     cache-level = <2>;
51     diff --git a/arch/arm/crypto/aesbs-glue.c b/arch/arm/crypto/aesbs-glue.c
52     index 4522366da759..15468fbbdea3 100644
53     --- a/arch/arm/crypto/aesbs-glue.c
54     +++ b/arch/arm/crypto/aesbs-glue.c
55     @@ -137,7 +137,7 @@ static int aesbs_cbc_encrypt(struct blkcipher_desc *desc,
56     dst += AES_BLOCK_SIZE;
57     } while (--blocks);
58     }
59     - err = blkcipher_walk_done(desc, &walk, 0);
60     + err = blkcipher_walk_done(desc, &walk, walk.nbytes % AES_BLOCK_SIZE);
61     }
62     return err;
63 niro 2493 }
64 niro 2496 @@ -158,7 +158,7 @@ static int aesbs_cbc_decrypt(struct blkcipher_desc *desc,
65     bsaes_cbc_encrypt(walk.src.virt.addr, walk.dst.virt.addr,
66     walk.nbytes, &ctx->dec, walk.iv);
67     kernel_neon_end();
68     - err = blkcipher_walk_done(desc, &walk, 0);
69     + err = blkcipher_walk_done(desc, &walk, walk.nbytes % AES_BLOCK_SIZE);
70     }
71     while (walk.nbytes) {
72     u32 blocks = walk.nbytes / AES_BLOCK_SIZE;
73     @@ -182,7 +182,7 @@ static int aesbs_cbc_decrypt(struct blkcipher_desc *desc,
74     dst += AES_BLOCK_SIZE;
75     src += AES_BLOCK_SIZE;
76     } while (--blocks);
77     - err = blkcipher_walk_done(desc, &walk, 0);
78     + err = blkcipher_walk_done(desc, &walk, walk.nbytes % AES_BLOCK_SIZE);
79     }
80     return err;
81     }
82     @@ -268,7 +268,7 @@ static int aesbs_xts_encrypt(struct blkcipher_desc *desc,
83     bsaes_xts_encrypt(walk.src.virt.addr, walk.dst.virt.addr,
84     walk.nbytes, &ctx->enc, walk.iv);
85     kernel_neon_end();
86     - err = blkcipher_walk_done(desc, &walk, 0);
87     + err = blkcipher_walk_done(desc, &walk, walk.nbytes % AES_BLOCK_SIZE);
88     }
89     return err;
90     }
91     @@ -292,7 +292,7 @@ static int aesbs_xts_decrypt(struct blkcipher_desc *desc,
92     bsaes_xts_decrypt(walk.src.virt.addr, walk.dst.virt.addr,
93     walk.nbytes, &ctx->dec, walk.iv);
94     kernel_neon_end();
95     - err = blkcipher_walk_done(desc, &walk, 0);
96     + err = blkcipher_walk_done(desc, &walk, walk.nbytes % AES_BLOCK_SIZE);
97     }
98     return err;
99     }
100     diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c
101     index 17cd39360afe..93914d220069 100644
102     --- a/arch/arm/mach-omap2/gpmc-nand.c
103     +++ b/arch/arm/mach-omap2/gpmc-nand.c
104     @@ -50,6 +50,16 @@ static bool gpmc_hwecc_bch_capable(enum omap_ecc ecc_opt)
105     soc_is_omap54xx() || soc_is_dra7xx())
106     return 1;
107 niro 2493
108 niro 2496 + if (ecc_opt == OMAP_ECC_BCH4_CODE_HW_DETECTION_SW ||
109     + ecc_opt == OMAP_ECC_BCH8_CODE_HW_DETECTION_SW) {
110     + if (cpu_is_omap24xx())
111     + return 0;
112     + else if (cpu_is_omap3630() && (GET_OMAP_REVISION() == 0))
113     + return 0;
114     + else
115     + return 1;
116     + }
117 niro 2493 +
118 niro 2496 /* OMAP3xxx do not have ELM engine, so cannot support ECC schemes
119     * which require H/W based ECC error detection */
120     if ((cpu_is_omap34xx() || cpu_is_omap3630()) &&
121     @@ -57,14 +67,6 @@ static bool gpmc_hwecc_bch_capable(enum omap_ecc ecc_opt)
122     (ecc_opt == OMAP_ECC_BCH8_CODE_HW)))
123     return 0;
124 niro 2493
125 niro 2496 - /*
126     - * For now, assume 4-bit mode is only supported on OMAP3630 ES1.x, x>=1
127     - * and AM33xx derivates. Other chips may be added if confirmed to work.
128     - */
129     - if ((ecc_opt == OMAP_ECC_BCH4_CODE_HW_DETECTION_SW) &&
130     - (!cpu_is_omap3630() || (GET_OMAP_REVISION() == 0)))
131     - return 0;
132     -
133     /* legacy platforms support only HAM1 (1-bit Hamming) ECC scheme */
134     if (ecc_opt == OMAP_ECC_HAM1_CODE_HW)
135     return 1;
136     diff --git a/arch/arm/mm/idmap.c b/arch/arm/mm/idmap.c
137     index 8e0e52eb76b5..d7a0ee898d24 100644
138     --- a/arch/arm/mm/idmap.c
139     +++ b/arch/arm/mm/idmap.c
140     @@ -25,6 +25,13 @@ static void idmap_add_pmd(pud_t *pud, unsigned long addr, unsigned long end,
141     pr_warning("Failed to allocate identity pmd.\n");
142     return;
143     }
144     + /*
145     + * Copy the original PMD to ensure that the PMD entries for
146     + * the kernel image are preserved.
147     + */
148     + if (!pud_none(*pud))
149     + memcpy(pmd, pmd_offset(pud, 0),
150     + PTRS_PER_PMD * sizeof(pmd_t));
151     pud_populate(&init_mm, pud, pmd);
152     pmd += pmd_index(addr);
153     } else
154     diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c
155     index b68c6b22e1c8..f15c22e8bcd5 100644
156     --- a/arch/arm/mm/mmu.c
157     +++ b/arch/arm/mm/mmu.c
158     @@ -1436,8 +1436,8 @@ void __init early_paging_init(const struct machine_desc *mdesc,
159     return;
160 niro 2493
161 niro 2496 /* remap kernel code and data */
162     - map_start = init_mm.start_code;
163     - map_end = init_mm.brk;
164     + map_start = init_mm.start_code & PMD_MASK;
165     + map_end = ALIGN(init_mm.brk, PMD_SIZE);
166 niro 2493
167 niro 2496 /* get a handle on things... */
168     pgd0 = pgd_offset_k(0);
169     @@ -1472,7 +1472,7 @@ void __init early_paging_init(const struct machine_desc *mdesc,
170     }
171 niro 2493
172 niro 2496 /* remap pmds for kernel mapping */
173     - phys = __pa(map_start) & PMD_MASK;
174     + phys = __pa(map_start);
175     do {
176     *pmdk++ = __pmd(phys | pmdprot);
177     phys += PMD_SIZE;
178     diff --git a/arch/powerpc/perf/core-book3s.c b/arch/powerpc/perf/core-book3s.c
179     index 6b0641c3f03f..fe52db2eea6a 100644
180     --- a/arch/powerpc/perf/core-book3s.c
181     +++ b/arch/powerpc/perf/core-book3s.c
182     @@ -1307,6 +1307,9 @@ static void power_pmu_enable(struct pmu *pmu)
183     out_enable:
184     pmao_restore_workaround(ebb);
185 niro 2493
186 niro 2496 + if (ppmu->flags & PPMU_ARCH_207S)
187     + mtspr(SPRN_MMCR2, 0);
188     +
189     mmcr0 = ebb_switch_in(ebb, cpuhw->mmcr[0]);
190 niro 2493
191 niro 2496 mb();
192     @@ -1315,9 +1318,6 @@ static void power_pmu_enable(struct pmu *pmu)
193 niro 2493
194 niro 2496 write_mmcr0(cpuhw, mmcr0);
195 niro 2493
196 niro 2496 - if (ppmu->flags & PPMU_ARCH_207S)
197     - mtspr(SPRN_MMCR2, 0);
198     -
199     /*
200     * Enable instruction sampling if necessary
201     */
202     diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
203     index 512e45f0c204..1dd140824b49 100644
204     --- a/arch/x86/Kconfig
205     +++ b/arch/x86/Kconfig
206     @@ -910,10 +910,27 @@ config VM86
207     default y
208     depends on X86_32
209     ---help---
210     - This option is required by programs like DOSEMU to run 16-bit legacy
211     - code on X86 processors. It also may be needed by software like
212     - XFree86 to initialize some video cards via BIOS. Disabling this
213     - option saves about 6k.
214     + This option is required by programs like DOSEMU to run
215     + 16-bit real mode legacy code on x86 processors. It also may
216     + be needed by software like XFree86 to initialize some video
217     + cards via BIOS. Disabling this option saves about 6K.
218     +
219     +config X86_16BIT
220     + bool "Enable support for 16-bit segments" if EXPERT
221     + default y
222     + ---help---
223     + This option is required by programs like Wine to run 16-bit
224     + protected mode legacy code on x86 processors. Disabling
225     + this option saves about 300 bytes on i386, or around 6K text
226     + plus 16K runtime memory on x86-64,
227     +
228     +config X86_ESPFIX32
229     + def_bool y
230     + depends on X86_16BIT && X86_32
231     +
232     +config X86_ESPFIX64
233     + def_bool y
234     + depends on X86_16BIT && X86_64
235 niro 2493
236 niro 2496 config TOSHIBA
237     tristate "Toshiba Laptop support"
238     diff --git a/arch/x86/include/asm/espfix.h b/arch/x86/include/asm/espfix.h
239     new file mode 100644
240     index 000000000000..99efebb2f69d
241     --- /dev/null
242     +++ b/arch/x86/include/asm/espfix.h
243     @@ -0,0 +1,16 @@
244     +#ifndef _ASM_X86_ESPFIX_H
245     +#define _ASM_X86_ESPFIX_H
246     +
247     +#ifdef CONFIG_X86_64
248     +
249     +#include <asm/percpu.h>
250     +
251     +DECLARE_PER_CPU_READ_MOSTLY(unsigned long, espfix_stack);
252     +DECLARE_PER_CPU_READ_MOSTLY(unsigned long, espfix_waddr);
253     +
254     +extern void init_espfix_bsp(void);
255     +extern void init_espfix_ap(void);
256     +
257     +#endif /* CONFIG_X86_64 */
258     +
259     +#endif /* _ASM_X86_ESPFIX_H */
260     diff --git a/arch/x86/include/asm/irqflags.h b/arch/x86/include/asm/irqflags.h
261     index bba3cf88e624..0a8b519226b8 100644
262     --- a/arch/x86/include/asm/irqflags.h
263     +++ b/arch/x86/include/asm/irqflags.h
264     @@ -129,7 +129,7 @@ static inline notrace unsigned long arch_local_irq_save(void)
265 niro 2493
266 niro 2496 #define PARAVIRT_ADJUST_EXCEPTION_FRAME /* */
267 niro 2493
268 niro 2496 -#define INTERRUPT_RETURN iretq
269     +#define INTERRUPT_RETURN jmp native_iret
270     #define USERGS_SYSRET64 \
271     swapgs; \
272     sysretq;
273     diff --git a/arch/x86/include/asm/pgtable_64_types.h b/arch/x86/include/asm/pgtable_64_types.h
274     index c883bf726398..7166e25ecb57 100644
275     --- a/arch/x86/include/asm/pgtable_64_types.h
276     +++ b/arch/x86/include/asm/pgtable_64_types.h
277     @@ -61,6 +61,8 @@ typedef struct { pteval_t pte; } pte_t;
278     #define MODULES_VADDR (__START_KERNEL_map + KERNEL_IMAGE_SIZE)
279     #define MODULES_END _AC(0xffffffffff000000, UL)
280     #define MODULES_LEN (MODULES_END - MODULES_VADDR)
281     +#define ESPFIX_PGD_ENTRY _AC(-2, UL)
282     +#define ESPFIX_BASE_ADDR (ESPFIX_PGD_ENTRY << PGDIR_SHIFT)
283 niro 2493
284 niro 2496 #define EARLY_DYNAMIC_PAGE_TABLES 64
285 niro 2493
286 niro 2496 diff --git a/arch/x86/include/asm/setup.h b/arch/x86/include/asm/setup.h
287     index 9264f04a4c55..ff4e7b236e21 100644
288     --- a/arch/x86/include/asm/setup.h
289     +++ b/arch/x86/include/asm/setup.h
290     @@ -59,6 +59,8 @@ static inline void x86_ce4100_early_setup(void) { }
291    
292     #ifndef _SETUP
293    
294     +#include <asm/espfix.h>
295 niro 2493 +
296 niro 2496 /*
297     * This is set up by the setup-routine at boot-time
298     */
299     diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile
300     index f4d96000d33a..491ef3e59850 100644
301     --- a/arch/x86/kernel/Makefile
302     +++ b/arch/x86/kernel/Makefile
303     @@ -29,6 +29,7 @@ obj-$(CONFIG_X86_64) += sys_x86_64.o x8664_ksyms_64.o
304     obj-y += syscall_$(BITS).o vsyscall_gtod.o
305     obj-$(CONFIG_X86_64) += vsyscall_64.o
306     obj-$(CONFIG_X86_64) += vsyscall_emu_64.o
307     +obj-$(CONFIG_X86_ESPFIX64) += espfix_64.o
308     obj-$(CONFIG_SYSFS) += ksysfs.o
309     obj-y += bootflag.o e820.o
310     obj-y += pci-dma.o quirks.o topology.o kdebugfs.o
311     diff --git a/arch/x86/kernel/entry_32.S b/arch/x86/kernel/entry_32.S
312     index c87810b1b557..c5a9cb94dee6 100644
313     --- a/arch/x86/kernel/entry_32.S
314     +++ b/arch/x86/kernel/entry_32.S
315     @@ -529,6 +529,7 @@ syscall_exit:
316     restore_all:
317     TRACE_IRQS_IRET
318     restore_all_notrace:
319     +#ifdef CONFIG_X86_ESPFIX32
320     movl PT_EFLAGS(%esp), %eax # mix EFLAGS, SS and CS
321     # Warning: PT_OLDSS(%esp) contains the wrong/random values if we
322     # are returning to the kernel.
323     @@ -539,6 +540,7 @@ restore_all_notrace:
324     cmpl $((SEGMENT_LDT << 8) | USER_RPL), %eax
325     CFI_REMEMBER_STATE
326     je ldt_ss # returning to user-space with LDT SS
327     +#endif
328     restore_nocheck:
329     RESTORE_REGS 4 # skip orig_eax/error_code
330     irq_return:
331     @@ -551,6 +553,7 @@ ENTRY(iret_exc)
332     .previous
333     _ASM_EXTABLE(irq_return,iret_exc)
334 niro 2493
335 niro 2496 +#ifdef CONFIG_X86_ESPFIX32
336     CFI_RESTORE_STATE
337     ldt_ss:
338     #ifdef CONFIG_PARAVIRT
339     @@ -594,6 +597,7 @@ ldt_ss:
340     lss (%esp), %esp /* switch to espfix segment */
341     CFI_ADJUST_CFA_OFFSET -8
342     jmp restore_nocheck
343     +#endif
344     CFI_ENDPROC
345     ENDPROC(system_call)
346 niro 2493
347 niro 2496 @@ -706,6 +710,7 @@ END(syscall_badsys)
348     * the high word of the segment base from the GDT and swiches to the
349     * normal stack and adjusts ESP with the matching offset.
350     */
351     +#ifdef CONFIG_X86_ESPFIX32
352     /* fixup the stack */
353     mov GDT_ESPFIX_SS + 4, %al /* bits 16..23 */
354     mov GDT_ESPFIX_SS + 7, %ah /* bits 24..31 */
355     @@ -715,8 +720,10 @@ END(syscall_badsys)
356     pushl_cfi %eax
357     lss (%esp), %esp /* switch to the normal stack segment */
358     CFI_ADJUST_CFA_OFFSET -8
359     +#endif
360     .endm
361     .macro UNWIND_ESPFIX_STACK
362     +#ifdef CONFIG_X86_ESPFIX32
363     movl %ss, %eax
364     /* see if on espfix stack */
365     cmpw $__ESPFIX_SS, %ax
366     @@ -727,6 +734,7 @@ END(syscall_badsys)
367     /* switch to normal stack */
368     FIXUP_ESPFIX_STACK
369     27:
370     +#endif
371     .endm
372 niro 2493
373 niro 2496 /*
374     @@ -1357,11 +1365,13 @@ END(debug)
375     ENTRY(nmi)
376     RING0_INT_FRAME
377     ASM_CLAC
378     +#ifdef CONFIG_X86_ESPFIX32
379     pushl_cfi %eax
380     movl %ss, %eax
381     cmpw $__ESPFIX_SS, %ax
382     popl_cfi %eax
383     je nmi_espfix_stack
384     +#endif
385     cmpl $ia32_sysenter_target,(%esp)
386     je nmi_stack_fixup
387     pushl_cfi %eax
388     @@ -1401,6 +1411,7 @@ nmi_debug_stack_check:
389     FIX_STACK 24, nmi_stack_correct, 1
390     jmp nmi_stack_correct
391    
392     +#ifdef CONFIG_X86_ESPFIX32
393     nmi_espfix_stack:
394     /* We have a RING0_INT_FRAME here.
395     *
396     @@ -1422,6 +1433,7 @@ nmi_espfix_stack:
397     lss 12+4(%esp), %esp # back to espfix stack
398     CFI_ADJUST_CFA_OFFSET -24
399     jmp irq_return
400     +#endif
401     CFI_ENDPROC
402     END(nmi)
403    
404     diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S
405     index 1e96c3628bf2..03cd2a8f6009 100644
406     --- a/arch/x86/kernel/entry_64.S
407     +++ b/arch/x86/kernel/entry_64.S
408     @@ -58,6 +58,7 @@
409     #include <asm/asm.h>
410     #include <asm/context_tracking.h>
411     #include <asm/smap.h>
412     +#include <asm/pgtable_types.h>
413     #include <linux/err.h>
414    
415     /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */
416     @@ -1041,12 +1042,45 @@ restore_args:
417    
418     irq_return:
419     INTERRUPT_RETURN
420     - _ASM_EXTABLE(irq_return, bad_iret)
421    
422     -#ifdef CONFIG_PARAVIRT
423     ENTRY(native_iret)
424     + /*
425     + * Are we returning to a stack segment from the LDT? Note: in
426     + * 64-bit mode SS:RSP on the exception stack is always valid.
427     + */
428     +#ifdef CONFIG_X86_ESPFIX64
429     + testb $4,(SS-RIP)(%rsp)
430     + jnz native_irq_return_ldt
431     +#endif
432 niro 2493 +
433 niro 2496 +native_irq_return_iret:
434     iretq
435     - _ASM_EXTABLE(native_iret, bad_iret)
436     + _ASM_EXTABLE(native_irq_return_iret, bad_iret)
437     +
438     +#ifdef CONFIG_X86_ESPFIX64
439     +native_irq_return_ldt:
440     + pushq_cfi %rax
441     + pushq_cfi %rdi
442     + SWAPGS
443     + movq PER_CPU_VAR(espfix_waddr),%rdi
444     + movq %rax,(0*8)(%rdi) /* RAX */
445     + movq (2*8)(%rsp),%rax /* RIP */
446     + movq %rax,(1*8)(%rdi)
447     + movq (3*8)(%rsp),%rax /* CS */
448     + movq %rax,(2*8)(%rdi)
449     + movq (4*8)(%rsp),%rax /* RFLAGS */
450     + movq %rax,(3*8)(%rdi)
451     + movq (6*8)(%rsp),%rax /* SS */
452     + movq %rax,(5*8)(%rdi)
453     + movq (5*8)(%rsp),%rax /* RSP */
454     + movq %rax,(4*8)(%rdi)
455     + andl $0xffff0000,%eax
456     + popq_cfi %rdi
457     + orq PER_CPU_VAR(espfix_stack),%rax
458     + SWAPGS
459     + movq %rax,%rsp
460     + popq_cfi %rax
461     + jmp native_irq_return_iret
462     #endif
463 niro 2493
464 niro 2496 .section .fixup,"ax"
465     @@ -1110,9 +1144,40 @@ ENTRY(retint_kernel)
466     call preempt_schedule_irq
467     jmp exit_intr
468 niro 2493 #endif
469 niro 2496 -
470     CFI_ENDPROC
471     END(common_interrupt)
472 niro 2493 +
473 niro 2496 + /*
474     + * If IRET takes a fault on the espfix stack, then we
475     + * end up promoting it to a doublefault. In that case,
476     + * modify the stack to make it look like we just entered
477     + * the #GP handler from user space, similar to bad_iret.
478     + */
479     +#ifdef CONFIG_X86_ESPFIX64
480     + ALIGN
481     +__do_double_fault:
482     + XCPT_FRAME 1 RDI+8
483     + movq RSP(%rdi),%rax /* Trap on the espfix stack? */
484     + sarq $PGDIR_SHIFT,%rax
485     + cmpl $ESPFIX_PGD_ENTRY,%eax
486     + jne do_double_fault /* No, just deliver the fault */
487     + cmpl $__KERNEL_CS,CS(%rdi)
488     + jne do_double_fault
489     + movq RIP(%rdi),%rax
490     + cmpq $native_irq_return_iret,%rax
491     + jne do_double_fault /* This shouldn't happen... */
492     + movq PER_CPU_VAR(kernel_stack),%rax
493     + subq $(6*8-KERNEL_STACK_OFFSET),%rax /* Reset to original stack */
494     + movq %rax,RSP(%rdi)
495     + movq $0,(%rax) /* Missing (lost) #GP error code */
496     + movq $general_protection,RIP(%rdi)
497     + retq
498     + CFI_ENDPROC
499     +END(__do_double_fault)
500 niro 2493 +#else
501 niro 2496 +# define __do_double_fault do_double_fault
502 niro 2493 +#endif
503     +
504 niro 2496 /*
505     * End of kprobes section
506     */
507     @@ -1314,7 +1379,7 @@ zeroentry overflow do_overflow
508     zeroentry bounds do_bounds
509     zeroentry invalid_op do_invalid_op
510     zeroentry device_not_available do_device_not_available
511     -paranoiderrorentry double_fault do_double_fault
512     +paranoiderrorentry double_fault __do_double_fault
513     zeroentry coprocessor_segment_overrun do_coprocessor_segment_overrun
514     errorentry invalid_TSS do_invalid_TSS
515     errorentry segment_not_present do_segment_not_present
516     @@ -1601,7 +1666,7 @@ error_sti:
517     */
518     error_kernelspace:
519     incl %ebx
520     - leaq irq_return(%rip),%rcx
521     + leaq native_irq_return_iret(%rip),%rcx
522     cmpq %rcx,RIP+8(%rsp)
523     je error_swapgs
524     movl %ecx,%eax /* zero extend */
525     diff --git a/arch/x86/kernel/espfix_64.c b/arch/x86/kernel/espfix_64.c
526     new file mode 100644
527     index 000000000000..94d857fb1033
528     --- /dev/null
529     +++ b/arch/x86/kernel/espfix_64.c
530     @@ -0,0 +1,208 @@
531     +/* ----------------------------------------------------------------------- *
532     + *
533     + * Copyright 2014 Intel Corporation; author: H. Peter Anvin
534     + *
535     + * This program is free software; you can redistribute it and/or modify it
536     + * under the terms and conditions of the GNU General Public License,
537     + * version 2, as published by the Free Software Foundation.
538     + *
539     + * This program is distributed in the hope it will be useful, but WITHOUT
540     + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
541     + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
542     + * more details.
543     + *
544     + * ----------------------------------------------------------------------- */
545     +
546     +/*
547     + * The IRET instruction, when returning to a 16-bit segment, only
548     + * restores the bottom 16 bits of the user space stack pointer. This
549     + * causes some 16-bit software to break, but it also leaks kernel state
550     + * to user space.
551     + *
552     + * This works around this by creating percpu "ministacks", each of which
553     + * is mapped 2^16 times 64K apart. When we detect that the return SS is
554     + * on the LDT, we copy the IRET frame to the ministack and use the
555     + * relevant alias to return to userspace. The ministacks are mapped
556     + * readonly, so if the IRET fault we promote #GP to #DF which is an IST
557     + * vector and thus has its own stack; we then do the fixup in the #DF
558     + * handler.
559     + *
560     + * This file sets up the ministacks and the related page tables. The
561     + * actual ministack invocation is in entry_64.S.
562     + */
563     +
564     +#include <linux/init.h>
565     +#include <linux/init_task.h>
566     +#include <linux/kernel.h>
567     +#include <linux/percpu.h>
568     +#include <linux/gfp.h>
569     +#include <linux/random.h>
570     +#include <asm/pgtable.h>
571     +#include <asm/pgalloc.h>
572     +#include <asm/setup.h>
573     +#include <asm/espfix.h>
574     +
575     +/*
576     + * Note: we only need 6*8 = 48 bytes for the espfix stack, but round
577     + * it up to a cache line to avoid unnecessary sharing.
578     + */
579     +#define ESPFIX_STACK_SIZE (8*8UL)
580     +#define ESPFIX_STACKS_PER_PAGE (PAGE_SIZE/ESPFIX_STACK_SIZE)
581     +
582     +/* There is address space for how many espfix pages? */
583     +#define ESPFIX_PAGE_SPACE (1UL << (PGDIR_SHIFT-PAGE_SHIFT-16))
584     +
585     +#define ESPFIX_MAX_CPUS (ESPFIX_STACKS_PER_PAGE * ESPFIX_PAGE_SPACE)
586     +#if CONFIG_NR_CPUS > ESPFIX_MAX_CPUS
587     +# error "Need more than one PGD for the ESPFIX hack"
588     +#endif
589     +
590     +#define PGALLOC_GFP (GFP_KERNEL | __GFP_NOTRACK | __GFP_REPEAT | __GFP_ZERO)
591     +
592     +/* This contains the *bottom* address of the espfix stack */
593     +DEFINE_PER_CPU_READ_MOSTLY(unsigned long, espfix_stack);
594     +DEFINE_PER_CPU_READ_MOSTLY(unsigned long, espfix_waddr);
595     +
596     +/* Initialization mutex - should this be a spinlock? */
597     +static DEFINE_MUTEX(espfix_init_mutex);
598     +
599     +/* Page allocation bitmap - each page serves ESPFIX_STACKS_PER_PAGE CPUs */
600     +#define ESPFIX_MAX_PAGES DIV_ROUND_UP(CONFIG_NR_CPUS, ESPFIX_STACKS_PER_PAGE)
601     +static void *espfix_pages[ESPFIX_MAX_PAGES];
602     +
603     +static __page_aligned_bss pud_t espfix_pud_page[PTRS_PER_PUD]
604     + __aligned(PAGE_SIZE);
605     +
606     +static unsigned int page_random, slot_random;
607     +
608     +/*
609     + * This returns the bottom address of the espfix stack for a specific CPU.
610     + * The math allows for a non-power-of-two ESPFIX_STACK_SIZE, in which case
611     + * we have to account for some amount of padding at the end of each page.
612     + */
613     +static inline unsigned long espfix_base_addr(unsigned int cpu)
614 niro 2493 +{
615 niro 2496 + unsigned long page, slot;
616     + unsigned long addr;
617     +
618     + page = (cpu / ESPFIX_STACKS_PER_PAGE) ^ page_random;
619     + slot = (cpu + slot_random) % ESPFIX_STACKS_PER_PAGE;
620     + addr = (page << PAGE_SHIFT) + (slot * ESPFIX_STACK_SIZE);
621     + addr = (addr & 0xffffUL) | ((addr & ~0xffffUL) << 16);
622     + addr += ESPFIX_BASE_ADDR;
623     + return addr;
624 niro 2493 +}
625 niro 2496 +
626     +#define PTE_STRIDE (65536/PAGE_SIZE)
627     +#define ESPFIX_PTE_CLONES (PTRS_PER_PTE/PTE_STRIDE)
628     +#define ESPFIX_PMD_CLONES PTRS_PER_PMD
629     +#define ESPFIX_PUD_CLONES (65536/(ESPFIX_PTE_CLONES*ESPFIX_PMD_CLONES))
630     +
631     +#define PGTABLE_PROT ((_KERNPG_TABLE & ~_PAGE_RW) | _PAGE_NX)
632     +
633     +static void init_espfix_random(void)
634     +{
635     + unsigned long rand;
636     +
637     + /*
638     + * This is run before the entropy pools are initialized,
639     + * but this is hopefully better than nothing.
640     + */
641     + if (!arch_get_random_long(&rand)) {
642     + /* The constant is an arbitrary large prime */
643     + rdtscll(rand);
644     + rand *= 0xc345c6b72fd16123UL;
645 niro 2493 + }
646     +
647 niro 2496 + slot_random = rand % ESPFIX_STACKS_PER_PAGE;
648     + page_random = (rand / ESPFIX_STACKS_PER_PAGE)
649     + & (ESPFIX_PAGE_SPACE - 1);
650     +}
651 niro 2493 +
652 niro 2496 +void __init init_espfix_bsp(void)
653     +{
654     + pgd_t *pgd_p;
655     + pteval_t ptemask;
656 niro 2493 +
657 niro 2496 + ptemask = __supported_pte_mask;
658     +
659     + /* Install the espfix pud into the kernel page directory */
660     + pgd_p = &init_level4_pgt[pgd_index(ESPFIX_BASE_ADDR)];
661     + pgd_populate(&init_mm, pgd_p, (pud_t *)espfix_pud_page);
662     +
663     + /* Randomize the locations */
664     + init_espfix_random();
665     +
666     + /* The rest is the same as for any other processor */
667     + init_espfix_ap();
668     +}
669     +
670     +void init_espfix_ap(void)
671     +{
672     + unsigned int cpu, page;
673     + unsigned long addr;
674     + pud_t pud, *pud_p;
675     + pmd_t pmd, *pmd_p;
676     + pte_t pte, *pte_p;
677     + int n;
678     + void *stack_page;
679     + pteval_t ptemask;
680     +
681     + /* We only have to do this once... */
682     + if (likely(this_cpu_read(espfix_stack)))
683     + return; /* Already initialized */
684     +
685     + cpu = smp_processor_id();
686     + addr = espfix_base_addr(cpu);
687     + page = cpu/ESPFIX_STACKS_PER_PAGE;
688     +
689     + /* Did another CPU already set this up? */
690     + stack_page = ACCESS_ONCE(espfix_pages[page]);
691     + if (likely(stack_page))
692     + goto done;
693     +
694     + mutex_lock(&espfix_init_mutex);
695     +
696     + /* Did we race on the lock? */
697     + stack_page = ACCESS_ONCE(espfix_pages[page]);
698     + if (stack_page)
699     + goto unlock_done;
700     +
701     + ptemask = __supported_pte_mask;
702     +
703     + pud_p = &espfix_pud_page[pud_index(addr)];
704     + pud = *pud_p;
705     + if (!pud_present(pud)) {
706     + pmd_p = (pmd_t *)__get_free_page(PGALLOC_GFP);
707     + pud = __pud(__pa(pmd_p) | (PGTABLE_PROT & ptemask));
708     + paravirt_alloc_pmd(&init_mm, __pa(pmd_p) >> PAGE_SHIFT);
709     + for (n = 0; n < ESPFIX_PUD_CLONES; n++)
710     + set_pud(&pud_p[n], pud);
711 niro 2493 + }
712     +
713 niro 2496 + pmd_p = pmd_offset(&pud, addr);
714     + pmd = *pmd_p;
715     + if (!pmd_present(pmd)) {
716     + pte_p = (pte_t *)__get_free_page(PGALLOC_GFP);
717     + pmd = __pmd(__pa(pte_p) | (PGTABLE_PROT & ptemask));
718     + paravirt_alloc_pte(&init_mm, __pa(pte_p) >> PAGE_SHIFT);
719     + for (n = 0; n < ESPFIX_PMD_CLONES; n++)
720     + set_pmd(&pmd_p[n], pmd);
721     + }
722     +
723     + pte_p = pte_offset_kernel(&pmd, addr);
724     + stack_page = (void *)__get_free_page(GFP_KERNEL);
725     + pte = __pte(__pa(stack_page) | (__PAGE_KERNEL_RO & ptemask));
726     + for (n = 0; n < ESPFIX_PTE_CLONES; n++)
727     + set_pte(&pte_p[n*PTE_STRIDE], pte);
728     +
729     + /* Job is done for this CPU and any CPU which shares this page */
730     + ACCESS_ONCE(espfix_pages[page]) = stack_page;
731     +
732     +unlock_done:
733     + mutex_unlock(&espfix_init_mutex);
734     +done:
735     + this_cpu_write(espfix_stack, addr);
736     + this_cpu_write(espfix_waddr, (unsigned long)stack_page
737     + + (addr & ~PAGE_MASK));
738     +}
739     diff --git a/arch/x86/kernel/ldt.c b/arch/x86/kernel/ldt.c
740     index dcbbaa165bde..c37886d759cc 100644
741     --- a/arch/x86/kernel/ldt.c
742     +++ b/arch/x86/kernel/ldt.c
743     @@ -20,8 +20,6 @@
744     #include <asm/mmu_context.h>
745     #include <asm/syscalls.h>
746 niro 2493
747 niro 2496 -int sysctl_ldt16 = 0;
748     -
749     #ifdef CONFIG_SMP
750     static void flush_ldt(void *current_mm)
751     {
752     @@ -231,16 +229,10 @@ static int write_ldt(void __user *ptr, unsigned long bytecount, int oldmode)
753     }
754     }
755 niro 2493
756 niro 2496 - /*
757     - * On x86-64 we do not support 16-bit segments due to
758     - * IRET leaking the high bits of the kernel stack address.
759     - */
760     -#ifdef CONFIG_X86_64
761     - if (!ldt_info.seg_32bit && !sysctl_ldt16) {
762     + if (!IS_ENABLED(CONFIG_X86_16BIT) && !ldt_info.seg_32bit) {
763     error = -EINVAL;
764     goto out_unlock;
765     }
766     -#endif
767 niro 2493
768 niro 2496 fill_ldt(&ldt, &ldt_info);
769     if (oldmode)
770     diff --git a/arch/x86/kernel/paravirt_patch_64.c b/arch/x86/kernel/paravirt_patch_64.c
771     index 3f08f34f93eb..a1da6737ba5b 100644
772     --- a/arch/x86/kernel/paravirt_patch_64.c
773     +++ b/arch/x86/kernel/paravirt_patch_64.c
774     @@ -6,7 +6,6 @@ DEF_NATIVE(pv_irq_ops, irq_disable, "cli");
775     DEF_NATIVE(pv_irq_ops, irq_enable, "sti");
776     DEF_NATIVE(pv_irq_ops, restore_fl, "pushq %rdi; popfq");
777     DEF_NATIVE(pv_irq_ops, save_fl, "pushfq; popq %rax");
778     -DEF_NATIVE(pv_cpu_ops, iret, "iretq");
779     DEF_NATIVE(pv_mmu_ops, read_cr2, "movq %cr2, %rax");
780     DEF_NATIVE(pv_mmu_ops, read_cr3, "movq %cr3, %rax");
781     DEF_NATIVE(pv_mmu_ops, write_cr3, "movq %rdi, %cr3");
782     @@ -50,7 +49,6 @@ unsigned native_patch(u8 type, u16 clobbers, void *ibuf,
783     PATCH_SITE(pv_irq_ops, save_fl);
784     PATCH_SITE(pv_irq_ops, irq_enable);
785     PATCH_SITE(pv_irq_ops, irq_disable);
786     - PATCH_SITE(pv_cpu_ops, iret);
787     PATCH_SITE(pv_cpu_ops, irq_enable_sysexit);
788     PATCH_SITE(pv_cpu_ops, usergs_sysret32);
789     PATCH_SITE(pv_cpu_ops, usergs_sysret64);
790     diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
791     index ae2fd975b782..5492798930ef 100644
792     --- a/arch/x86/kernel/smpboot.c
793     +++ b/arch/x86/kernel/smpboot.c
794     @@ -244,6 +244,13 @@ static void notrace start_secondary(void *unused)
795     check_tsc_sync_target();
796 niro 2493
797 niro 2496 /*
798     + * Enable the espfix hack for this CPU
799     + */
800     +#ifdef CONFIG_X86_ESPFIX64
801     + init_espfix_ap();
802     +#endif
803     +
804     + /*
805     * We need to hold vector_lock so there the set of online cpus
806     * does not change while we are assigning vectors to cpus. Holding
807     * this lock ensures we don't half assign or remove an irq from a cpu.
808     diff --git a/arch/x86/mm/dump_pagetables.c b/arch/x86/mm/dump_pagetables.c
809     index 20621d753d5f..167ffcac16ed 100644
810     --- a/arch/x86/mm/dump_pagetables.c
811     +++ b/arch/x86/mm/dump_pagetables.c
812     @@ -30,12 +30,14 @@ struct pg_state {
813     unsigned long start_address;
814     unsigned long current_address;
815     const struct addr_marker *marker;
816     + unsigned long lines;
817     bool to_dmesg;
818     };
819 niro 2493
820 niro 2496 struct addr_marker {
821     unsigned long start_address;
822     const char *name;
823     + unsigned long max_lines;
824     };
825 niro 2493
826 niro 2496 /* indices for address_markers; keep sync'd w/ address_markers below */
827     @@ -46,6 +48,7 @@ enum address_markers_idx {
828     LOW_KERNEL_NR,
829     VMALLOC_START_NR,
830     VMEMMAP_START_NR,
831     + ESPFIX_START_NR,
832     HIGH_KERNEL_NR,
833     MODULES_VADDR_NR,
834     MODULES_END_NR,
835     @@ -68,6 +71,7 @@ static struct addr_marker address_markers[] = {
836     { PAGE_OFFSET, "Low Kernel Mapping" },
837     { VMALLOC_START, "vmalloc() Area" },
838     { VMEMMAP_START, "Vmemmap" },
839     + { ESPFIX_BASE_ADDR, "ESPfix Area", 16 },
840     { __START_KERNEL_map, "High Kernel Mapping" },
841     { MODULES_VADDR, "Modules" },
842     { MODULES_END, "End Modules" },
843     @@ -182,7 +186,7 @@ static void note_page(struct seq_file *m, struct pg_state *st,
844     pgprot_t new_prot, int level)
845     {
846     pgprotval_t prot, cur;
847     - static const char units[] = "KMGTPE";
848     + static const char units[] = "BKMGTPE";
849 niro 2493
850 niro 2496 /*
851     * If we have a "break" in the series, we need to flush the state that
852     @@ -197,6 +201,7 @@ static void note_page(struct seq_file *m, struct pg_state *st,
853     st->current_prot = new_prot;
854     st->level = level;
855     st->marker = address_markers;
856     + st->lines = 0;
857     pt_dump_seq_printf(m, st->to_dmesg, "---[ %s ]---\n",
858     st->marker->name);
859     } else if (prot != cur || level != st->level ||
860     @@ -208,17 +213,24 @@ static void note_page(struct seq_file *m, struct pg_state *st,
861     /*
862     * Now print the actual finished series
863     */
864     - pt_dump_seq_printf(m, st->to_dmesg, "0x%0*lx-0x%0*lx ",
865     - width, st->start_address,
866     - width, st->current_address);
867     -
868     - delta = (st->current_address - st->start_address) >> 10;
869     - while (!(delta & 1023) && unit[1]) {
870     - delta >>= 10;
871     - unit++;
872     + if (!st->marker->max_lines ||
873     + st->lines < st->marker->max_lines) {
874     + pt_dump_seq_printf(m, st->to_dmesg,
875     + "0x%0*lx-0x%0*lx ",
876     + width, st->start_address,
877     + width, st->current_address);
878 niro 2493 +
879 niro 2496 + delta = st->current_address - st->start_address;
880     + while (!(delta & 1023) && unit[1]) {
881     + delta >>= 10;
882     + unit++;
883     + }
884     + pt_dump_cont_printf(m, st->to_dmesg, "%9lu%c ",
885     + delta, *unit);
886     + printk_prot(m, st->current_prot, st->level,
887     + st->to_dmesg);
888     }
889     - pt_dump_cont_printf(m, st->to_dmesg, "%9lu%c ", delta, *unit);
890     - printk_prot(m, st->current_prot, st->level, st->to_dmesg);
891     + st->lines++;
892 niro 2493
893 niro 2496 /*
894     * We print markers for special areas of address space,
895     @@ -226,7 +238,17 @@ static void note_page(struct seq_file *m, struct pg_state *st,
896     * This helps in the interpretation.
897     */
898     if (st->current_address >= st->marker[1].start_address) {
899     + if (st->marker->max_lines &&
900     + st->lines > st->marker->max_lines) {
901     + unsigned long nskip =
902     + st->lines - st->marker->max_lines;
903     + pt_dump_seq_printf(m, st->to_dmesg,
904     + "... %lu entr%s skipped ... \n",
905     + nskip,
906     + nskip == 1 ? "y" : "ies");
907     + }
908     st->marker++;
909     + st->lines = 0;
910     pt_dump_seq_printf(m, st->to_dmesg, "---[ %s ]---\n",
911     st->marker->name);
912     }
913     diff --git a/arch/x86/vdso/vdso32-setup.c b/arch/x86/vdso/vdso32-setup.c
914     index 310c5f0dbef1..3adf2e6ad7d6 100644
915     --- a/arch/x86/vdso/vdso32-setup.c
916     +++ b/arch/x86/vdso/vdso32-setup.c
917     @@ -39,7 +39,6 @@
918     #ifdef CONFIG_X86_64
919     #define vdso_enabled sysctl_vsyscall32
920     #define arch_setup_additional_pages syscall32_setup_pages
921     -extern int sysctl_ldt16;
922     #endif
923 niro 2493
924 niro 2496 /*
925     @@ -251,13 +250,6 @@ static struct ctl_table abi_table2[] = {
926     .mode = 0644,
927     .proc_handler = proc_dointvec
928     },
929     - {
930     - .procname = "ldt16",
931     - .data = &sysctl_ldt16,
932     - .maxlen = sizeof(int),
933     - .mode = 0644,
934     - .proc_handler = proc_dointvec
935     - },
936     {}
937 niro 2493 };
938    
939 niro 2496 diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
940     index 0982233b9b84..a6a72ce8630f 100644
941     --- a/arch/x86/xen/setup.c
942     +++ b/arch/x86/xen/setup.c
943     @@ -574,13 +574,7 @@ void xen_enable_syscall(void)
944     }
945     #endif /* CONFIG_X86_64 */
946 niro 2493 }
947 niro 2496 -void xen_enable_nmi(void)
948     -{
949     -#ifdef CONFIG_X86_64
950     - if (register_callback(CALLBACKTYPE_nmi, (char *)nmi))
951     - BUG();
952     -#endif
953     -}
954     +
955     void __init xen_pvmmu_arch_setup(void)
956     {
957     HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments);
958     @@ -595,7 +589,6 @@ void __init xen_pvmmu_arch_setup(void)
959 niro 2493
960 niro 2496 xen_enable_sysenter();
961     xen_enable_syscall();
962     - xen_enable_nmi();
963 niro 2493 }
964    
965 niro 2496 /* This function is not called for HVM domains */
966     diff --git a/arch/xtensa/kernel/vectors.S b/arch/xtensa/kernel/vectors.S
967     index f9e1ec346e35..8453e6e39895 100644
968     --- a/arch/xtensa/kernel/vectors.S
969     +++ b/arch/xtensa/kernel/vectors.S
970     @@ -376,38 +376,42 @@ _DoubleExceptionVector_WindowOverflow:
971     beqz a2, 1f # if at start of vector, don't restore
972 niro 2493
973 niro 2496 addi a0, a0, -128
974     - bbsi a0, 8, 1f # don't restore except for overflow 8 and 12
975     - bbsi a0, 7, 2f
976     + bbsi.l a0, 8, 1f # don't restore except for overflow 8 and 12
977     +
978     + /*
979     + * This fixup handler is for the extremely unlikely case where the
980     + * overflow handler's reference thru a0 gets a hardware TLB refill
981     + * that bumps out the (distinct, aliasing) TLB entry that mapped its
982     + * prior references thru a9/a13, and where our reference now thru
983     + * a9/a13 gets a 2nd-level miss exception (not hardware TLB refill).
984     + */
985     + movi a2, window_overflow_restore_a0_fixup
986     + s32i a2, a3, EXC_TABLE_FIXUP
987     + l32i a2, a3, EXC_TABLE_DOUBLE_SAVE
988     + xsr a3, excsave1
989     +
990     + bbsi.l a0, 7, 2f
991 niro 2493
992 niro 2496 /*
993     * Restore a0 as saved by _WindowOverflow8().
994     - *
995     - * FIXME: we really need a fixup handler for this L32E,
996     - * for the extremely unlikely case where the overflow handler's
997     - * reference thru a0 gets a hardware TLB refill that bumps out
998     - * the (distinct, aliasing) TLB entry that mapped its prior
999     - * references thru a9, and where our reference now thru a9
1000     - * gets a 2nd-level miss exception (not hardware TLB refill).
1001     */
1002 niro 2493
1003 niro 2496 - l32e a2, a9, -16
1004     - wsr a2, depc # replace the saved a0
1005     - j 1f
1006     + l32e a0, a9, -16
1007     + wsr a0, depc # replace the saved a0
1008     + j 3f
1009 niro 2493
1010 niro 2496 2:
1011 niro 2493 /*
1012 niro 2496 * Restore a0 as saved by _WindowOverflow12().
1013     - *
1014     - * FIXME: we really need a fixup handler for this L32E,
1015     - * for the extremely unlikely case where the overflow handler's
1016     - * reference thru a0 gets a hardware TLB refill that bumps out
1017     - * the (distinct, aliasing) TLB entry that mapped its prior
1018     - * references thru a13, and where our reference now thru a13
1019     - * gets a 2nd-level miss exception (not hardware TLB refill).
1020 niro 2493 */
1021    
1022 niro 2496 - l32e a2, a13, -16
1023     - wsr a2, depc # replace the saved a0
1024     + l32e a0, a13, -16
1025     + wsr a0, depc # replace the saved a0
1026     +3:
1027     + xsr a3, excsave1
1028     + movi a0, 0
1029     + s32i a0, a3, EXC_TABLE_FIXUP
1030     + s32i a2, a3, EXC_TABLE_DOUBLE_SAVE
1031     1:
1032     /*
1033     * Restore WindowBase while leaving all address registers restored.
1034     @@ -449,6 +453,7 @@ _DoubleExceptionVector_WindowOverflow:
1035    
1036     s32i a0, a2, PT_DEPC
1037    
1038     +_DoubleExceptionVector_handle_exception:
1039     addx4 a0, a0, a3
1040     l32i a0, a0, EXC_TABLE_FAST_USER
1041     xsr a3, excsave1
1042     @@ -464,11 +469,120 @@ _DoubleExceptionVector_WindowOverflow:
1043     rotw -3
1044     j 1b
1045    
1046     - .end literal_prefix
1047    
1048     ENDPROC(_DoubleExceptionVector)
1049    
1050 niro 2493 /*
1051 niro 2496 + * Fixup handler for TLB miss in double exception handler for window owerflow.
1052     + * We get here with windowbase set to the window that was being spilled and
1053     + * a0 trashed. a0 bit 7 determines if this is a call8 (bit clear) or call12
1054     + * (bit set) window.
1055     + *
1056     + * We do the following here:
1057     + * - go to the original window retaining a0 value;
1058     + * - set up exception stack to return back to appropriate a0 restore code
1059     + * (we'll need to rotate window back and there's no place to save this
1060     + * information, use different return address for that);
1061     + * - handle the exception;
1062     + * - go to the window that was being spilled;
1063     + * - set up window_overflow_restore_a0_fixup as a fixup routine;
1064     + * - reload a0;
1065     + * - restore the original window;
1066     + * - reset the default fixup routine;
1067     + * - return to user. By the time we get to this fixup handler all information
1068     + * about the conditions of the original double exception that happened in
1069     + * the window overflow handler is lost, so we just return to userspace to
1070     + * retry overflow from start.
1071     + *
1072     + * a0: value of depc, original value in depc
1073     + * a2: trashed, original value in EXC_TABLE_DOUBLE_SAVE
1074     + * a3: exctable, original value in excsave1
1075     + */
1076     +
1077     +ENTRY(window_overflow_restore_a0_fixup)
1078     +
1079     + rsr a0, ps
1080     + extui a0, a0, PS_OWB_SHIFT, PS_OWB_WIDTH
1081     + rsr a2, windowbase
1082     + sub a0, a2, a0
1083     + extui a0, a0, 0, 3
1084     + l32i a2, a3, EXC_TABLE_DOUBLE_SAVE
1085     + xsr a3, excsave1
1086     +
1087     + _beqi a0, 1, .Lhandle_1
1088     + _beqi a0, 3, .Lhandle_3
1089     +
1090     + .macro overflow_fixup_handle_exception_pane n
1091     +
1092     + rsr a0, depc
1093     + rotw -\n
1094     +
1095     + xsr a3, excsave1
1096     + wsr a2, depc
1097     + l32i a2, a3, EXC_TABLE_KSTK
1098     + s32i a0, a2, PT_AREG0
1099     +
1100     + movi a0, .Lrestore_\n
1101     + s32i a0, a2, PT_DEPC
1102     + rsr a0, exccause
1103     + j _DoubleExceptionVector_handle_exception
1104     +
1105     + .endm
1106     +
1107     + overflow_fixup_handle_exception_pane 2
1108     +.Lhandle_1:
1109     + overflow_fixup_handle_exception_pane 1
1110     +.Lhandle_3:
1111     + overflow_fixup_handle_exception_pane 3
1112     +
1113     + .macro overflow_fixup_restore_a0_pane n
1114     +
1115     + rotw \n
1116     + /* Need to preserve a0 value here to be able to handle exception
1117     + * that may occur on a0 reload from stack. It may occur because
1118     + * TLB miss handler may not be atomic and pointer to page table
1119     + * may be lost before we get here. There are no free registers,
1120     + * so we need to use EXC_TABLE_DOUBLE_SAVE area.
1121     + */
1122     + xsr a3, excsave1
1123     + s32i a2, a3, EXC_TABLE_DOUBLE_SAVE
1124     + movi a2, window_overflow_restore_a0_fixup
1125     + s32i a2, a3, EXC_TABLE_FIXUP
1126     + l32i a2, a3, EXC_TABLE_DOUBLE_SAVE
1127     + xsr a3, excsave1
1128     + bbsi.l a0, 7, 1f
1129     + l32e a0, a9, -16
1130     + j 2f
1131     +1:
1132     + l32e a0, a13, -16
1133     +2:
1134     + rotw -\n
1135     +
1136     + .endm
1137     +
1138     +.Lrestore_2:
1139     + overflow_fixup_restore_a0_pane 2
1140     +
1141     +.Lset_default_fixup:
1142     + xsr a3, excsave1
1143     + s32i a2, a3, EXC_TABLE_DOUBLE_SAVE
1144     + movi a2, 0
1145     + s32i a2, a3, EXC_TABLE_FIXUP
1146     + l32i a2, a3, EXC_TABLE_DOUBLE_SAVE
1147     + xsr a3, excsave1
1148     + rfe
1149     +
1150     +.Lrestore_1:
1151     + overflow_fixup_restore_a0_pane 1
1152     + j .Lset_default_fixup
1153     +.Lrestore_3:
1154     + overflow_fixup_restore_a0_pane 3
1155     + j .Lset_default_fixup
1156     +
1157     +ENDPROC(window_overflow_restore_a0_fixup)
1158     +
1159     + .end literal_prefix
1160     +/*
1161     * Debug interrupt vector
1162     *
1163     * There is not much space here, so simply jump to another handler.
1164     diff --git a/arch/xtensa/kernel/vmlinux.lds.S b/arch/xtensa/kernel/vmlinux.lds.S
1165     index ee32c0085dff..d16db6df86f8 100644
1166     --- a/arch/xtensa/kernel/vmlinux.lds.S
1167     +++ b/arch/xtensa/kernel/vmlinux.lds.S
1168     @@ -269,13 +269,13 @@ SECTIONS
1169     .UserExceptionVector.literal)
1170     SECTION_VECTOR (_DoubleExceptionVector_literal,
1171     .DoubleExceptionVector.literal,
1172     - DOUBLEEXC_VECTOR_VADDR - 16,
1173     + DOUBLEEXC_VECTOR_VADDR - 40,
1174     SIZEOF(.UserExceptionVector.text),
1175     .UserExceptionVector.text)
1176     SECTION_VECTOR (_DoubleExceptionVector_text,
1177     .DoubleExceptionVector.text,
1178     DOUBLEEXC_VECTOR_VADDR,
1179     - 32,
1180     + 40,
1181     .DoubleExceptionVector.literal)
1182 niro 2493
1183 niro 2496 . = (LOADADDR( .DoubleExceptionVector.text ) + SIZEOF( .DoubleExceptionVector.text ) + 3) & ~ 3;
1184     diff --git a/crypto/af_alg.c b/crypto/af_alg.c
1185     index 966f893711b3..6a3ad8011585 100644
1186     --- a/crypto/af_alg.c
1187     +++ b/crypto/af_alg.c
1188     @@ -21,6 +21,7 @@
1189     #include <linux/module.h>
1190     #include <linux/net.h>
1191     #include <linux/rwsem.h>
1192     +#include <linux/security.h>
1193 niro 2493
1194 niro 2496 struct alg_type_list {
1195     const struct af_alg_type *type;
1196     @@ -243,6 +244,7 @@ int af_alg_accept(struct sock *sk, struct socket *newsock)
1197 niro 2493
1198 niro 2496 sock_init_data(newsock, sk2);
1199     sock_graft(sk2, newsock);
1200     + security_sk_clone(sk, sk2);
1201 niro 2493
1202 niro 2496 err = type->accept(ask->private, sk2);
1203     if (err) {
1204     diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
1205     index b91dfbe9fe8e..c83eb75c7cfc 100644
1206     --- a/drivers/gpu/drm/i915/intel_display.c
1207     +++ b/drivers/gpu/drm/i915/intel_display.c
1208     @@ -11251,6 +11251,9 @@ static struct intel_quirk intel_quirks[] = {
1209    
1210     /* Toshiba CB35 Chromebook (Celeron 2955U) */
1211     { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
1212 niro 2493 +
1213 niro 2496 + /* HP Chromebook 14 (Celeron 2955U) */
1214     + { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
1215     };
1216 niro 2493
1217 niro 2496 static void intel_init_quirks(struct drm_device *dev)
1218     diff --git a/drivers/iio/accel/bma180.c b/drivers/iio/accel/bma180.c
1219     index a7e68c81f89d..a077cc86421b 100644
1220     --- a/drivers/iio/accel/bma180.c
1221     +++ b/drivers/iio/accel/bma180.c
1222     @@ -68,13 +68,13 @@
1223     /* Defaults values */
1224     #define BMA180_DEF_PMODE 0
1225     #define BMA180_DEF_BW 20
1226     -#define BMA180_DEF_SCALE 250
1227     +#define BMA180_DEF_SCALE 2452
1228 niro 2493
1229 niro 2496 /* Available values for sysfs */
1230     #define BMA180_FLP_FREQ_AVAILABLE \
1231     "10 20 40 75 150 300"
1232     #define BMA180_SCALE_AVAILABLE \
1233     - "0.000130 0.000190 0.000250 0.000380 0.000500 0.000990 0.001980"
1234     + "0.001275 0.001863 0.002452 0.003727 0.004903 0.009709 0.019417"
1235    
1236     struct bma180_data {
1237     struct i2c_client *client;
1238     @@ -94,7 +94,7 @@ enum bma180_axis {
1239 niro 2493 };
1240    
1241 niro 2496 static int bw_table[] = { 10, 20, 40, 75, 150, 300 }; /* Hz */
1242     -static int scale_table[] = { 130, 190, 250, 380, 500, 990, 1980 };
1243     +static int scale_table[] = { 1275, 1863, 2452, 3727, 4903, 9709, 19417 };
1244 niro 2493
1245 niro 2496 static int bma180_get_acc_reg(struct bma180_data *data, enum bma180_axis axis)
1246     {
1247     @@ -376,6 +376,8 @@ static int bma180_write_raw(struct iio_dev *indio_dev,
1248     mutex_unlock(&data->mutex);
1249     return ret;
1250     case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY:
1251     + if (val2)
1252     + return -EINVAL;
1253     mutex_lock(&data->mutex);
1254     ret = bma180_set_bw(data, val);
1255     mutex_unlock(&data->mutex);
1256     diff --git a/drivers/iio/industrialio-buffer.c b/drivers/iio/industrialio-buffer.c
1257     index e472cff6eeae..476b5a333066 100644
1258     --- a/drivers/iio/industrialio-buffer.c
1259     +++ b/drivers/iio/industrialio-buffer.c
1260     @@ -949,7 +949,7 @@ static int iio_buffer_update_demux(struct iio_dev *indio_dev,
1261 niro 2493
1262 niro 2496 /* Now we have the two masks, work from least sig and build up sizes */
1263     for_each_set_bit(out_ind,
1264     - indio_dev->active_scan_mask,
1265     + buffer->scan_mask,
1266     indio_dev->masklength) {
1267     in_ind = find_next_bit(indio_dev->active_scan_mask,
1268     indio_dev->masklength,
1269     diff --git a/drivers/md/dm-bufio.c b/drivers/md/dm-bufio.c
1270     index 66c5d130c8c2..0e722c103562 100644
1271     --- a/drivers/md/dm-bufio.c
1272     +++ b/drivers/md/dm-bufio.c
1273     @@ -1541,7 +1541,7 @@ struct dm_bufio_client *dm_bufio_client_create(struct block_device *bdev, unsign
1274     BUG_ON(block_size < 1 << SECTOR_SHIFT ||
1275     (block_size & (block_size - 1)));
1276 niro 2493
1277 niro 2496 - c = kmalloc(sizeof(*c), GFP_KERNEL);
1278     + c = kzalloc(sizeof(*c), GFP_KERNEL);
1279     if (!c) {
1280     r = -ENOMEM;
1281     goto bad_client;
1282     diff --git a/drivers/md/dm-cache-target.c b/drivers/md/dm-cache-target.c
1283     index 5f054c44b485..2c63326638b6 100644
1284     --- a/drivers/md/dm-cache-target.c
1285     +++ b/drivers/md/dm-cache-target.c
1286     @@ -231,7 +231,7 @@ struct cache {
1287     /*
1288     * cache_size entries, dirty if set
1289     */
1290     - dm_cblock_t nr_dirty;
1291     + atomic_t nr_dirty;
1292     unsigned long *dirty_bitset;
1293 niro 2493
1294 niro 2496 /*
1295     @@ -492,7 +492,7 @@ static bool is_dirty(struct cache *cache, dm_cblock_t b)
1296     static void set_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
1297 niro 2493 {
1298 niro 2496 if (!test_and_set_bit(from_cblock(cblock), cache->dirty_bitset)) {
1299     - cache->nr_dirty = to_cblock(from_cblock(cache->nr_dirty) + 1);
1300     + atomic_inc(&cache->nr_dirty);
1301     policy_set_dirty(cache->policy, oblock);
1302 niro 2493 }
1303 niro 2496 }
1304     @@ -501,8 +501,7 @@ static void clear_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cbl
1305 niro 2493 {
1306 niro 2496 if (test_and_clear_bit(from_cblock(cblock), cache->dirty_bitset)) {
1307     policy_clear_dirty(cache->policy, oblock);
1308     - cache->nr_dirty = to_cblock(from_cblock(cache->nr_dirty) - 1);
1309     - if (!from_cblock(cache->nr_dirty))
1310     + if (atomic_dec_return(&cache->nr_dirty) == 0)
1311     dm_table_event(cache->ti->table);
1312     }
1313     }
1314     @@ -2269,7 +2268,7 @@ static int cache_create(struct cache_args *ca, struct cache **result)
1315     atomic_set(&cache->quiescing_ack, 0);
1316 niro 2493
1317 niro 2496 r = -ENOMEM;
1318     - cache->nr_dirty = 0;
1319     + atomic_set(&cache->nr_dirty, 0);
1320     cache->dirty_bitset = alloc_bitset(from_cblock(cache->cache_size));
1321     if (!cache->dirty_bitset) {
1322     *error = "could not allocate dirty bitset";
1323     @@ -2808,7 +2807,7 @@ static void cache_status(struct dm_target *ti, status_type_t type,
1324 niro 2493
1325 niro 2496 residency = policy_residency(cache->policy);
1326 niro 2493
1327 niro 2496 - DMEMIT("%u %llu/%llu %u %llu/%llu %u %u %u %u %u %u %llu ",
1328     + DMEMIT("%u %llu/%llu %u %llu/%llu %u %u %u %u %u %u %lu ",
1329     (unsigned)(DM_CACHE_METADATA_BLOCK_SIZE >> SECTOR_SHIFT),
1330     (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
1331     (unsigned long long)nr_blocks_metadata,
1332     @@ -2821,7 +2820,7 @@ static void cache_status(struct dm_target *ti, status_type_t type,
1333     (unsigned) atomic_read(&cache->stats.write_miss),
1334     (unsigned) atomic_read(&cache->stats.demotion),
1335     (unsigned) atomic_read(&cache->stats.promotion),
1336     - (unsigned long long) from_cblock(cache->nr_dirty));
1337     + (unsigned long) atomic_read(&cache->nr_dirty));
1338    
1339     if (writethrough_mode(&cache->features))
1340     DMEMIT("1 writethrough ");
1341     diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c
1342     index 66acb2cbd9df..7c28cb55610b 100644
1343     --- a/drivers/net/wireless/ath/ath9k/xmit.c
1344     +++ b/drivers/net/wireless/ath/ath9k/xmit.c
1345     @@ -887,6 +887,15 @@ ath_tx_get_tid_subframe(struct ath_softc *sc, struct ath_txq *txq,
1346    
1347     tx_info = IEEE80211_SKB_CB(skb);
1348     tx_info->flags &= ~IEEE80211_TX_CTL_CLEAR_PS_FILT;
1349     +
1350     + /*
1351     + * No aggregation session is running, but there may be frames
1352     + * from a previous session or a failed attempt in the queue.
1353     + * Send them out as normal data frames
1354     + */
1355     + if (!tid->active)
1356     + tx_info->flags &= ~IEEE80211_TX_CTL_AMPDU;
1357     +
1358     if (!(tx_info->flags & IEEE80211_TX_CTL_AMPDU)) {
1359     bf->bf_state.bf_type = 0;
1360     return bf;
1361     diff --git a/drivers/pnp/pnpacpi/core.c b/drivers/pnp/pnpacpi/core.c
1362     index c31aa07b3ba5..da1c6cb1a41e 100644
1363     --- a/drivers/pnp/pnpacpi/core.c
1364     +++ b/drivers/pnp/pnpacpi/core.c
1365     @@ -339,8 +339,7 @@ static int __init acpi_pnp_match(struct device *dev, void *_pnp)
1366     struct pnp_dev *pnp = _pnp;
1367    
1368     /* true means it matched */
1369     - return !acpi->physical_node_count
1370     - && compare_pnp_id(pnp->id, acpi_device_hid(acpi));
1371     + return pnp->data == acpi;
1372     }
1373    
1374     static struct acpi_device * __init acpi_pnp_find_companion(struct device *dev)
1375     diff --git a/drivers/rapidio/devices/tsi721_dma.c b/drivers/rapidio/devices/tsi721_dma.c
1376     index 9b60b1f3261c..44341dc5b148 100644
1377     --- a/drivers/rapidio/devices/tsi721_dma.c
1378     +++ b/drivers/rapidio/devices/tsi721_dma.c
1379     @@ -287,6 +287,12 @@ struct tsi721_tx_desc *tsi721_desc_get(struct tsi721_bdma_chan *bdma_chan)
1380     "desc %p not ACKed\n", tx_desc);
1381 niro 2493 }
1382    
1383 niro 2496 + if (ret == NULL) {
1384     + dev_dbg(bdma_chan->dchan.device->dev,
1385     + "%s: unable to obtain tx descriptor\n", __func__);
1386     + goto err_out;
1387     + }
1388 niro 2493 +
1389 niro 2496 i = bdma_chan->wr_count_next % bdma_chan->bd_num;
1390     if (i == bdma_chan->bd_num - 1) {
1391     i = 0;
1392     @@ -297,7 +303,7 @@ struct tsi721_tx_desc *tsi721_desc_get(struct tsi721_bdma_chan *bdma_chan)
1393     tx_desc->txd.phys = bdma_chan->bd_phys +
1394     i * sizeof(struct tsi721_dma_desc);
1395     tx_desc->hw_desc = &((struct tsi721_dma_desc *)bdma_chan->bd_base)[i];
1396 niro 2493 -
1397 niro 2496 +err_out:
1398     spin_unlock_bh(&bdma_chan->lock);
1399 niro 2493
1400 niro 2496 return ret;
1401     diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
1402     index 9db097a28a74..d99ab3bfaaee 100644
1403     --- a/drivers/scsi/scsi_lib.c
1404     +++ b/drivers/scsi/scsi_lib.c
1405     @@ -806,6 +806,14 @@ void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes)
1406     scsi_next_command(cmd);
1407     return;
1408     }
1409     + } else if (blk_rq_bytes(req) == 0 && result && !sense_deferred) {
1410     + /*
1411     + * Certain non BLOCK_PC requests are commands that don't
1412     + * actually transfer anything (FLUSH), so cannot use
1413     + * good_bytes != blk_rq_bytes(req) as the signal for an error.
1414     + * This sets the error explicitly for the problem case.
1415     + */
1416     + error = __scsi_error_from_host_byte(cmd, result);
1417     }
1418 niro 2493
1419 niro 2496 /* no bidi support for !REQ_TYPE_BLOCK_PC yet */
1420     diff --git a/drivers/staging/vt6655/bssdb.c b/drivers/staging/vt6655/bssdb.c
1421     index d7efd0173a9a..7d7578872a84 100644
1422     --- a/drivers/staging/vt6655/bssdb.c
1423     +++ b/drivers/staging/vt6655/bssdb.c
1424     @@ -983,7 +983,7 @@ start:
1425     pDevice->byERPFlag &= ~(WLAN_SET_ERP_USE_PROTECTION(1));
1426     }
1427 niro 2493
1428 niro 2496 - {
1429     + if (pDevice->eCommandState == WLAN_ASSOCIATE_WAIT) {
1430     pDevice->byReAssocCount++;
1431     /* 10 sec timeout */
1432     if ((pDevice->byReAssocCount > 10) && (!pDevice->bLinkPass)) {
1433     diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
1434     index a952df1bf9d6..6f13f0e597f8 100644
1435     --- a/drivers/staging/vt6655/device_main.c
1436     +++ b/drivers/staging/vt6655/device_main.c
1437     @@ -2430,6 +2430,7 @@ static irqreturn_t device_intr(int irq, void *dev_instance) {
1438     int handled = 0;
1439     unsigned char byData = 0;
1440     int ii = 0;
1441     + unsigned long flags;
1442     // unsigned char byRSSI;
1443 niro 2493
1444 niro 2496 MACvReadISR(pDevice->PortOffset, &pDevice->dwIsr);
1445     @@ -2455,7 +2456,8 @@ static irqreturn_t device_intr(int irq, void *dev_instance) {
1446 niro 2493
1447 niro 2496 handled = 1;
1448     MACvIntDisable(pDevice->PortOffset);
1449     - spin_lock_irq(&pDevice->lock);
1450     +
1451     + spin_lock_irqsave(&pDevice->lock, flags);
1452 niro 2493
1453 niro 2496 //Make sure current page is 0
1454     VNSvInPortB(pDevice->PortOffset + MAC_REG_PAGE1SEL, &byOrgPageSel);
1455     @@ -2696,7 +2698,8 @@ static irqreturn_t device_intr(int irq, void *dev_instance) {
1456     MACvSelectPage1(pDevice->PortOffset);
1457 niro 2493 }
1458    
1459 niro 2496 - spin_unlock_irq(&pDevice->lock);
1460     + spin_unlock_irqrestore(&pDevice->lock, flags);
1461     +
1462     MACvIntEnable(pDevice->PortOffset, IMR_MASK_VALUE);
1463 niro 2493
1464 niro 2496 return IRQ_RETVAL(handled);
1465     diff --git a/fs/open.c b/fs/open.c
1466     index 9d64679cec73..dd24f21d31f7 100644
1467     --- a/fs/open.c
1468     +++ b/fs/open.c
1469     @@ -263,11 +263,10 @@ int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
1470     return -EPERM;
1471 niro 2493
1472 niro 2496 /*
1473     - * We can not allow to do any fallocate operation on an active
1474     - * swapfile
1475     + * We cannot allow any fallocate operation on an active swapfile
1476     */
1477     if (IS_SWAPFILE(inode))
1478     - ret = -ETXTBSY;
1479     + return -ETXTBSY;
1480 niro 2493
1481 niro 2496 /*
1482     * Revalidate the write permissions, in case security policy has
1483     diff --git a/include/dt-bindings/pinctrl/dra.h b/include/dt-bindings/pinctrl/dra.h
1484     index 002a2855c046..3d33794e4f3e 100644
1485     --- a/include/dt-bindings/pinctrl/dra.h
1486     +++ b/include/dt-bindings/pinctrl/dra.h
1487     @@ -30,7 +30,8 @@
1488     #define MUX_MODE14 0xe
1489     #define MUX_MODE15 0xf
1490 niro 2493
1491 niro 2496 -#define PULL_ENA (1 << 16)
1492     +#define PULL_ENA (0 << 16)
1493     +#define PULL_DIS (1 << 16)
1494     #define PULL_UP (1 << 17)
1495     #define INPUT_EN (1 << 18)
1496     #define SLEWCONTROL (1 << 19)
1497     @@ -38,10 +39,10 @@
1498     #define WAKEUP_EVENT (1 << 25)
1499 niro 2493
1500 niro 2496 /* Active pin states */
1501     -#define PIN_OUTPUT 0
1502     +#define PIN_OUTPUT (0 | PULL_DIS)
1503     #define PIN_OUTPUT_PULLUP (PIN_OUTPUT | PULL_ENA | PULL_UP)
1504     #define PIN_OUTPUT_PULLDOWN (PIN_OUTPUT | PULL_ENA)
1505     -#define PIN_INPUT INPUT_EN
1506     +#define PIN_INPUT (INPUT_EN | PULL_DIS)
1507     #define PIN_INPUT_SLEW (INPUT_EN | SLEWCONTROL)
1508     #define PIN_INPUT_PULLUP (PULL_ENA | INPUT_EN | PULL_UP)
1509     #define PIN_INPUT_PULLDOWN (PULL_ENA | INPUT_EN)
1510     diff --git a/include/linux/printk.h b/include/linux/printk.h
1511     index 8752f7595b27..7847301e2837 100644
1512     --- a/include/linux/printk.h
1513     +++ b/include/linux/printk.h
1514     @@ -128,9 +128,9 @@ asmlinkage __printf(1, 2) __cold
1515     int printk(const char *fmt, ...);
1516    
1517     /*
1518     - * Special printk facility for scheduler use only, _DO_NOT_USE_ !
1519     + * Special printk facility for scheduler/timekeeping use only, _DO_NOT_USE_ !
1520     */
1521     -__printf(1, 2) __cold int printk_sched(const char *fmt, ...);
1522     +__printf(1, 2) __cold int printk_deferred(const char *fmt, ...);
1523    
1524     /*
1525     * Please don't use printk_ratelimit(), because it shares ratelimiting state
1526     @@ -165,7 +165,7 @@ int printk(const char *s, ...)
1527     return 0;
1528 niro 2493 }
1529 niro 2496 static inline __printf(1, 2) __cold
1530     -int printk_sched(const char *s, ...)
1531     +int printk_deferred(const char *s, ...)
1532 niro 2493 {
1533 niro 2496 return 0;
1534 niro 2493 }
1535 niro 2496 diff --git a/init/main.c b/init/main.c
1536     index 48655ceb66f4..eb0ea86aefde 100644
1537     --- a/init/main.c
1538     +++ b/init/main.c
1539     @@ -617,6 +617,10 @@ asmlinkage __visible void __init start_kernel(void)
1540     if (efi_enabled(EFI_RUNTIME_SERVICES))
1541     efi_enter_virtual_mode();
1542     #endif
1543     +#ifdef CONFIG_X86_ESPFIX64
1544     + /* Should be run before the first non-init thread is created */
1545     + init_espfix_bsp();
1546     +#endif
1547     thread_info_cache_init();
1548     cred_init();
1549     fork_init(totalram_pages);
1550     diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c
1551     index 221229cf0190..63594befdd58 100644
1552     --- a/kernel/printk/printk.c
1553     +++ b/kernel/printk/printk.c
1554     @@ -2474,7 +2474,7 @@ void wake_up_klogd(void)
1555     preempt_enable();
1556 niro 2493 }
1557    
1558 niro 2496 -int printk_sched(const char *fmt, ...)
1559     +int printk_deferred(const char *fmt, ...)
1560 niro 2493 {
1561 niro 2496 unsigned long flags;
1562     va_list args;
1563     diff --git a/kernel/sched/core.c b/kernel/sched/core.c
1564     index 084d17f89139..8da7e4990427 100644
1565     --- a/kernel/sched/core.c
1566     +++ b/kernel/sched/core.c
1567     @@ -1320,7 +1320,7 @@ out:
1568     * leave kernel.
1569     */
1570     if (p->mm && printk_ratelimit()) {
1571     - printk_sched("process %d (%s) no longer affine to cpu%d\n",
1572     + printk_deferred("process %d (%s) no longer affine to cpu%d\n",
1573     task_pid_nr(p), p->comm, cpu);
1574     }
1575     }
1576     diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c
1577     index 14bc348ba3b4..34e054ddf50a 100644
1578     --- a/kernel/sched/deadline.c
1579     +++ b/kernel/sched/deadline.c
1580     @@ -352,7 +352,7 @@ static void replenish_dl_entity(struct sched_dl_entity *dl_se,
1581 niro 2493
1582 niro 2496 if (!lag_once) {
1583     lag_once = true;
1584     - printk_sched("sched: DL replenish lagged to much\n");
1585     + printk_deferred("sched: DL replenish lagged to much\n");
1586 niro 2493 }
1587 niro 2496 dl_se->deadline = rq_clock(rq) + pi_se->dl_deadline;
1588     dl_se->runtime = pi_se->dl_runtime;
1589     diff --git a/kernel/sched/rt.c b/kernel/sched/rt.c
1590     index bd2267ad404f..c19b3cc53b00 100644
1591     --- a/kernel/sched/rt.c
1592     +++ b/kernel/sched/rt.c
1593     @@ -857,7 +857,7 @@ static int sched_rt_runtime_exceeded(struct rt_rq *rt_rq)
1594 niro 2493
1595 niro 2496 if (!once) {
1596     once = true;
1597     - printk_sched("sched: RT throttling activated\n");
1598     + printk_deferred("sched: RT throttling activated\n");
1599     }
1600     } else {
1601     /*
1602     diff --git a/kernel/time/clockevents.c b/kernel/time/clockevents.c
1603     index ad362c260ef4..9c94c19f1305 100644
1604     --- a/kernel/time/clockevents.c
1605     +++ b/kernel/time/clockevents.c
1606     @@ -146,7 +146,8 @@ static int clockevents_increase_min_delta(struct clock_event_device *dev)
1607     {
1608     /* Nothing to do if we already reached the limit */
1609     if (dev->min_delta_ns >= MIN_DELTA_LIMIT) {
1610     - printk(KERN_WARNING "CE: Reprogramming failure. Giving up\n");
1611     + printk_deferred(KERN_WARNING
1612     + "CE: Reprogramming failure. Giving up\n");
1613     dev->next_event.tv64 = KTIME_MAX;
1614     return -ETIME;
1615 niro 2493 }
1616 niro 2496 @@ -159,9 +160,10 @@ static int clockevents_increase_min_delta(struct clock_event_device *dev)
1617     if (dev->min_delta_ns > MIN_DELTA_LIMIT)
1618     dev->min_delta_ns = MIN_DELTA_LIMIT;
1619 niro 2493
1620 niro 2496 - printk(KERN_WARNING "CE: %s increased min_delta_ns to %llu nsec\n",
1621     - dev->name ? dev->name : "?",
1622     - (unsigned long long) dev->min_delta_ns);
1623     + printk_deferred(KERN_WARNING
1624     + "CE: %s increased min_delta_ns to %llu nsec\n",
1625     + dev->name ? dev->name : "?",
1626     + (unsigned long long) dev->min_delta_ns);
1627     return 0;
1628     }
1629 niro 2493
1630 niro 2496 diff --git a/kernel/time/sched_clock.c b/kernel/time/sched_clock.c
1631     index 4d23dc4d8139..313a662911b1 100644
1632     --- a/kernel/time/sched_clock.c
1633     +++ b/kernel/time/sched_clock.c
1634     @@ -204,7 +204,8 @@ void __init sched_clock_postinit(void)
1635 niro 2493
1636 niro 2496 static int sched_clock_suspend(void)
1637     {
1638     - sched_clock_poll(&sched_clock_timer);
1639     + update_sched_clock();
1640     + hrtimer_cancel(&sched_clock_timer);
1641     cd.suspended = true;
1642     return 0;
1643 niro 2493 }
1644 niro 2496 @@ -212,6 +213,7 @@ static int sched_clock_suspend(void)
1645     static void sched_clock_resume(void)
1646 niro 2493 {
1647 niro 2496 cd.epoch_cyc = read_sched_clock();
1648     + hrtimer_start(&sched_clock_timer, cd.wrap_kt, HRTIMER_MODE_REL);
1649     cd.suspended = false;
1650 niro 2493 }
1651    
1652 niro 2496 diff --git a/lib/btree.c b/lib/btree.c
1653     index f9a484676cb6..4264871ea1a0 100644
1654     --- a/lib/btree.c
1655     +++ b/lib/btree.c
1656     @@ -198,6 +198,7 @@ EXPORT_SYMBOL_GPL(btree_init);
1657    
1658     void btree_destroy(struct btree_head *head)
1659 niro 2493 {
1660 niro 2496 + mempool_free(head->node, head->mempool);
1661     mempool_destroy(head->mempool);
1662     head->mempool = NULL;
1663 niro 2493 }
1664 niro 2496 diff --git a/mm/memcontrol.c b/mm/memcontrol.c
1665     index 67c927a10add..fe99d963b987 100644
1666     --- a/mm/memcontrol.c
1667     +++ b/mm/memcontrol.c
1668     @@ -5544,8 +5544,12 @@ static int mem_cgroup_oom_notify_cb(struct mem_cgroup *memcg)
1669 niro 2493 {
1670 niro 2496 struct mem_cgroup_eventfd_list *ev;
1671 niro 2493
1672 niro 2496 + spin_lock(&memcg_oom_lock);
1673 niro 2493 +
1674 niro 2496 list_for_each_entry(ev, &memcg->oom_notify, list)
1675     eventfd_signal(ev->eventfd, 1);
1676 niro 2493 +
1677 niro 2496 + spin_unlock(&memcg_oom_lock);
1678     return 0;
1679     }
1680 niro 2493
1681 niro 2496 diff --git a/mm/page-writeback.c b/mm/page-writeback.c
1682     index 154af210178b..f972182d4218 100644
1683     --- a/mm/page-writeback.c
1684     +++ b/mm/page-writeback.c
1685     @@ -1324,9 +1324,9 @@ static inline void bdi_dirty_limits(struct backing_dev_info *bdi,
1686     *bdi_thresh = bdi_dirty_limit(bdi, dirty_thresh);
1687 niro 2493
1688 niro 2496 if (bdi_bg_thresh)
1689     - *bdi_bg_thresh = div_u64((u64)*bdi_thresh *
1690     - background_thresh,
1691     - dirty_thresh);
1692     + *bdi_bg_thresh = dirty_thresh ? div_u64((u64)*bdi_thresh *
1693     + background_thresh,
1694     + dirty_thresh) : 0;
1695 niro 2493
1696 niro 2496 /*
1697     * In order to avoid the stacked BDI deadlock we need
1698     diff --git a/mm/page_alloc.c b/mm/page_alloc.c
1699     index d64f5f90000c..e98306fc4234 100644
1700     --- a/mm/page_alloc.c
1701     +++ b/mm/page_alloc.c
1702     @@ -2435,7 +2435,7 @@ static inline int
1703     gfp_to_alloc_flags(gfp_t gfp_mask)
1704     {
1705     int alloc_flags = ALLOC_WMARK_MIN | ALLOC_CPUSET;
1706     - const gfp_t wait = gfp_mask & __GFP_WAIT;
1707     + const bool atomic = !(gfp_mask & (__GFP_WAIT | __GFP_NO_KSWAPD));
1708 niro 2493
1709 niro 2496 /* __GFP_HIGH is assumed to be the same as ALLOC_HIGH to save a branch. */
1710     BUILD_BUG_ON(__GFP_HIGH != (__force gfp_t) ALLOC_HIGH);
1711     @@ -2444,20 +2444,20 @@ gfp_to_alloc_flags(gfp_t gfp_mask)
1712     * The caller may dip into page reserves a bit more if the caller
1713     * cannot run direct reclaim, or if the caller has realtime scheduling
1714     * policy or is asking for __GFP_HIGH memory. GFP_ATOMIC requests will
1715     - * set both ALLOC_HARDER (!wait) and ALLOC_HIGH (__GFP_HIGH).
1716     + * set both ALLOC_HARDER (atomic == true) and ALLOC_HIGH (__GFP_HIGH).
1717     */
1718     alloc_flags |= (__force int) (gfp_mask & __GFP_HIGH);
1719 niro 2493
1720 niro 2496 - if (!wait) {
1721     + if (atomic) {
1722     /*
1723     - * Not worth trying to allocate harder for
1724     - * __GFP_NOMEMALLOC even if it can't schedule.
1725     + * Not worth trying to allocate harder for __GFP_NOMEMALLOC even
1726     + * if it can't schedule.
1727     */
1728     - if (!(gfp_mask & __GFP_NOMEMALLOC))
1729     + if (!(gfp_mask & __GFP_NOMEMALLOC))
1730     alloc_flags |= ALLOC_HARDER;
1731     /*
1732     - * Ignore cpuset if GFP_ATOMIC (!wait) rather than fail alloc.
1733     - * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
1734     + * Ignore cpuset mems for GFP_ATOMIC rather than fail, see the
1735     + * comment for __cpuset_node_allowed_softwall().
1736     */
1737     alloc_flags &= ~ALLOC_CPUSET;
1738     } else if (unlikely(rt_task(current)) && !in_interrupt())
1739     diff --git a/net/l2tp/l2tp_ppp.c b/net/l2tp/l2tp_ppp.c
1740     index 950909f04ee6..13752d96275e 100644
1741     --- a/net/l2tp/l2tp_ppp.c
1742     +++ b/net/l2tp/l2tp_ppp.c
1743     @@ -1365,7 +1365,7 @@ static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
1744     int err;
1745 niro 2493
1746 niro 2496 if (level != SOL_PPPOL2TP)
1747     - return udp_prot.setsockopt(sk, level, optname, optval, optlen);
1748     + return -EINVAL;
1749 niro 2493
1750 niro 2496 if (optlen < sizeof(int))
1751     return -EINVAL;
1752     @@ -1491,7 +1491,7 @@ static int pppol2tp_getsockopt(struct socket *sock, int level, int optname,
1753     struct pppol2tp_session *ps;
1754 niro 2493
1755 niro 2496 if (level != SOL_PPPOL2TP)
1756     - return udp_prot.getsockopt(sk, level, optname, optval, optlen);
1757     + return -EINVAL;
1758 niro 2493
1759 niro 2496 if (get_user(len, optlen))
1760     return -EFAULT;
1761     diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
1762     index 19d36d4117e0..1fbb057b2db1 100644
1763     --- a/net/mac80211/tx.c
1764     +++ b/net/mac80211/tx.c
1765     @@ -414,6 +414,9 @@ ieee80211_tx_h_multicast_ps_buf(struct ieee80211_tx_data *tx)
1766     if (ieee80211_has_order(hdr->frame_control))
1767     return TX_CONTINUE;
1768    
1769     + if (ieee80211_is_probe_req(hdr->frame_control))
1770     + return TX_CONTINUE;
1771 niro 2493 +
1772 niro 2496 if (tx->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
1773     info->hw_queue = tx->sdata->vif.cab_queue;
1774    
1775     @@ -463,6 +466,7 @@ ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
1776 niro 2493 {
1777 niro 2496 struct sta_info *sta = tx->sta;
1778     struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
1779     + struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
1780     struct ieee80211_local *local = tx->local;
1781 niro 2493
1782 niro 2496 if (unlikely(!sta))
1783     @@ -473,6 +477,12 @@ ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
1784     !(info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER))) {
1785     int ac = skb_get_queue_mapping(tx->skb);
1786 niro 2493
1787 niro 2496 + if (ieee80211_is_mgmt(hdr->frame_control) &&
1788     + !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
1789     + info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
1790     + return TX_CONTINUE;
1791     + }
1792     +
1793     ps_dbg(sta->sdata, "STA %pM aid %d: PS buffer for AC %d\n",
1794     sta->sta.addr, sta->sta.aid, ac);
1795     if (tx->local->total_ps_buffered >= TOTAL_MAX_TX_BUFFER)
1796     @@ -531,19 +541,9 @@ ieee80211_tx_h_unicast_ps_buf(struct ieee80211_tx_data *tx)
1797     static ieee80211_tx_result debug_noinline
1798     ieee80211_tx_h_ps_buf(struct ieee80211_tx_data *tx)
1799 niro 2493 {
1800 niro 2496 - struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx->skb);
1801     - struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)tx->skb->data;
1802     -
1803     if (unlikely(tx->flags & IEEE80211_TX_PS_BUFFERED))
1804     return TX_CONTINUE;
1805 niro 2493
1806 niro 2496 - if (ieee80211_is_mgmt(hdr->frame_control) &&
1807     - !ieee80211_is_bufferable_mmpdu(hdr->frame_control)) {
1808     - if (tx->flags & IEEE80211_TX_UNICAST)
1809     - info->flags |= IEEE80211_TX_CTL_NO_PS_BUFFER;
1810     - return TX_CONTINUE;
1811     - }
1812 niro 2493 -
1813 niro 2496 if (tx->flags & IEEE80211_TX_UNICAST)
1814     return ieee80211_tx_h_unicast_ps_buf(tx);
1815     else
1816     diff --git a/net/wireless/trace.h b/net/wireless/trace.h
1817     index aabccf13e07b..0a46eba04a4a 100644
1818     --- a/net/wireless/trace.h
1819     +++ b/net/wireless/trace.h
1820     @@ -2072,7 +2072,8 @@ TRACE_EVENT(cfg80211_michael_mic_failure,
1821     MAC_ASSIGN(addr, addr);
1822     __entry->key_type = key_type;
1823     __entry->key_id = key_id;
1824     - memcpy(__entry->tsc, tsc, 6);
1825     + if (tsc)
1826     + memcpy(__entry->tsc, tsc, 6);
1827     ),
1828     TP_printk(NETDEV_PR_FMT ", " MAC_PR_FMT ", key type: %d, key id: %d, tsc: %pm",
1829     NETDEV_PR_ARG, MAC_PR_ARG(addr), __entry->key_type,