Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:5.10 commit in: /
Date: Wed, 14 Jul 2021 16:31:04
Message-Id: 1626280245.21d8468bad975398075cf6fba790c8d416f45a32.mpagano@gentoo
1 commit: 21d8468bad975398075cf6fba790c8d416f45a32
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 14 16:30:45 2021 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 14 16:30:45 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=21d8468b
7
8 Remove redundant patch
9
10 Removed:
11 2400_revert-ibmvnic-remove-duplicate-napi_schedule-call-i.patch
12
13 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
14
15 0000_README | 4 --
16 ...nic-remove-duplicate-napi_schedule-call-i.patch | 46 ----------------------
17 2 files changed, 50 deletions(-)
18
19 diff --git a/0000_README b/0000_README
20 index e9246be..e40d4fd 100644
21 --- a/0000_README
22 +++ b/0000_README
23 @@ -255,10 +255,6 @@ Patch: 2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch
24 From: https://lore.kernel.org/linux-bluetooth/20190522070540.48895-1-marcel@××××××××.org/raw
25 Desc: Bluetooth: Check key sizes only when Secure Simple Pairing is enabled. See bug #686758
26
27 -Patch: 2400_revert-ibmvnic-remove-duplicate-napi_schedule-call-i.patch
28 -From: https://git.kernel.org/pub/scm/linux/kernel/git/stable/stable-queue.git/plain/queue-5.10/revert-ibmvnic-remove-duplicate-napi_schedule-call-i.patch
29 -Desc: Revert ibmvnic: remove duplicate napi_schedule call in open function
30 -
31 Patch: 2900_tmp513-Fix-build-issue-by-selecting-CONFIG_REG.patch
32 From: https://bugs.gentoo.org/710790
33 Desc: tmp513 requies REGMAP_I2C to build. Select it by default in Kconfig. See bug #710790. Thanks to Phil Stracchino
34
35 diff --git a/2400_revert-ibmvnic-remove-duplicate-napi_schedule-call-i.patch b/2400_revert-ibmvnic-remove-duplicate-napi_schedule-call-i.patch
36 deleted file mode 100644
37 index 6acd432..0000000
38 --- a/2400_revert-ibmvnic-remove-duplicate-napi_schedule-call-i.patch
39 +++ /dev/null
40 @@ -1,46 +0,0 @@
41 -From a795f695bbc648e27d56f99c38fc1afbe832b088 Mon Sep 17 00:00:00 2001
42 -From: Sasha Levin <sashal@××××××.org>
43 -Date: Wed, 23 Jun 2021 21:13:11 -0700
44 -Subject: Revert "ibmvnic: remove duplicate napi_schedule call in open
45 - function"
46 -
47 -From: Dany Madden <drt@×××××××××.com>
48 -
49 -[ Upstream commit 2ca220f92878470c6ba03f9946e412323093cc94 ]
50 -
51 -This reverts commit 7c451f3ef676c805a4b77a743a01a5c21a250a73.
52 -
53 -When a vnic interface is taken down and then up, connectivity is not
54 -restored. We bisected it to this commit. Reverting this commit until
55 -we can fully investigate the issue/benefit of the change.
56 -
57 -Fixes: 7c451f3ef676 ("ibmvnic: remove duplicate napi_schedule call in open function")
58 -Reported-by: Cristobal Forno <cforno12@×××××××××.com>
59 -Reported-by: Abdul Haleem <abdhalee@××××××.com>
60 -Signed-off-by: Dany Madden <drt@×××××××××.com>
61 -Signed-off-by: Sukadev Bhattiprolu <sukadev@×××××××××.com>
62 -Signed-off-by: David S. Miller <davem@×××××××××.net>
63 -Signed-off-by: Sasha Levin <sashal@××××××.org>
64 ----
65 - drivers/net/ethernet/ibm/ibmvnic.c | 5 +++++
66 - 1 file changed, 5 insertions(+)
67 -
68 -diff --git a/drivers/net/ethernet/ibm/ibmvnic.c b/drivers/net/ethernet/ibm/ibmvnic.c
69 -index 8cc444684491..765b38c8b252 100644
70 ---- a/drivers/net/ethernet/ibm/ibmvnic.c
71 -+++ b/drivers/net/ethernet/ibm/ibmvnic.c
72 -@@ -1166,6 +1166,11 @@ static int __ibmvnic_open(struct net_device *netdev)
73 -
74 - netif_tx_start_all_queues(netdev);
75 -
76 -+ if (prev_state == VNIC_CLOSED) {
77 -+ for (i = 0; i < adapter->req_rx_queues; i++)
78 -+ napi_schedule(&adapter->napi[i]);
79 -+ }
80 -+
81 - adapter->state = VNIC_OPEN;
82 - return rc;
83 - }
84 ---
85 -2.30.2
86 -