aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.14/046-UBI-avoid-workqueue-format-string-leak.patch
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2015-04-11 10:28:14 +0000
committerLuka Perkov <luka@openwrt.org>2015-04-11 10:28:14 +0000
commit4398ecd73dcf8554c0e495de082e4677440c1d5c (patch)
treee24faee648bd7fe02dcdb4a9f916f88324797735 /target/linux/generic/patches-3.14/046-UBI-avoid-workqueue-format-string-leak.patch
parentadb7aa14be1321e4ee57b2564edeb558d7eedcda (diff)
downloadupstream-4398ecd73dcf8554c0e495de082e4677440c1d5c.tar.gz
upstream-4398ecd73dcf8554c0e495de082e4677440c1d5c.tar.bz2
upstream-4398ecd73dcf8554c0e495de082e4677440c1d5c.zip
generic: drop 3.14
Signed-off-by: Luka Perkov <luka@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45375 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-3.14/046-UBI-avoid-workqueue-format-string-leak.patch')
-rw-r--r--target/linux/generic/patches-3.14/046-UBI-avoid-workqueue-format-string-leak.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/generic/patches-3.14/046-UBI-avoid-workqueue-format-string-leak.patch b/target/linux/generic/patches-3.14/046-UBI-avoid-workqueue-format-string-leak.patch
deleted file mode 100644
index 41ef6b8499..0000000000
--- a/target/linux/generic/patches-3.14/046-UBI-avoid-workqueue-format-string-leak.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From bebfef150e0b8fa68704cddacf05b8c26462d565 Mon Sep 17 00:00:00 2001
-From: Kees Cook <keescook@chromium.org>
-Date: Mon, 7 Apr 2014 21:44:07 -0700
-Subject: [PATCH] UBI: avoid workqueue format string leak
-
-When building the name for the workqueue thread, make sure a format
-string cannot leak in from the disk name.
-
-Signed-off-by: Kees Cook <keescook@chromium.org>
-Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
----
- drivers/mtd/ubi/block.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/drivers/mtd/ubi/block.c
-+++ b/drivers/mtd/ubi/block.c
-@@ -431,7 +431,7 @@ int ubiblock_create(struct ubi_volume_in
- * Create one workqueue per volume (per registered block device).
- * Rembember workqueues are cheap, they're not threads.
- */
-- dev->wq = alloc_workqueue(gd->disk_name, 0, 0);
-+ dev->wq = alloc_workqueue("%s", 0, 0, gd->disk_name);
- if (!dev->wq)
- goto out_free_queue;
- INIT_WORK(&dev->work, ubiblock_do_work);