From: M Chetan Kumar <m.chetan.kumar@linux.intel.com>
To: netdev@vger.kernel.org
Cc: kuba@kernel.org, davem@davemloft.net, johannes@sipsolutions.net,
ryazanov.s.a@gmail.com, loic.poulain@linaro.org,
krishna.c.sudi@intel.com, m.chetan.kumar@intel.com,
m.chetan.kumar@linux.intel.com, linuxwwan@intel.com
Subject: [PATCH] net: wwan: fix port open
Date: Wed, 4 May 2022 19:50:06 +0530 [thread overview]
Message-ID: <20220504142006.3804-1-m.chetan.kumar@linux.intel.com> (raw)
Wwan device registered port can be opened as many number of times.
The first port open() call binds dev file to driver wwan port device
and subsequent open() call references to same wwan port instance.
When dev file is opened multiple times, all contexts still refers to
same instance of wwan port. So in tx path, the received data will be
fwd to wwan device but in rx path the wwan port has a single rx queue.
Depending on which context goes for early read() the rx data gets
dispatched to it.
Since the wwan port is not handling dispatching of rx data to right
context restrict wwan port open to single context.
Signed-off-by: M Chetan Kumar <m.chetan.kumar@linux.intel.com>
---
drivers/net/wwan/wwan_core.c | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/drivers/net/wwan/wwan_core.c b/drivers/net/wwan/wwan_core.c
index b8c7843730ed..9ca2d8d76587 100644
--- a/drivers/net/wwan/wwan_core.c
+++ b/drivers/net/wwan/wwan_core.c
@@ -33,6 +33,7 @@ static struct dentry *wwan_debugfs_dir;
/* WWAN port flags */
#define WWAN_PORT_TX_OFF 0
+#define WWAN_PORT_OPEN 1
/**
* struct wwan_device - The structure that defines a WWAN device
@@ -58,7 +59,6 @@ struct wwan_device {
/**
* struct wwan_port - The structure that defines a WWAN port
* @type: Port type
- * @start_count: Port start counter
* @flags: Store port state and capabilities
* @ops: Pointer to WWAN port operations
* @ops_lock: Protect port ops
@@ -70,7 +70,6 @@ struct wwan_device {
*/
struct wwan_port {
enum wwan_port_type type;
- unsigned int start_count;
unsigned long flags;
const struct wwan_port_ops *ops;
struct mutex ops_lock; /* Serialize ops + protect against removal */
@@ -496,7 +495,7 @@ void wwan_remove_port(struct wwan_port *port)
struct wwan_device *wwandev = to_wwan_dev(port->dev.parent);
mutex_lock(&port->ops_lock);
- if (port->start_count)
+ if (test_and_clear_bit(WWAN_PORT_OPEN, &port->flags))
port->ops->stop(port);
port->ops = NULL; /* Prevent any new port operations (e.g. from fops) */
mutex_unlock(&port->ops_lock);
@@ -549,11 +548,14 @@ static int wwan_port_op_start(struct wwan_port *port)
}
/* If port is already started, don't start again */
- if (!port->start_count)
- ret = port->ops->start(port);
+ if (test_bit(WWAN_PORT_OPEN, &port->flags)) {
+ ret = -EBUSY;
+ goto out_unlock;
+ }
+ ret = port->ops->start(port);
if (!ret)
- port->start_count++;
+ set_bit(WWAN_PORT_OPEN, &port->flags);
out_unlock:
mutex_unlock(&port->ops_lock);
@@ -564,8 +566,7 @@ static int wwan_port_op_start(struct wwan_port *port)
static void wwan_port_op_stop(struct wwan_port *port)
{
mutex_lock(&port->ops_lock);
- port->start_count--;
- if (!port->start_count) {
+ if (test_and_clear_bit(WWAN_PORT_OPEN, &port->flags)) {
if (port->ops)
port->ops->stop(port);
skb_queue_purge(&port->rxq);
--
2.25.1
next reply other threads:[~2022-05-04 14:09 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-04 14:20 M Chetan Kumar [this message]
2022-05-04 14:44 ` [PATCH] net: wwan: fix port open Loic Poulain
2022-05-04 16:19 ` Kumar, M Chetan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220504142006.3804-1-m.chetan.kumar@linux.intel.com \
--to=m.chetan.kumar@linux.intel.com \
--cc=davem@davemloft.net \
--cc=johannes@sipsolutions.net \
--cc=krishna.c.sudi@intel.com \
--cc=kuba@kernel.org \
--cc=linuxwwan@intel.com \
--cc=loic.poulain@linaro.org \
--cc=m.chetan.kumar@intel.com \
--cc=netdev@vger.kernel.org \
--cc=ryazanov.s.a@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).