From: James Prestwood <prestwoj@gmail.com>
To: iwd@lists.linux.dev
Cc: James Prestwood <prestwoj@gmail.com>
Subject: [PATCH] wiphy: add info print for MulticastRxDisabled quirk
Date: Tue, 26 Nov 2024 11:24:33 -0800 [thread overview]
Message-ID: <20241126192433.102300-1-prestwoj@gmail.com> (raw)
This was forgotten in the prior patch set. It does not change any
behavior but just adds this to the driver flags debug print when
IWD starts up.
---
src/wiphy.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/wiphy.c b/src/wiphy.c
index 5e958d65..3d761251 100644
--- a/src/wiphy.c
+++ b/src/wiphy.c
@@ -1371,6 +1371,9 @@ static void wiphy_print_basic_info(struct wiphy *wiphy)
if (wiphy->driver_flags & OWE_DISABLE)
flags = l_strv_append(flags, "OweDisable");
+ if (wiphy->driver_flags & MULTICAST_RX_DISABLE)
+ flags = l_strv_append(flags, "MulticastRxDisable");
+
joined = l_strjoinv(flags, ' ');
l_info("\tDriver Flags: %s", joined);
--
2.34.1
next reply other threads:[~2024-11-26 19:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-26 19:24 James Prestwood [this message]
2024-12-17 17:21 ` [PATCH] wiphy: add info print for MulticastRxDisabled quirk Denis Kenzior
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=20241126192433.102300-1-prestwoj@gmail.com \
--to=prestwoj@gmail.com \
--cc=iwd@lists.linux.dev \
/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