From: M Chetan Kumar <hidden> Date: 2021-08-04 16:13:12
This patch series contains IOSM Driver fixes. Below is the patch
series breakdown.
PATCH1:
* Correct the td buffer type casting & format specifier to fix lkp buildbot
warning.
PATCH2:
* Endianness type correction for nr_of_bytes. This field is exchanged
as part of host-device protocol communication.
PATCH3:
* Correct ul/dl data protocol mask bit to know which protocol capability
does device implement.
PATCH4:
* Calling unregister_netdevice() inside wwan del link is trying to
acquire the held lock in ndo_stop_cb(). Instead, queue net dev to
be unregistered later.
--
M Chetan Kumar (4):
net: wwan: iosm: fix lkp buildbot warning
net: wwan: iosm: endianness type correction
net: wwan: iosm: correct data protocol mask bit
net: wwan: iosm: fix recursive lock acquire in unregister
drivers/net/wwan/iosm/iosm_ipc_mmio.h | 4 ++--
drivers/net/wwan/iosm/iosm_ipc_mux_codec.c | 4 ++--
drivers/net/wwan/iosm/iosm_ipc_mux_codec.h | 2 +-
drivers/net/wwan/iosm/iosm_ipc_protocol_ops.c | 4 ++--
drivers/net/wwan/iosm/iosm_ipc_wwan.c | 2 +-
5 files changed, 8 insertions(+), 8 deletions(-)
--
2.25.1
From: M Chetan Kumar <hidden> Date: 2021-08-04 16:13:23
Endianness type correction for nr_of_bytes. This field is exchanged
as part of host-device protocol communication.
Signed-off-by: M Chetan Kumar <redacted>
---
drivers/net/wwan/iosm/iosm_ipc_mux_codec.c | 4 ++--
drivers/net/wwan/iosm/iosm_ipc_mux_codec.h | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
From: M Chetan Kumar <hidden> Date: 2021-08-04 16:13:28
Calling unregister_netdevice() inside wwan del link is trying to
acquire the held lock in ndo_stop_cb(). Instead, queue net dev to
be unregistered later.
Signed-off-by: M Chetan Kumar <redacted>
---
drivers/net/wwan/iosm/iosm_ipc_wwan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -10,10 +10,10 @@#define IOSM_CP_VERSION 0x0100UL/* DL dir Aggregation support mask */-#define DL_AGGR BIT(23)+#define DL_AGGR BIT(9)/* UL dir Aggregation support mask */-#define UL_AGGR BIT(22)+#define UL_AGGR BIT(8)/* UL flow credit support mask */#define UL_FLOW_CREDIT BIT(21)
On Wed, 4 Aug 2021 at 18:11, M Chetan Kumar
[off-list ref] wrote:
Endianness type correction for nr_of_bytes. This field is exchanged
as part of host-device protocol communication.
Signed-off-by: M Chetan Kumar <redacted>
On Wed, 4 Aug 2021 at 18:11, M Chetan Kumar
[off-list ref] wrote:
Calling unregister_netdevice() inside wwan del link is trying to
acquire the held lock in ndo_stop_cb(). Instead, queue net dev to
be unregistered later.
Signed-off-by: M Chetan Kumar <redacted>
Hello:
This series was applied to netdev/net.git (refs/heads/master):
On Wed, 4 Aug 2021 21:39:48 +0530 you wrote:
This patch series contains IOSM Driver fixes. Below is the patch
series breakdown.
PATCH1:
* Correct the td buffer type casting & format specifier to fix lkp buildbot
warning.
[...]