* [PATCH v3 0/7] Add QMI Device Service Request Rate-limit Option
@ 2025-02-14 5:04 Grant Erickson
2025-02-14 5:04 ` [PATCH v3 1/7] qmi: Added enumeration for device quirk flags Grant Erickson
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Grant Erickson @ 2025-02-14 5:04 UTC (permalink / raw)
To: ofono
Certain modems, among them the Quectel Wireless Solutions Co.,
Ltd. (2c7c) BG96 CAT-M1/NB-IoT modem (0296), have a firmware issue
where they can lock up and hang (not responding to subsequent
commands) due to high QMI service request arrival rates.
QMI service request rate limiting is achieved by:
1. Adding a new, optional options structure to qmi_qmux_device_new
that has its rate-limit "quirk" and minimum request period fields
set when the modem "RequestThrottleTimeUs" integer property is set.
2. Adding logic to the QMI driver that, when a minimum request period
is set, limits the QMI service request rate accordingly.
(1) and (2) are used by the udevng and gobi plugins such that when the
modem vendor and model match 2c7c/0296, then the option to rate limit
QMI service requests is set to no more than one every 2,000 us.
Grant Erickson (7):
qmi: Added enumeration for device quirk flags.
qmi: Added structure for device options.
qmi: Added device options parameter to 'qmi_qmux_device_new'.
qmi: Implement QMI service request rate limiting in 'can_write_data'.
qmi: Handle request rate limit option in 'qmi_qmux_device_new'.
udevng: Set the QMI minimum service request period for Quectel BG96
modems.
gobi: Pass QMI qmux device options to 'qmi_qmux_device_new'.
drivers/qmimodem/qmi.c | 45 +++++++++++++++++++++++++++++++++++++++++-
drivers/qmimodem/qmi.h | 40 ++++++++++++++++++++++++++++++++++++-
plugins/gobi.c | 22 ++++++++++++++++++++-
plugins/udevng.c | 14 +++++++++++++
4 files changed, 118 insertions(+), 3 deletions(-)
--
2.45.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v3 1/7] qmi: Added enumeration for device quirk flags.
2025-02-14 5:04 [PATCH v3 0/7] Add QMI Device Service Request Rate-limit Option Grant Erickson
@ 2025-02-14 5:04 ` Grant Erickson
2025-02-14 5:04 ` [PATCH v3 2/7] qmi: Added structure for device options Grant Erickson
` (5 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Grant Erickson @ 2025-02-14 5:04 UTC (permalink / raw)
To: ofono
Defines device-specific "quirks" that may alter the default behavior
of the QMI driver for a specific, instantiated device.
---
drivers/qmimodem/qmi.h | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/drivers/qmimodem/qmi.h b/drivers/qmimodem/qmi.h
index 69698ee049c6..e74ff3feaeec 100644
--- a/drivers/qmimodem/qmi.h
+++ b/drivers/qmimodem/qmi.h
@@ -56,6 +56,24 @@ enum qmi_error {
QMI_ERROR_INVALID_QMI_COMMAND = 71,
};
+/**
+ * This defines device-specific "quirks" that may alter the default
+ * behavior of the QMI driver for a specific, instantiated device.
+ */
+enum qmi_qmux_device_quirk {
+ /**
+ * The device has no "quirks".
+ */
+ QMI_QMUX_DEVICE_QUIRK_NONE = 0x00,
+
+ /**
+ * The device has a "quirk" where it can lock up and hang (not
+ * responding to subsequent commands) due to high QMI service
+ * request arrival rates.
+ */
+ QMI_QMUX_DEVICE_QUIRK_REQ_RATE_LIMIT = 0x01
+};
+
typedef void (*qmi_destroy_func_t)(void *user_data);
struct qmi_service;
--
2.45.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 2/7] qmi: Added structure for device options.
2025-02-14 5:04 [PATCH v3 0/7] Add QMI Device Service Request Rate-limit Option Grant Erickson
2025-02-14 5:04 ` [PATCH v3 1/7] qmi: Added enumeration for device quirk flags Grant Erickson
@ 2025-02-14 5:04 ` Grant Erickson
2025-02-14 5:04 ` [PATCH v3 3/7] qmi: Added device options parameter to 'qmi_qmux_device_new' Grant Erickson
` (4 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Grant Erickson @ 2025-02-14 5:04 UTC (permalink / raw)
To: ofono
Defines options that may alter the default behavior of the QMI driver
for a specific, instantiated device.
---
drivers/qmimodem/qmi.h | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/drivers/qmimodem/qmi.h b/drivers/qmimodem/qmi.h
index e74ff3feaeec..4ba27847176f 100644
--- a/drivers/qmimodem/qmi.h
+++ b/drivers/qmimodem/qmi.h
@@ -74,6 +74,25 @@ enum qmi_qmux_device_quirk {
QMI_QMUX_DEVICE_QUIRK_REQ_RATE_LIMIT = 0x01
};
+/**
+ * Defines options that may alter the default behavior of the QMI
+ * driver for a specific, instantiated device.
+ */
+struct qmi_qmux_device_options {
+ /**
+ * Device-specific "quirk".
+ */
+ enum qmi_qmux_device_quirk quirks;
+
+ /**
+ * If quirks has #QMI_QMUX_DEVICE_QUIRK_REQ_RATE_LIMIT set, this
+ * is the minimum period, in microseconds, in which back-to-back
+ * QMI service requests may be sent to avoid triggering a
+ * firmware lock up and hang.
+ */
+ unsigned int min_req_period_us;
+};
+
typedef void (*qmi_destroy_func_t)(void *user_data);
struct qmi_service;
--
2.45.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 3/7] qmi: Added device options parameter to 'qmi_qmux_device_new'.
2025-02-14 5:04 [PATCH v3 0/7] Add QMI Device Service Request Rate-limit Option Grant Erickson
2025-02-14 5:04 ` [PATCH v3 1/7] qmi: Added enumeration for device quirk flags Grant Erickson
2025-02-14 5:04 ` [PATCH v3 2/7] qmi: Added structure for device options Grant Erickson
@ 2025-02-14 5:04 ` Grant Erickson
2025-02-14 5:04 ` [PATCH v3 4/7] qmi: Implement QMI service request rate limiting in 'can_write_data' Grant Erickson
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Grant Erickson @ 2025-02-14 5:04 UTC (permalink / raw)
To: ofono
An optional pointer to immutable device options that may alter the
default behavior of the QMI driver for the instantiated device.
---
drivers/qmimodem/qmi.c | 3 ++-
drivers/qmimodem/qmi.h | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/qmimodem/qmi.c b/drivers/qmimodem/qmi.c
index 10dbdaac8bf6..bbe6440abe0f 100644
--- a/drivers/qmimodem/qmi.c
+++ b/drivers/qmimodem/qmi.c
@@ -1567,7 +1567,8 @@ static const struct qmi_transport_ops qmux_ops = {
.write = qmi_qmux_device_write,
};
-struct qmi_qmux_device *qmi_qmux_device_new(const char *device)
+struct qmi_qmux_device *qmi_qmux_device_new(const char *device,
+ const struct qmi_qmux_device_options *options)
{
struct qmi_qmux_device *qmux;
int fd;
diff --git a/drivers/qmimodem/qmi.h b/drivers/qmimodem/qmi.h
index 4ba27847176f..09b551d74823 100644
--- a/drivers/qmimodem/qmi.h
+++ b/drivers/qmimodem/qmi.h
@@ -107,7 +107,8 @@ typedef void (*qmi_qrtr_node_lookup_done_func_t)(void *);
typedef void (*qmi_service_result_func_t)(struct qmi_result *, void *);
-struct qmi_qmux_device *qmi_qmux_device_new(const char *device);
+struct qmi_qmux_device *qmi_qmux_device_new(const char *device,
+ const struct qmi_qmux_device_options *options);
void qmi_qmux_device_free(struct qmi_qmux_device *qmux);
void qmi_qmux_device_set_debug(struct qmi_qmux_device *qmux,
qmi_debug_func_t func, void *user_data);
--
2.45.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 4/7] qmi: Implement QMI service request rate limiting in 'can_write_data'.
2025-02-14 5:04 [PATCH v3 0/7] Add QMI Device Service Request Rate-limit Option Grant Erickson
` (2 preceding siblings ...)
2025-02-14 5:04 ` [PATCH v3 3/7] qmi: Added device options parameter to 'qmi_qmux_device_new' Grant Erickson
@ 2025-02-14 5:04 ` Grant Erickson
2025-02-14 15:29 ` Denis Kenzior
2025-02-14 5:04 ` [PATCH v3 5/7] qmi: Handle request rate limit option in 'qmi_qmux_device_new' Grant Erickson
` (2 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Grant Erickson @ 2025-02-14 5:04 UTC (permalink / raw)
To: ofono
Determine if we need to rate-limit QMI services requests to a
transport-specific minimum request period. If so, return true so that
the queue can be retried again later.
Adds the following data members to 'qmi_transport':
* Minimum request period
- The minimum period, in microseconds, for back-to-back QMI
service requests.
* Last request time
- Time, in microseconds, when the last QMI service request was
sent.
to support the implementation.
---
drivers/qmimodem/qmi.c | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/drivers/qmimodem/qmi.c b/drivers/qmimodem/qmi.c
index bbe6440abe0f..f26a9816c71c 100644
--- a/drivers/qmimodem/qmi.c
+++ b/drivers/qmimodem/qmi.c
@@ -92,6 +92,18 @@ struct qmi_transport {
const struct qmi_transport_ops *ops;
struct debug_data debug;
bool writer_active : 1;
+
+ /**
+ * If specified via qmi_qmux_device_options, the minimum period
+ * for back-to-back QMI service requests.
+ */
+ unsigned int min_req_period_us;
+
+ /**
+ * The time, in microseconds, when the last QMI service request
+ * was sent.
+ */
+ uint64_t last_req_sent_time_us;
};
struct qmi_qmux_device {
@@ -653,8 +665,25 @@ static bool can_write_data(struct l_io *io, void *user_data)
{
struct qmi_transport *transport = user_data;
struct qmi_request *req;
+ const bool throttle_enabled = transport->min_req_period_us > 0;
+ uint64_t now = 0;
+ uint64_t delta;
int r;
+ /*
+ * Determine if we need to rate-limit commands to a
+ * transport-specific minimum request period. If so,
+ * return true so that the queue can be retried again
+ * later.
+ */
+ if (throttle_enabled && transport->last_req_sent_time_us != 0) {
+ now = l_time_now();
+ delta = l_time_diff(now, transport->last_req_sent_time_us);
+
+ if (delta < transport->min_req_period_us)
+ return true;
+ }
+
req = l_queue_pop_head(transport->req_queue);
if (!req)
return false;
@@ -665,6 +694,9 @@ static bool can_write_data(struct l_io *io, void *user_data)
return false;
}
+ if (throttle_enabled)
+ transport->last_req_sent_time_us = now;
+
if (l_queue_length(transport->req_queue) > 0)
return true;
--
2.45.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 5/7] qmi: Handle request rate limit option in 'qmi_qmux_device_new'.
2025-02-14 5:04 [PATCH v3 0/7] Add QMI Device Service Request Rate-limit Option Grant Erickson
` (3 preceding siblings ...)
2025-02-14 5:04 ` [PATCH v3 4/7] qmi: Implement QMI service request rate limiting in 'can_write_data' Grant Erickson
@ 2025-02-14 5:04 ` Grant Erickson
2025-02-14 5:04 ` [PATCH v3 6/7] udevng: Set the QMI minimum service request period for Quectel BG96 modems Grant Erickson
2025-02-14 5:04 ` [PATCH v3 7/7] gobi: Pass QMI qmux device options to 'qmi_qmux_device_new' Grant Erickson
6 siblings, 0 replies; 11+ messages in thread
From: Grant Erickson @ 2025-02-14 5:04 UTC (permalink / raw)
To: ofono
If options are specified and QMI_QMUX_DEVICE_QUIRK_REQ_RATE_LIMIT is
asserted, set the qmux transport minimum service request period from
the specified options.
---
drivers/qmimodem/qmi.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/qmimodem/qmi.c b/drivers/qmimodem/qmi.c
index f26a9816c71c..6063ed1d8634 100644
--- a/drivers/qmimodem/qmi.c
+++ b/drivers/qmimodem/qmi.c
@@ -1611,6 +1611,16 @@ struct qmi_qmux_device *qmi_qmux_device_new(const char *device,
qmux = l_new(struct qmi_qmux_device, 1);
+ if (options != NULL) {
+ if ((options->quirks & QMI_QMUX_DEVICE_QUIRK_REQ_RATE_LIMIT)
+ == QMI_QMUX_DEVICE_QUIRK_REQ_RATE_LIMIT) {
+ qmux->transport.min_req_period_us = options->min_req_period_us;
+
+ ofono_info("QMI minimum service request period %u us",
+ qmux->transport.min_req_period_us);
+ }
+ }
+
if (qmi_transport_open(&qmux->transport, fd, &qmux_ops) < 0) {
close(fd);
l_free(qmux);
--
2.45.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 6/7] udevng: Set the QMI minimum service request period for Quectel BG96 modems.
2025-02-14 5:04 [PATCH v3 0/7] Add QMI Device Service Request Rate-limit Option Grant Erickson
` (4 preceding siblings ...)
2025-02-14 5:04 ` [PATCH v3 5/7] qmi: Handle request rate limit option in 'qmi_qmux_device_new' Grant Erickson
@ 2025-02-14 5:04 ` Grant Erickson
2025-02-14 5:04 ` [PATCH v3 7/7] gobi: Pass QMI qmux device options to 'qmi_qmux_device_new' Grant Erickson
6 siblings, 0 replies; 11+ messages in thread
From: Grant Erickson @ 2025-02-14 5:04 UTC (permalink / raw)
To: ofono
The Quectel Wireless Solutions Co., Ltd. (2c7c) BG96 CAT-M1/NB-IoT
modem (0296) has a firmware issue where it can lock up and hang (not
responding to subsequent commands) due to high QMI service request
arrival rates. If the vendor and model match those, then rate limit
QMI service requests to no more than one every 2,000 us.
---
plugins/udevng.c | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/plugins/udevng.c b/plugins/udevng.c
index 64875a47752b..b8df66de5c71 100644
--- a/plugins/udevng.c
+++ b/plugins/udevng.c
@@ -1118,6 +1118,20 @@ static gboolean setup_quectelqmi(struct modem_info *modem)
DBG("%s", modem->syspath);
+ /*
+ * The Quectel Wireless Solutions Co., Ltd. (2c7c) BG96
+ * CAT-M1/NB-IoT modem (0296) has a firmware issue where it can
+ * lock up and hang (not responding to subsequent commands) due to
+ * high QMI service request arrival rates. If the vendor and model
+ * match those, then rate limit QMI service requests to no more
+ * than one every 2,000 us.
+ */
+ if (l_streq0(modem->vendor, "2c7c")) {
+ if (l_streq0(modem->model, "0296"))
+ ofono_modem_set_integer(modem->modem,
+ "RequestThrottleTimeUs", 2000);
+ }
+
for (list = modem->devices; list; list = g_slist_next(list)) {
const struct device_info *info = list->data;
const char *subsystem =
--
2.45.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v3 7/7] gobi: Pass QMI qmux device options to 'qmi_qmux_device_new'.
2025-02-14 5:04 [PATCH v3 0/7] Add QMI Device Service Request Rate-limit Option Grant Erickson
` (5 preceding siblings ...)
2025-02-14 5:04 ` [PATCH v3 6/7] udevng: Set the QMI minimum service request period for Quectel BG96 modems Grant Erickson
@ 2025-02-14 5:04 ` Grant Erickson
6 siblings, 0 replies; 11+ messages in thread
From: Grant Erickson @ 2025-02-14 5:04 UTC (permalink / raw)
To: ofono
If the QMI minimum service request period property is set on the modem
object, then set the appropriate QMI QMUX device option quirk and
value.
---
plugins/gobi.c | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/plugins/gobi.c b/plugins/gobi.c
index 027aa91d6ade..dfc7402e36aa 100644
--- a/plugins/gobi.c
+++ b/plugins/gobi.c
@@ -842,9 +842,19 @@ error:
__shutdown_device(modem);
}
+/*
+ * Enable the modem. The following modem properties are optionally set:
+ *
+ * RequestThrottleTimeUs
+ * The minimum period, in microseconds, in which back-to-back *
+ * modem service requests may be sent.
+ *
+ */
static int gobi_enable(struct ofono_modem *modem)
{
struct gobi_data *data = ofono_modem_get_data(modem);
+ struct qmi_qmux_device_options options = { QMI_QMUX_DEVICE_QUIRK_NONE, 0 };
+ int min_req_period_us;
const char *device;
DBG("%p", modem);
@@ -853,7 +863,17 @@ static int gobi_enable(struct ofono_modem *modem)
if (!device)
return -EINVAL;
- data->device = qmi_qmux_device_new(device);
+ /*
+ * If the QMI minimum service request period property is set, then
+ * set the appropriate QMI QMUX device quirk and value.
+ */
+ min_req_period_us = ofono_modem_get_integer(modem, "RequestThrottleTimeUs");
+ if (min_req_period_us > 0) {
+ options.quirks |= QMI_QMUX_DEVICE_QUIRK_REQ_RATE_LIMIT;
+ options.min_req_period_us = min_req_period_us;
+ }
+
+ data->device = qmi_qmux_device_new(device, &options);
if (!data->device)
return -EIO;
--
2.45.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v3 4/7] qmi: Implement QMI service request rate limiting in 'can_write_data'.
2025-02-14 5:04 ` [PATCH v3 4/7] qmi: Implement QMI service request rate limiting in 'can_write_data' Grant Erickson
@ 2025-02-14 15:29 ` Denis Kenzior
2025-02-14 17:27 ` Grant Erickson
0 siblings, 1 reply; 11+ messages in thread
From: Denis Kenzior @ 2025-02-14 15:29 UTC (permalink / raw)
To: Grant Erickson, ofono
Hi Grant,
> struct qmi_qmux_device {
> @@ -653,8 +665,25 @@ static bool can_write_data(struct l_io *io, void *user_data)
> {
> struct qmi_transport *transport = user_data;
> struct qmi_request *req;
> + const bool throttle_enabled = transport->min_req_period_us > 0;
> + uint64_t now = 0;
I think this is still wrong? There's a reason why we have doc/coding-style.txt
item M7.
> + uint64_t delta;
> int r;
>
> + /*
> + * Determine if we need to rate-limit commands to a
> + * transport-specific minimum request period. If so,
> + * return true so that the queue can be retried again
> + * later.
> + */
> + if (throttle_enabled && transport->last_req_sent_time_us != 0) {
Consider the starting condition:
- last_req_sent_time_us -> zero
- throttle_enabled -> true
We don't enter into this if(), 'now' is still zero.
> + now = l_time_now();
> + delta = l_time_diff(now, transport->last_req_sent_time_us);
> +
> + if (delta < transport->min_req_period_us)
> + return true;
> + }
> +
> req = l_queue_pop_head(transport->req_queue);
> if (!req)
> return false;
> @@ -665,6 +694,9 @@ static bool can_write_data(struct l_io *io, void *user_data)
> return false;
> }
>
> + if (throttle_enabled)
> + transport->last_req_sent_time_us = now;
> +
throttle_enabled is true, we set last_req_sent_time_us to 0. In effect your
throttling doesn't work...?
> if (l_queue_length(transport->req_queue) > 0)
> return true;
>
Regards,
-Denis
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 4/7] qmi: Implement QMI service request rate limiting in 'can_write_data'.
2025-02-14 15:29 ` Denis Kenzior
@ 2025-02-14 17:27 ` Grant Erickson
2025-02-14 21:12 ` Denis Kenzior
0 siblings, 1 reply; 11+ messages in thread
From: Grant Erickson @ 2025-02-14 17:27 UTC (permalink / raw)
To: Denis Kenzior; +Cc: ofono
On Feb 14, 2025, at 7:29 AM, Denis Kenzior <denkenz@gmail.com> wrote:
>
>
> Hi Grant,
>
> > struct qmi_qmux_device {
>> @@ -653,8 +665,25 @@ static bool can_write_data(struct l_io *io, void *user_data)
>> {
>> struct qmi_transport *transport = user_data;
>> struct qmi_request *req;
>> + const bool throttle_enabled = transport->min_req_period_us > 0;
>> + uint64_t now = 0;
>
> I think this is still wrong? There's a reason why we have doc/coding-style.txt item M7.
>
>> + uint64_t delta;
>> int r;
>> + /*
>> + * Determine if we need to rate-limit commands to a
>> + * transport-specific minimum request period. If so,
>> + * return true so that the queue can be retried again
>> + * later.
>> + */
>> + if (throttle_enabled && transport->last_req_sent_time_us != 0) {
>
> Consider the starting condition:
>
> - last_req_sent_time_us -> zero
> - throttle_enabled -> true
>
> We don't enter into this if(), 'now' is still zero.
>
>> + now = l_time_now();
>> + delta = l_time_diff(now, transport->last_req_sent_time_us);
>> +
>> + if (delta < transport->min_req_period_us)
>> + return true;
>> + }
>> +
>> req = l_queue_pop_head(transport->req_queue);
>> if (!req)
>> return false;
>> @@ -665,6 +694,9 @@ static bool can_write_data(struct l_io *io, void *user_data)
>> return false;
>> }
>> + if (throttle_enabled)
>> + transport->last_req_sent_time_us = now;
>> +
>
> throttle_enabled is true, we set last_req_sent_time_us to 0. In effect your throttling doesn't work...?
Confirmed, thanks. v4 submitted.
I’ve noted that the default ofono warning flags do not highlight the potential conditional issue with ’now’ on arm, aarch64, or x86_64 with gcc or clang. If I dial up warnings with -Wall -Wextra -Weverything, then I get the warning.
With that in mind, do you want ’now’ to follow M7 with the default warning flag set or to not follow M7 but ensuring the warning is addressed using default initialization with a non-default set of warning flags?
Best,
Grant
--
Principal
Nuovations
gerickson@nuovations.com
https://www.nuovations.com/
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v3 4/7] qmi: Implement QMI service request rate limiting in 'can_write_data'.
2025-02-14 17:27 ` Grant Erickson
@ 2025-02-14 21:12 ` Denis Kenzior
0 siblings, 0 replies; 11+ messages in thread
From: Denis Kenzior @ 2025-02-14 21:12 UTC (permalink / raw)
To: Grant Erickson; +Cc: ofono
Hi Grant,
>
> I’ve noted that the default ofono warning flags do not highlight the potential conditional issue with ’now’ on arm, aarch64, or x86_64 with gcc or clang. If I dial up warnings with -Wall -Wextra -Weverything, then I get the warning.
This sometimes depends on the version of gcc as well.
>
> With that in mind, do you want ’now’ to follow M7 with the default warning flag set or to not follow M7 but ensuring the warning is addressed using default initialization with a non-default set of warning flags?
M7 should be followed, and if the warning is known to be spurious, then a pragma
may be added. See ell for examples of this (grep for _Pragma). However,
_Pragma is not always followed. Easiest may be to give the compiler a chance of
misinterpreting the intent :)
Regards,
-Denis
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-02-14 21:12 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-14 5:04 [PATCH v3 0/7] Add QMI Device Service Request Rate-limit Option Grant Erickson
2025-02-14 5:04 ` [PATCH v3 1/7] qmi: Added enumeration for device quirk flags Grant Erickson
2025-02-14 5:04 ` [PATCH v3 2/7] qmi: Added structure for device options Grant Erickson
2025-02-14 5:04 ` [PATCH v3 3/7] qmi: Added device options parameter to 'qmi_qmux_device_new' Grant Erickson
2025-02-14 5:04 ` [PATCH v3 4/7] qmi: Implement QMI service request rate limiting in 'can_write_data' Grant Erickson
2025-02-14 15:29 ` Denis Kenzior
2025-02-14 17:27 ` Grant Erickson
2025-02-14 21:12 ` Denis Kenzior
2025-02-14 5:04 ` [PATCH v3 5/7] qmi: Handle request rate limit option in 'qmi_qmux_device_new' Grant Erickson
2025-02-14 5:04 ` [PATCH v3 6/7] udevng: Set the QMI minimum service request period for Quectel BG96 modems Grant Erickson
2025-02-14 5:04 ` [PATCH v3 7/7] gobi: Pass QMI qmux device options to 'qmi_qmux_device_new' Grant Erickson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox