All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mac80211: Fix clang warning about constant operand in logical operation
@ 2017-04-06 18:56 ` Matthias Kaehlcke
  0 siblings, 0 replies; 11+ messages in thread
From: Matthias Kaehlcke @ 2017-04-06 18:56 UTC (permalink / raw)
  To: Johannes Berg, David S . Miller
  Cc: linux-kernel, linux-wireless, netdev, Grant Grundler,
	Michael Davidson, Greg Hackmann, Matthias Kaehlcke

Clang raises a warning about the expression 'strlen(CONFIG_XXX)' being
used in a logical operation. Clangs' builtin strlen function resolves the
expression to a constant at compile time, which causes clang to generate
a 'constant-logical-operand' warning.

Split the if statement in two to avoid using the const expression in a
logical operation.

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
---
 net/mac80211/rate.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/net/mac80211/rate.c b/net/mac80211/rate.c
index 206698bc93f4..68ff202d6380 100644
--- a/net/mac80211/rate.c
+++ b/net/mac80211/rate.c
@@ -173,9 +173,14 @@ ieee80211_rate_control_ops_get(const char *name)
 		/* try default if specific alg requested but not found */
 		ops = ieee80211_try_rate_control_ops_get(ieee80211_default_rc_algo);
 
+	if (ops)
+		goto unlock;
+
 	/* try built-in one if specific alg requested but not found */
-	if (!ops && strlen(CONFIG_MAC80211_RC_DEFAULT))
+	if (strlen(CONFIG_MAC80211_RC_DEFAULT))
 		ops = ieee80211_try_rate_control_ops_get(CONFIG_MAC80211_RC_DEFAULT);
+
+unlock:
 	kernel_param_unlock(THIS_MODULE);
 
 	return ops;
-- 
2.12.2.715.g7642488e1d-goog

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2017-04-10 14:12 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-06 18:56 [PATCH] mac80211: Fix clang warning about constant operand in logical operation Matthias Kaehlcke
2017-04-06 18:56 ` Matthias Kaehlcke
2017-04-06 19:11 ` Johannes Berg
2017-04-06 19:11   ` Johannes Berg
2017-04-06 19:24   ` Matthias Kaehlcke
2017-04-06 21:12     ` Johannes Berg
2017-04-06 21:12       ` Johannes Berg
2017-04-06 22:42       ` Matthias Kaehlcke
2017-04-06 22:51         ` Johannes Berg
2017-04-06 23:07           ` Matthias Kaehlcke
2017-04-10 14:12 ` David Laight

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.