+++ /dev/null
-From 615a22f7fe352da25764366e14f43060965dccdd Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 12 Jul 2021 13:14:40 +0100
-Subject: 6lowpan: iphc: Fix an off-by-one check of array index
-
-From: Colin Ian King <colin.king@canonical.com>
-
-[ Upstream commit 9af417610b6142e826fd1ee8ba7ff3e9a2133a5a ]
-
-The bounds check of id is off-by-one and the comparison should
-be >= rather >. Currently the WARN_ON_ONCE check does not stop
-the out of range indexing of &ldev->ctx.table[id] so also add
-a return path if the bounds are out of range.
-
-Addresses-Coverity: ("Illegal address computation").
-Fixes: 5609c185f24d ("6lowpan: iphc: add support for stateful compression")
-Signed-off-by: Colin Ian King <colin.king@canonical.com>
-Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- net/6lowpan/debugfs.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/net/6lowpan/debugfs.c b/net/6lowpan/debugfs.c
-index 24915e0bb9ea..2a05c5b5005b 100644
---- a/net/6lowpan/debugfs.c
-+++ b/net/6lowpan/debugfs.c
-@@ -176,7 +176,8 @@ static int lowpan_dev_debugfs_ctx_init(struct net_device *dev,
- struct dentry *dentry, *root;
- char buf[32];
-
-- WARN_ON_ONCE(id > LOWPAN_IPHC_CTX_TABLE_SIZE);
-+ if (WARN_ON_ONCE(id >= LOWPAN_IPHC_CTX_TABLE_SIZE))
-+ return;
-
- sprintf(buf, "%d", id);
-
---
-2.30.2
-
media-dvb-usb-fix-uninit-value-in-vp702x_read_mac_ad.patch
media-go7007-remove-redundant-initialization.patch
bluetooth-sco-prevent-information-leak-in-sco_conn_d.patch
-6lowpan-iphc-fix-an-off-by-one-check-of-array-index.patch
tcp-seq_file-avoid-skipping-sk-during-tcp_seek_last_.patch
net-cipso-fix-warnings-in-netlbl_cipsov4_add_std.patch
i2c-highlander-add-irq-check.patch
+++ /dev/null
-From 68c66a31cc9a38a26a89f9594945390a09355728 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Mon, 12 Jul 2021 13:14:40 +0100
-Subject: 6lowpan: iphc: Fix an off-by-one check of array index
-
-From: Colin Ian King <colin.king@canonical.com>
-
-[ Upstream commit 9af417610b6142e826fd1ee8ba7ff3e9a2133a5a ]
-
-The bounds check of id is off-by-one and the comparison should
-be >= rather >. Currently the WARN_ON_ONCE check does not stop
-the out of range indexing of &ldev->ctx.table[id] so also add
-a return path if the bounds are out of range.
-
-Addresses-Coverity: ("Illegal address computation").
-Fixes: 5609c185f24d ("6lowpan: iphc: add support for stateful compression")
-Signed-off-by: Colin Ian King <colin.king@canonical.com>
-Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- net/6lowpan/debugfs.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/net/6lowpan/debugfs.c b/net/6lowpan/debugfs.c
-index 24915e0bb9ea..2a05c5b5005b 100644
---- a/net/6lowpan/debugfs.c
-+++ b/net/6lowpan/debugfs.c
-@@ -176,7 +176,8 @@ static int lowpan_dev_debugfs_ctx_init(struct net_device *dev,
- struct dentry *dentry, *root;
- char buf[32];
-
-- WARN_ON_ONCE(id > LOWPAN_IPHC_CTX_TABLE_SIZE);
-+ if (WARN_ON_ONCE(id >= LOWPAN_IPHC_CTX_TABLE_SIZE))
-+ return;
-
- sprintf(buf, "%d", id);
-
---
-2.30.2
-
media-dvb-usb-fix-uninit-value-in-vp702x_read_mac_ad.patch
media-go7007-remove-redundant-initialization.patch
bluetooth-sco-prevent-information-leak-in-sco_conn_d.patch
-6lowpan-iphc-fix-an-off-by-one-check-of-array-index.patch
tcp-seq_file-avoid-skipping-sk-during-tcp_seek_last_.patch
net-cipso-fix-warnings-in-netlbl_cipsov4_add_std.patch
i2c-highlander-add-irq-check.patch