+++ /dev/null
-From 6c62f4f91e1c58c72add0647e08d3420391ba8b8 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 15 Aug 2019 19:32:46 +0800
-Subject: lib/stackdepot: Fix outdated comments
-
-From: Miles Chen <miles.chen@mediatek.com>
-
-[ Upstream commit ee050dc83bc326ad5ef8ee93bca344819371e7a5 ]
-
-Replace "depot_save_stack" with "stack_depot_save" in code comments because
-depot_save_stack() was replaced in commit c0cfc337264c ("lib/stackdepot:
-Provide functions which operate on plain storage arrays") and removed in
-commit 56d8f079c51a ("lib/stackdepot: Remove obsolete functions")
-
-Signed-off-by: Miles Chen <miles.chen@mediatek.com>
-Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-Link: https://lkml.kernel.org/r/20190815113246.18478-1-miles.chen@mediatek.com
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- lib/stackdepot.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/lib/stackdepot.c b/lib/stackdepot.c
-index f87d138e96724..1724cb0d6283f 100644
---- a/lib/stackdepot.c
-+++ b/lib/stackdepot.c
-@@ -96,7 +96,7 @@ static bool init_stack_slab(void **prealloc)
- stack_slabs[depot_index + 1] = *prealloc;
- /*
- * This smp_store_release pairs with smp_load_acquire() from
-- * |next_slab_inited| above and in depot_save_stack().
-+ * |next_slab_inited| above and in stack_depot_save().
- */
- smp_store_release(&next_slab_inited, 1);
- }
-@@ -123,7 +123,7 @@ static struct stack_record *depot_alloc_stack(unsigned long *entries, int size,
- depot_offset = 0;
- /*
- * smp_store_release() here pairs with smp_load_acquire() from
-- * |next_slab_inited| in depot_save_stack() and
-+ * |next_slab_inited| in stack_depot_save() and
- * init_stack_slab().
- */
- if (depot_index + 1 < STACK_ALLOC_MAX_SLABS)
---
-2.20.1
-
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
- lib/stackdepot.c | 8 ++++++--
+ lib/stackdepot.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
-diff --git a/lib/stackdepot.c b/lib/stackdepot.c
-index 1724cb0d6283f..54fe55b6bbc0a 100644
--- a/lib/stackdepot.c
+++ b/lib/stackdepot.c
-@@ -92,15 +92,19 @@ static bool init_stack_slab(void **prealloc)
+@@ -92,15 +92,19 @@ static bool init_stack_slab(void **preal
return true;
if (stack_slabs[depot_index] == NULL) {
stack_slabs[depot_index] = *prealloc;
+ }
/*
* This smp_store_release pairs with smp_load_acquire() from
- * |next_slab_inited| above and in stack_depot_save().
+ * |next_slab_inited| above and in depot_save_stack().
*/
smp_store_release(&next_slab_inited, 1);
}
return true;
}
---
-2.20.1
-
vt_resizex-get-rid-of-field-by-field-copyin.patch
vt-vt_ioctl-fix-race-in-vt_resizex.patch
serial-8250-check-upf_irq_shared-in-advance.patch
-lib-stackdepot-fix-outdated-comments.patch
lib-stackdepot.c-fix-global-out-of-bounds-in-stack_s.patch
kvm-nvmx-don-t-emulate-instructions-in-guest-mode.patch
ext4-fix-a-data-race-in-ext4_i-inode-i_disksize.patch
+++ /dev/null
-From 844d3e76628130384370c6ffa0c2db3da374bce4 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 15 Aug 2019 19:32:46 +0800
-Subject: lib/stackdepot: Fix outdated comments
-
-From: Miles Chen <miles.chen@mediatek.com>
-
-[ Upstream commit ee050dc83bc326ad5ef8ee93bca344819371e7a5 ]
-
-Replace "depot_save_stack" with "stack_depot_save" in code comments because
-depot_save_stack() was replaced in commit c0cfc337264c ("lib/stackdepot:
-Provide functions which operate on plain storage arrays") and removed in
-commit 56d8f079c51a ("lib/stackdepot: Remove obsolete functions")
-
-Signed-off-by: Miles Chen <miles.chen@mediatek.com>
-Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-Link: https://lkml.kernel.org/r/20190815113246.18478-1-miles.chen@mediatek.com
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- lib/stackdepot.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/lib/stackdepot.c b/lib/stackdepot.c
-index e513459a5601a..c5e06c43228f9 100644
---- a/lib/stackdepot.c
-+++ b/lib/stackdepot.c
-@@ -96,7 +96,7 @@ static bool init_stack_slab(void **prealloc)
- stack_slabs[depot_index + 1] = *prealloc;
- /*
- * This smp_store_release pairs with smp_load_acquire() from
-- * |next_slab_inited| above and in depot_save_stack().
-+ * |next_slab_inited| above and in stack_depot_save().
- */
- smp_store_release(&next_slab_inited, 1);
- }
-@@ -123,7 +123,7 @@ static struct stack_record *depot_alloc_stack(unsigned long *entries, int size,
- depot_offset = 0;
- /*
- * smp_store_release() here pairs with smp_load_acquire() from
-- * |next_slab_inited| in depot_save_stack() and
-+ * |next_slab_inited| in stack_depot_save() and
- * init_stack_slab().
- */
- if (depot_index + 1 < STACK_ALLOC_MAX_SLABS)
---
-2.20.1
-
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
- lib/stackdepot.c | 8 ++++++--
+ lib/stackdepot.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
-diff --git a/lib/stackdepot.c b/lib/stackdepot.c
-index c5e06c43228f9..34c71973932e0 100644
--- a/lib/stackdepot.c
+++ b/lib/stackdepot.c
-@@ -92,15 +92,19 @@ static bool init_stack_slab(void **prealloc)
+@@ -92,15 +92,19 @@ static bool init_stack_slab(void **preal
return true;
if (stack_slabs[depot_index] == NULL) {
stack_slabs[depot_index] = *prealloc;
+ }
/*
* This smp_store_release pairs with smp_load_acquire() from
- * |next_slab_inited| above and in stack_depot_save().
+ * |next_slab_inited| above and in depot_save_stack().
*/
smp_store_release(&next_slab_inited, 1);
}
return true;
}
---
-2.20.1
-
tty-serial-qcom_geni_serial-remove-set_rfr_wm-and-re.patch
tty-serial-qcom_geni_serial-remove-xfer_mode-variabl.patch
tty-serial-qcom_geni_serial-fix-rx-cancel-command-fa.patch
-lib-stackdepot-fix-outdated-comments.patch
lib-stackdepot.c-fix-global-out-of-bounds-in-stack_s.patch
drm-nouveau-kms-gv100-re-set-lut-after-clearing-for-.patch
ext4-fix-a-data-race-in-ext4_i-inode-i_disksize.patch
+++ /dev/null
-From 8cb561148e3470eefbd847cf13f1073256115caf Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 15 Aug 2019 19:32:46 +0800
-Subject: lib/stackdepot: Fix outdated comments
-
-From: Miles Chen <miles.chen@mediatek.com>
-
-[ Upstream commit ee050dc83bc326ad5ef8ee93bca344819371e7a5 ]
-
-Replace "depot_save_stack" with "stack_depot_save" in code comments because
-depot_save_stack() was replaced in commit c0cfc337264c ("lib/stackdepot:
-Provide functions which operate on plain storage arrays") and removed in
-commit 56d8f079c51a ("lib/stackdepot: Remove obsolete functions")
-
-Signed-off-by: Miles Chen <miles.chen@mediatek.com>
-Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-Link: https://lkml.kernel.org/r/20190815113246.18478-1-miles.chen@mediatek.com
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- lib/stackdepot.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/lib/stackdepot.c b/lib/stackdepot.c
-index f87d138e96724..1724cb0d6283f 100644
---- a/lib/stackdepot.c
-+++ b/lib/stackdepot.c
-@@ -96,7 +96,7 @@ static bool init_stack_slab(void **prealloc)
- stack_slabs[depot_index + 1] = *prealloc;
- /*
- * This smp_store_release pairs with smp_load_acquire() from
-- * |next_slab_inited| above and in depot_save_stack().
-+ * |next_slab_inited| above and in stack_depot_save().
- */
- smp_store_release(&next_slab_inited, 1);
- }
-@@ -123,7 +123,7 @@ static struct stack_record *depot_alloc_stack(unsigned long *entries, int size,
- depot_offset = 0;
- /*
- * smp_store_release() here pairs with smp_load_acquire() from
-- * |next_slab_inited| in depot_save_stack() and
-+ * |next_slab_inited| in stack_depot_save() and
- * init_stack_slab().
- */
- if (depot_index + 1 < STACK_ALLOC_MAX_SLABS)
---
-2.20.1
-
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
- lib/stackdepot.c | 8 ++++++--
+ lib/stackdepot.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
-diff --git a/lib/stackdepot.c b/lib/stackdepot.c
-index 1724cb0d6283f..54fe55b6bbc0a 100644
--- a/lib/stackdepot.c
+++ b/lib/stackdepot.c
-@@ -92,15 +92,19 @@ static bool init_stack_slab(void **prealloc)
+@@ -92,15 +92,19 @@ static bool init_stack_slab(void **preal
return true;
if (stack_slabs[depot_index] == NULL) {
stack_slabs[depot_index] = *prealloc;
+ }
/*
* This smp_store_release pairs with smp_load_acquire() from
- * |next_slab_inited| above and in stack_depot_save().
+ * |next_slab_inited| above and in depot_save_stack().
*/
smp_store_release(&next_slab_inited, 1);
}
return true;
}
---
-2.20.1
-
kvm-x86-don-t-notify-userspace-ioapic-on-edge-triggered-interrupt-eoi.patch
vt_resizex-get-rid-of-field-by-field-copyin.patch
vt-vt_ioctl-fix-race-in-vt_resizex.patch
-lib-stackdepot-fix-outdated-comments.patch
lib-stackdepot.c-fix-global-out-of-bounds-in-stack_s.patch
kvm-nvmx-don-t-emulate-instructions-in-guest-mode.patch
netfilter-xt_bpf-add-overflow-checks.patch