2019-03-12 10:44:27 +00:00
|
|
|
From patchwork Tue Mar 12 09:51:40 2019
|
|
|
|
Content-Type: text/plain; charset="utf-8"
|
|
|
|
MIME-Version: 1.0
|
|
|
|
Content-Transfer-Encoding: 7bit
|
|
|
|
X-Patchwork-Submitter: Stanislaw Gruszka <sgruszka@redhat.com>
|
|
|
|
X-Patchwork-Id: 10848957
|
|
|
|
X-Patchwork-Delegate: johannes@sipsolutions.net
|
|
|
|
From: Stanislaw Gruszka <sgruszka@redhat.com>
|
|
|
|
To: linux-wireless@vger.kernel.org
|
|
|
|
Cc: =?utf-8?q?Tomislav_Po=C5=BEega?= <pozega.tomislav@gmail.com>,
|
|
|
|
Daniel Golle <daniel@makrotopia.org>, Felix Fietkau <nbd@nbd.name>,
|
|
|
|
Mathias Kresin <dev@kresin.me>
|
|
|
|
Subject: [PATCH v3 1/4] cfg80211: add ratelimited variants of err and warn
|
|
|
|
Date: Tue, 12 Mar 2019 10:51:40 +0100
|
|
|
|
Message-Id: <1552384303-29529-2-git-send-email-sgruszka@redhat.com>
|
|
|
|
In-Reply-To: <1552384303-29529-1-git-send-email-sgruszka@redhat.com>
|
|
|
|
References: <1552384303-29529-1-git-send-email-sgruszka@redhat.com>
|
|
|
|
|
|
|
|
wiphy_{err,warn}_ratelimited will be used by rt2x00
|
|
|
|
|
|
|
|
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
|
|
|
|
---
|
|
|
|
include/net/cfg80211.h | 5 +++++
|
|
|
|
1 file changed, 5 insertions(+)
|
|
|
|
|
|
|
|
--- a/include/net/cfg80211.h
|
|
|
|
+++ b/include/net/cfg80211.h
|
2019-03-28 15:00:43 +00:00
|
|
|
@@ -6597,6 +6597,11 @@ int cfg80211_external_auth_request(struc
|
2019-03-12 10:44:27 +00:00
|
|
|
#define wiphy_info(wiphy, format, args...) \
|
|
|
|
dev_info(&(wiphy)->dev, format, ##args)
|
|
|
|
|
|
|
|
+#define wiphy_err_ratelimited(wiphy, format, args...) \
|
|
|
|
+ dev_err_ratelimited(&(wiphy)->dev, format, ##args)
|
|
|
|
+#define wiphy_warn_ratelimited(wiphy, format, args...) \
|
|
|
|
+ dev_warn_ratelimited(&(wiphy)->dev, format, ##args)
|
|
|
|
+
|
|
|
|
#define wiphy_debug(wiphy, format, args...) \
|
|
|
|
wiphy_printk(KERN_DEBUG, wiphy, format, ##args)
|
|
|
|
|