]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
4.9-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Mar 2019 20:26:12 +0000 (21:26 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Mar 2019 20:26:12 +0000 (21:26 +0100)
added patches:
device-property-fix-the-length-used-in-property_entry_string.patch
i2c-tegra-fix-maximum-transfer-size.patch
intel_th-don-t-reference-unassigned-outputs.patch
kernel-sysctl.c-add-missing-range-check-in-do_proc_dointvec_minmax_conv.patch
mm-hwpoison-fix-thp-split-handing-in-soft_offline_in_use_page.patch
mm-vmalloc-fix-size-check-for-remap_vmalloc_range_partial.patch
nfit-acpi_nfit_ctl-check-out_obj-type-in-the-right-place.patch
parport_pc-fix-find_superio-io-compare-code-should-use-equal-test.patch

queue-4.9/device-property-fix-the-length-used-in-property_entry_string.patch [new file with mode: 0644]
queue-4.9/i2c-tegra-fix-maximum-transfer-size.patch [new file with mode: 0644]
queue-4.9/intel_th-don-t-reference-unassigned-outputs.patch [new file with mode: 0644]
queue-4.9/kernel-sysctl.c-add-missing-range-check-in-do_proc_dointvec_minmax_conv.patch [new file with mode: 0644]
queue-4.9/mm-hwpoison-fix-thp-split-handing-in-soft_offline_in_use_page.patch [new file with mode: 0644]
queue-4.9/mm-vmalloc-fix-size-check-for-remap_vmalloc_range_partial.patch [new file with mode: 0644]
queue-4.9/nfit-acpi_nfit_ctl-check-out_obj-type-in-the-right-place.patch [new file with mode: 0644]
queue-4.9/parport_pc-fix-find_superio-io-compare-code-should-use-equal-test.patch [new file with mode: 0644]
queue-4.9/series

diff --git a/queue-4.9/device-property-fix-the-length-used-in-property_entry_string.patch b/queue-4.9/device-property-fix-the-length-used-in-property_entry_string.patch
new file mode 100644 (file)
index 0000000..25b0478
--- /dev/null
@@ -0,0 +1,42 @@
+From 2b6e492467c78183bb629bb0a100ea3509b615a5 Mon Sep 17 00:00:00 2001
+From: Heikki Krogerus <heikki.krogerus@linux.intel.com>
+Date: Wed, 23 Jan 2019 17:44:16 +0300
+Subject: device property: Fix the length used in PROPERTY_ENTRY_STRING()
+
+From: Heikki Krogerus <heikki.krogerus@linux.intel.com>
+
+commit 2b6e492467c78183bb629bb0a100ea3509b615a5 upstream.
+
+With string type property entries we need to use
+sizeof(const char *) instead of the number of characters as
+the length of the entry.
+
+If the string was shorter then sizeof(const char *),
+attempts to read it would have failed with -EOVERFLOW. The
+problem has been hidden because all build-in string
+properties have had a string longer then 8 characters until
+now.
+
+Fixes: a85f42047533 ("device property: helper macros for property entry creation")
+Cc: 4.5+ <stable@vger.kernel.org> # 4.5+
+Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
+Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
+Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+
+---
+ include/linux/property.h |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/include/linux/property.h
++++ b/include/linux/property.h
+@@ -233,7 +233,7 @@ struct property_entry {
+ #define PROPERTY_ENTRY_STRING(_name_, _val_)          \
+ (struct property_entry) {                             \
+       .name = _name_,                                 \
+-      .length = sizeof(_val_),                        \
++      .length = sizeof(const char *),                 \
+       .is_string = true,                              \
+       { .value = { .str = _val_ } },                  \
+ }
diff --git a/queue-4.9/i2c-tegra-fix-maximum-transfer-size.patch b/queue-4.9/i2c-tegra-fix-maximum-transfer-size.patch
new file mode 100644 (file)
index 0000000..cb38877
--- /dev/null
@@ -0,0 +1,37 @@
+From f4e3f4ae1d9c9330de355f432b69952e8cef650c Mon Sep 17 00:00:00 2001
+From: Sowjanya Komatineni <skomatineni@nvidia.com>
+Date: Tue, 12 Feb 2019 11:06:44 -0800
+Subject: i2c: tegra: fix maximum transfer size
+
+From: Sowjanya Komatineni <skomatineni@nvidia.com>
+
+commit f4e3f4ae1d9c9330de355f432b69952e8cef650c upstream.
+
+Tegra186 and prior supports maximum 4K bytes per packet transfer
+including 12 bytes of packet header.
+
+This patch fixes max write length limit to account packet header
+size for transfers.
+
+Cc: stable@vger.kernel.org # 4.4+
+
+Reviewed-by: Dmitry Osipenko <digetx@gmail.com>
+Signed-off-by: Sowjanya Komatineni <skomatineni@nvidia.com>
+Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/i2c/busses/i2c-tegra.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/i2c/busses/i2c-tegra.c
++++ b/drivers/i2c/busses/i2c-tegra.c
+@@ -794,7 +794,7 @@ static const struct i2c_algorithm tegra_
+ /* payload size is only 12 bit */
+ static struct i2c_adapter_quirks tegra_i2c_quirks = {
+       .max_read_len = 4096,
+-      .max_write_len = 4096,
++      .max_write_len = 4096 - 12,
+ };
+ static const struct tegra_i2c_hw_feature tegra20_i2c_hw = {
diff --git a/queue-4.9/intel_th-don-t-reference-unassigned-outputs.patch b/queue-4.9/intel_th-don-t-reference-unassigned-outputs.patch
new file mode 100644 (file)
index 0000000..3a062ec
--- /dev/null
@@ -0,0 +1,58 @@
+From 9ed3f22223c33347ed963e7c7019cf2956dd4e37 Mon Sep 17 00:00:00 2001
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Date: Thu, 24 Jan 2019 15:11:53 +0200
+Subject: intel_th: Don't reference unassigned outputs
+
+From: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+
+commit 9ed3f22223c33347ed963e7c7019cf2956dd4e37 upstream.
+
+When an output port driver is removed, also remove references to it from
+any masters. Failing to do this causes a NULL ptr dereference when
+configuring another output port:
+
+> BUG: unable to handle kernel NULL pointer dereference at 000000000000000d
+> RIP: 0010:master_attr_store+0x9d/0x160 [intel_th_gth]
+> Call Trace:
+> dev_attr_store+0x1b/0x30
+> sysfs_kf_write+0x3c/0x50
+> kernfs_fop_write+0x125/0x1a0
+> __vfs_write+0x3a/0x190
+> ? __vfs_write+0x5/0x190
+> ? _cond_resched+0x1a/0x50
+> ? rcu_all_qs+0x5/0xb0
+> ? __vfs_write+0x5/0x190
+> vfs_write+0xb8/0x1b0
+> ksys_write+0x55/0xc0
+> __x64_sys_write+0x1a/0x20
+> do_syscall_64+0x5a/0x140
+> entry_SYSCALL_64_after_hwframe+0x44/0xa9
+
+Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+Fixes: b27a6a3f97b9 ("intel_th: Add Global Trace Hub driver")
+CC: stable@vger.kernel.org # v4.4+
+Reported-by: Ammy Yi <ammy.yi@intel.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/hwtracing/intel_th/gth.c |    4 ++++
+ 1 file changed, 4 insertions(+)
+
+--- a/drivers/hwtracing/intel_th/gth.c
++++ b/drivers/hwtracing/intel_th/gth.c
+@@ -599,11 +599,15 @@ static void intel_th_gth_unassign(struct
+ {
+       struct gth_device *gth = dev_get_drvdata(&thdev->dev);
+       int port = othdev->output.port;
++      int master;
+       spin_lock(&gth->gth_lock);
+       othdev->output.port = -1;
+       othdev->output.active = false;
+       gth->output[port].output = NULL;
++      for (master = 0; master < TH_CONFIGURABLE_MASTERS; master++)
++              if (gth->master[master] == port)
++                      gth->master[master] = -1;
+       spin_unlock(&gth->gth_lock);
+ }
diff --git a/queue-4.9/kernel-sysctl.c-add-missing-range-check-in-do_proc_dointvec_minmax_conv.patch b/queue-4.9/kernel-sysctl.c-add-missing-range-check-in-do_proc_dointvec_minmax_conv.patch
new file mode 100644 (file)
index 0000000..dc9d1f5
--- /dev/null
@@ -0,0 +1,52 @@
+From 8cf7630b29701d364f8df4a50e4f1f5e752b2778 Mon Sep 17 00:00:00 2001
+From: Zev Weiss <zev@bewilderbeest.net>
+Date: Mon, 11 Mar 2019 23:28:02 -0700
+Subject: kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv
+
+From: Zev Weiss <zev@bewilderbeest.net>
+
+commit 8cf7630b29701d364f8df4a50e4f1f5e752b2778 upstream.
+
+This bug has apparently existed since the introduction of this function
+in the pre-git era (4500e91754d3 in Thomas Gleixner's history.git,
+"[NET]: Add proc_dointvec_userhz_jiffies, use it for proper handling of
+neighbour sysctls.").
+
+As a minimal fix we can simply duplicate the corresponding check in
+do_proc_dointvec_conv().
+
+Link: http://lkml.kernel.org/r/20190207123426.9202-3-zev@bewilderbeest.net
+Signed-off-by: Zev Weiss <zev@bewilderbeest.net>
+Cc: Brendan Higgins <brendanhiggins@google.com>
+Cc: Iurii Zaikin <yzaikin@google.com>
+Cc: Kees Cook <keescook@chromium.org>
+Cc: Luis Chamberlain <mcgrof@kernel.org>
+Cc: <stable@vger.kernel.org>   [2.6.2+]
+Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
+Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ kernel/sysctl.c |   11 ++++++++++-
+ 1 file changed, 10 insertions(+), 1 deletion(-)
+
+--- a/kernel/sysctl.c
++++ b/kernel/sysctl.c
+@@ -2377,7 +2377,16 @@ static int do_proc_dointvec_minmax_conv(
+ {
+       struct do_proc_dointvec_minmax_conv_param *param = data;
+       if (write) {
+-              int val = *negp ? -*lvalp : *lvalp;
++              int val;
++              if (*negp) {
++                      if (*lvalp > (unsigned long) INT_MAX + 1)
++                              return -EINVAL;
++                      val = -*lvalp;
++              } else {
++                      if (*lvalp > (unsigned long) INT_MAX)
++                              return -EINVAL;
++                      val = *lvalp;
++              }
+               if ((param->min && *param->min > val) ||
+                   (param->max && *param->max < val))
+                       return -EINVAL;
diff --git a/queue-4.9/mm-hwpoison-fix-thp-split-handing-in-soft_offline_in_use_page.patch b/queue-4.9/mm-hwpoison-fix-thp-split-handing-in-soft_offline_in_use_page.patch
new file mode 100644 (file)
index 0000000..1f32504
--- /dev/null
@@ -0,0 +1,76 @@
+From 46612b751c4941c5c0472ddf04027e877ae5990f Mon Sep 17 00:00:00 2001
+From: zhongjiang <zhongjiang@huawei.com>
+Date: Tue, 5 Mar 2019 15:41:16 -0800
+Subject: mm: hwpoison: fix thp split handing in soft_offline_in_use_page()
+
+From: zhongjiang <zhongjiang@huawei.com>
+
+commit 46612b751c4941c5c0472ddf04027e877ae5990f upstream.
+
+When soft_offline_in_use_page() runs on a thp tail page after pmd is
+split, we trigger the following VM_BUG_ON_PAGE():
+
+  Memory failure: 0x3755ff: non anonymous thp
+  __get_any_page: 0x3755ff: unknown zero refcount page type 2fffff80000000
+  Soft offlining pfn 0x34d805 at process virtual address 0x20fff000
+  page:ffffea000d360140 count:0 mapcount:0 mapping:0000000000000000 index:0x1
+  flags: 0x2fffff80000000()
+  raw: 002fffff80000000 ffffea000d360108 ffffea000d360188 0000000000000000
+  raw: 0000000000000001 0000000000000000 00000000ffffffff 0000000000000000
+  page dumped because: VM_BUG_ON_PAGE(page_ref_count(page) == 0)
+  ------------[ cut here ]------------
+  kernel BUG at ./include/linux/mm.h:519!
+
+soft_offline_in_use_page() passed refcount and page lock from tail page
+to head page, which is not needed because we can pass any subpage to
+split_huge_page().
+
+Naoya had fixed a similar issue in c3901e722b29 ("mm: hwpoison: fix thp
+split handling in memory_failure()").  But he missed fixing soft
+offline.
+
+Link: http://lkml.kernel.org/r/1551452476-24000-1-git-send-email-zhongjiang@huawei.com
+Fixes: 61f5d698cc97 ("mm: re-enable THP")
+Signed-off-by: zhongjiang <zhongjiang@huawei.com>
+Acked-by: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
+Cc: Michal Hocko <mhocko@suse.com>
+Cc: Hugh Dickins <hughd@google.com>
+Cc: Kirill A. Shutemov <kirill@shutemov.name>
+Cc: Andrea Arcangeli <aarcange@redhat.com>
+Cc: <stable@vger.kernel.org>   [4.5+]
+Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
+Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ mm/memory-failure.c |   14 ++++++--------
+ 1 file changed, 6 insertions(+), 8 deletions(-)
+
+--- a/mm/memory-failure.c
++++ b/mm/memory-failure.c
+@@ -1705,19 +1705,17 @@ static int soft_offline_in_use_page(stru
+       struct page *hpage = compound_head(page);
+       if (!PageHuge(page) && PageTransHuge(hpage)) {
+-              lock_page(hpage);
+-              if (!PageAnon(hpage) || unlikely(split_huge_page(hpage))) {
+-                      unlock_page(hpage);
+-                      if (!PageAnon(hpage))
++              lock_page(page);
++              if (!PageAnon(page) || unlikely(split_huge_page(page))) {
++                      unlock_page(page);
++                      if (!PageAnon(page))
+                               pr_info("soft offline: %#lx: non anonymous thp\n", page_to_pfn(page));
+                       else
+                               pr_info("soft offline: %#lx: thp split failed\n", page_to_pfn(page));
+-                      put_hwpoison_page(hpage);
++                      put_hwpoison_page(page);
+                       return -EBUSY;
+               }
+-              unlock_page(hpage);
+-              get_hwpoison_page(page);
+-              put_hwpoison_page(hpage);
++              unlock_page(page);
+       }
+       if (PageHuge(page))
diff --git a/queue-4.9/mm-vmalloc-fix-size-check-for-remap_vmalloc_range_partial.patch b/queue-4.9/mm-vmalloc-fix-size-check-for-remap_vmalloc_range_partial.patch
new file mode 100644 (file)
index 0000000..18e9028
--- /dev/null
@@ -0,0 +1,86 @@
+From 401592d2e095947344e10ec0623adbcd58934dd4 Mon Sep 17 00:00:00 2001
+From: Roman Penyaev <rpenyaev@suse.de>
+Date: Tue, 5 Mar 2019 15:43:20 -0800
+Subject: mm/vmalloc: fix size check for remap_vmalloc_range_partial()
+
+From: Roman Penyaev <rpenyaev@suse.de>
+
+commit 401592d2e095947344e10ec0623adbcd58934dd4 upstream.
+
+When VM_NO_GUARD is not set area->size includes adjacent guard page,
+thus for correct size checking get_vm_area_size() should be used, but
+not area->size.
+
+This fixes possible kernel oops when userspace tries to mmap an area on
+1 page bigger than was allocated by vmalloc_user() call: the size check
+inside remap_vmalloc_range_partial() accounts non-existing guard page
+also, so check successfully passes but vmalloc_to_page() returns NULL
+(guard page does not physically exist).
+
+The following code pattern example should trigger an oops:
+
+  static int oops_mmap(struct file *file, struct vm_area_struct *vma)
+  {
+        void *mem;
+
+        mem = vmalloc_user(4096);
+        BUG_ON(!mem);
+        /* Do not care about mem leak */
+
+        return remap_vmalloc_range(vma, mem, 0);
+  }
+
+And userspace simply mmaps size + PAGE_SIZE:
+
+  mmap(NULL, 8192, PROT_WRITE|PROT_READ, MAP_PRIVATE, fd, 0);
+
+Possible candidates for oops which do not have any explicit size
+checks:
+
+   *** drivers/media/usb/stkwebcam/stk-webcam.c:
+   v4l_stk_mmap[789]   ret = remap_vmalloc_range(vma, sbuf->buffer, 0);
+
+Or the following one:
+
+   *** drivers/video/fbdev/core/fbmem.c
+   static int
+   fb_mmap(struct file *file, struct vm_area_struct * vma)
+        ...
+        res = fb->fb_mmap(info, vma);
+
+Where fb_mmap callback calls remap_vmalloc_range() directly without any
+explicit checks:
+
+   *** drivers/video/fbdev/vfb.c
+   static int vfb_mmap(struct fb_info *info,
+             struct vm_area_struct *vma)
+   {
+       return remap_vmalloc_range(vma, (void *)info->fix.smem_start, vma->vm_pgoff);
+   }
+
+Link: http://lkml.kernel.org/r/20190103145954.16942-2-rpenyaev@suse.de
+Signed-off-by: Roman Penyaev <rpenyaev@suse.de>
+Acked-by: Michal Hocko <mhocko@suse.com>
+Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
+Cc: Joe Perches <joe@perches.com>
+Cc: "Luis R. Rodriguez" <mcgrof@kernel.org>
+Cc: <stable@vger.kernel.org>
+Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
+Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ mm/vmalloc.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/mm/vmalloc.c
++++ b/mm/vmalloc.c
+@@ -2191,7 +2191,7 @@ int remap_vmalloc_range_partial(struct v
+       if (!(area->flags & VM_USERMAP))
+               return -EINVAL;
+-      if (kaddr + size > area->addr + area->size)
++      if (kaddr + size > area->addr + get_vm_area_size(area))
+               return -EINVAL;
+       do {
diff --git a/queue-4.9/nfit-acpi_nfit_ctl-check-out_obj-type-in-the-right-place.patch b/queue-4.9/nfit-acpi_nfit_ctl-check-out_obj-type-in-the-right-place.patch
new file mode 100644 (file)
index 0000000..8c90e45
--- /dev/null
@@ -0,0 +1,55 @@
+From 43f89877f26671c6309cd87d7364b1a3e66e71cf Mon Sep 17 00:00:00 2001
+From: Dexuan Cui <decui@microsoft.com>
+Date: Wed, 30 Jan 2019 01:23:01 +0000
+Subject: nfit: acpi_nfit_ctl(): Check out_obj->type in the right place
+
+From: Dexuan Cui <decui@microsoft.com>
+
+commit 43f89877f26671c6309cd87d7364b1a3e66e71cf upstream.
+
+In the case of ND_CMD_CALL, we should also check out_obj->type.
+
+The patch uses out_obj->type, which is a short alias to
+out_obj->package.type.
+
+Fixes: 31eca76ba2fc ("nfit, libnvdimm: limited/whitelisted dimm command marshaling mechanism")
+Cc: <stable@vger.kernel.org>
+Signed-off-by: Dexuan Cui <decui@microsoft.com>
+Signed-off-by: Dan Williams <dan.j.williams@intel.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+
+---
+ drivers/acpi/nfit/core.c |   14 +++++++-------
+ 1 file changed, 7 insertions(+), 7 deletions(-)
+
+--- a/drivers/acpi/nfit/core.c
++++ b/drivers/acpi/nfit/core.c
+@@ -307,6 +307,13 @@ int acpi_nfit_ctl(struct nvdimm_bus_desc
+               return -EINVAL;
+       }
++      if (out_obj->type != ACPI_TYPE_BUFFER) {
++              dev_dbg(dev, "%s unexpected output object type cmd: %s type: %d\n",
++                              dimm_name, cmd_name, out_obj->type);
++              rc = -EINVAL;
++              goto out;
++      }
++
+       if (call_pkg) {
+               call_pkg->nd_fw_size = out_obj->buffer.length;
+               memcpy(call_pkg->nd_payload + call_pkg->nd_size_in,
+@@ -325,13 +332,6 @@ int acpi_nfit_ctl(struct nvdimm_bus_desc
+               return 0;
+       }
+-      if (out_obj->package.type != ACPI_TYPE_BUFFER) {
+-              dev_dbg(dev, "%s:%s unexpected output object type cmd: %s type: %d\n",
+-                              __func__, dimm_name, cmd_name, out_obj->type);
+-              rc = -EINVAL;
+-              goto out;
+-      }
+-
+       if (IS_ENABLED(CONFIG_ACPI_NFIT_DEBUG)) {
+               dev_dbg(dev, "%s:%s cmd: %s output length: %d\n", __func__,
+                               dimm_name, cmd_name, out_obj->buffer.length);
diff --git a/queue-4.9/parport_pc-fix-find_superio-io-compare-code-should-use-equal-test.patch b/queue-4.9/parport_pc-fix-find_superio-io-compare-code-should-use-equal-test.patch
new file mode 100644 (file)
index 0000000..0deff71
--- /dev/null
@@ -0,0 +1,40 @@
+From 21698fd57984cd28207d841dbdaa026d6061bceb Mon Sep 17 00:00:00 2001
+From: QiaoChong <qiaochong@loongson.cn>
+Date: Sat, 9 Feb 2019 20:59:07 +0000
+Subject: parport_pc: fix find_superio io compare code, should use equal test.
+
+From: QiaoChong <qiaochong@loongson.cn>
+
+commit 21698fd57984cd28207d841dbdaa026d6061bceb upstream.
+
+In the original code before 181bf1e815a2 the loop was continuing until
+it finds the first matching superios[i].io and p->base.
+But after 181bf1e815a2 the logic changed and the loop now returns the
+pointer to the first mismatched array element which is then used in
+get_superio_dma() and get_superio_irq() and thus returning the wrong
+value.
+Fix the condition so that it now returns the correct pointer.
+
+Fixes: 181bf1e815a2 ("parport_pc: clean up the modified while loops using for")
+Cc: Alan Cox <alan@linux.intel.com>
+Cc: stable@vger.kernel.org
+Signed-off-by: QiaoChong <qiaochong@loongson.cn>
+[rewrite the commit message]
+Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/parport/parport_pc.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/parport/parport_pc.c
++++ b/drivers/parport/parport_pc.c
+@@ -1377,7 +1377,7 @@ static struct superio_struct *find_super
+ {
+       int i;
+       for (i = 0; i < NR_SUPERIOS; i++)
+-              if (superios[i].io != p->base)
++              if (superios[i].io == p->base)
+                       return &superios[i];
+       return NULL;
+ }
index a78fa4774f6cf6ed11c3a4ab3f3fdf8dd8f1ac93..214019cb20afc1622457b1ccd0688e79b712844d 100644 (file)
@@ -76,3 +76,11 @@ ext2-fix-underflow-in-ext2_max_size.patch
 clk-clk-twl6040-fix-imprecise-external-abort-for-pdmclk.patch
 clk-ingenic-fix-round_rate-misbehaving-with-non-integer-dividers.patch
 clk-ingenic-fix-doc-of-ingenic_cgu_div_info.patch
+nfit-acpi_nfit_ctl-check-out_obj-type-in-the-right-place.patch
+mm-hwpoison-fix-thp-split-handing-in-soft_offline_in_use_page.patch
+mm-vmalloc-fix-size-check-for-remap_vmalloc_range_partial.patch
+kernel-sysctl.c-add-missing-range-check-in-do_proc_dointvec_minmax_conv.patch
+device-property-fix-the-length-used-in-property_entry_string.patch
+intel_th-don-t-reference-unassigned-outputs.patch
+parport_pc-fix-find_superio-io-compare-code-should-use-equal-test.patch
+i2c-tegra-fix-maximum-transfer-size.patch