Re: [Patch] slub: Fix a missing-check bug in mm/slub.c file of Linux 5.1.1

2019-05-19 Thread David Rientjes
On Wed, 15 May 2019, Gen Zhang wrote: > Pointer s is allocated with kmem_cache_zalloc(). And s is used in the > follwoing codes. However, when kmem_cache_zalloc fails, using s will > cause null pointer dereference and the kernel will go wrong. Thus we > check whether the kmem_cache_zalloc fails.

[Patch] slub: Fix a missing-check bug in mm/slub.c file of Linux 5.1.1

2019-05-14 Thread Gen Zhang
Pointer s is allocated with kmem_cache_zalloc(). And s is used in the follwoing codes. However, when kmem_cache_zalloc fails, using s will cause null pointer dereference and the kernel will go wrong. Thus we check whether the kmem_cache_zalloc fails. Signed-off-by: Gen Zhang --- --- mm/slub.c

[Patch] slub: Fix a missing-check bug in mm/slub.c file of Linux 5.1.1

2019-05-13 Thread Gen Zhang
Pointer s is allocated with kmem_cache_zalloc(). And s is used in the follwoing codes. However, when kmem_cache_zalloc fails, using s will cause null pointer dereference and the kernel will go wrong. Thus we check whether the kmem_cache_zalloc fails. Signed-off-by: Gen Zhang --- --- mm/slub.c

Re: Linux 5.1.1

2019-05-10 Thread Bhaskar Chowdhury
ivers: hv: vmbus: Remove the undesired put_cpu_ptr() in hv_synic_cleanup() Giridhar Malavali (1): scsi: qla2xxx: Set remote port devloss timeout to 0 Greg Kroah-Hartman (1): Linux 5.1.1 Gregory CLEMENT (1): cpufreq: armada-37xx: fix frequency calculation for opp Hans de Goe

Linux 5.1.1

2019-05-10 Thread Greg KH
ui (1): Drivers: hv: vmbus: Remove the undesired put_cpu_ptr() in hv_synic_cleanup() Giridhar Malavali (1): scsi: qla2xxx: Set remote port devloss timeout to 0 Greg Kroah-Hartman (1): Linux 5.1.1 Gregory CLEMENT (1): cpufreq: armada-37xx: fix frequency calculation for opp Hans de

Re: Linux 5.1.1

2019-05-10 Thread Greg KH
diff --git a/Makefile b/Makefile index 26c92f892d24..bf604f77e5e5 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 1 -SUBLEVEL = 0 +SUBLEVEL = 1 EXTRAVERSION = NAME = Shy Crocodile diff --git a/arch/arm64/include/asm/futex.h b/a