From 4f02a4f48c080ad56f0d7c745ace4d2f7dacf928 Mon Sep 17 00:00:00 2001 From: Dmitry Chagin Date: Sat, 28 May 2022 23:47:23 +0300 Subject: [PATCH] linux(4): Add LINUX_RATELIMIT_MSG_OPT2 for future use MFC after: 2 weeks --- sys/compat/linux/linux_util.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sys/compat/linux/linux_util.h b/sys/compat/linux/linux_util.h index a29ba0bc4af1..6f7b55be8123 100644 --- a/sys/compat/linux/linux_util.h +++ b/sys/compat/linux/linux_util.h @@ -198,4 +198,16 @@ bool linux_use_real_ifname(const struct ifnet *ifp); } \ } while (0) +#define LINUX_RATELIMIT_MSG_OPT2(_message, _opt1, _opt2) \ + do { \ + static int seen = 0; \ + \ + if (seen == 0) { \ + linux_msg(curthread, _message, _opt1, _opt2); \ + \ + if (linux_debug < 3) \ + seen = 1; \ + } \ + } while (0) + #endif /* ! _LINUX_UTIL_H_ */