svn commit: r345091 - head/sys/compat/linuxkpi/common/include/linux
Hans Petter Selasky
hselasky at FreeBSD.org
Wed Mar 13 17:46:06 UTC 2019
Author: hselasky
Date: Wed Mar 13 17:46:05 2019
New Revision: 345091
URL: https://svnweb.freebsd.org/changeset/base/345091
Log:
Implement dev_err_once() function macro in the LinuxKPI.
Submitted by: Johannes Lundberg <johalun0 at gmail.com>
MFC after: 1 week
Sponsored by: Limelight Networks
Sponsored by: Mellanox Technologies
Modified:
head/sys/compat/linuxkpi/common/include/linux/device.h
Modified: head/sys/compat/linuxkpi/common/include/linux/device.h
==============================================================================
--- head/sys/compat/linuxkpi/common/include/linux/device.h Wed Mar 13 17:42:31 2019 (r345090)
+++ head/sys/compat/linuxkpi/common/include/linux/device.h Wed Mar 13 17:46:05 2019 (r345091)
@@ -183,6 +183,14 @@ show_class_attr_string(struct class *class,
#define dev_printk(lvl, dev, fmt, ...) \
device_printf((dev)->bsddev, fmt, ##__VA_ARGS__)
+#define dev_err_once(dev, ...) do { \
+ static bool __dev_err_once; \
+ if (!__dev_err_once) { \
+ __dev_err_once = 1; \
+ dev_err(dev, __VA_ARGS__); \
+ } \
+} while (0)
+
#define dev_err_ratelimited(dev, ...) do { \
static linux_ratelimit_t __ratelimited; \
if (linux_ratelimited(&__ratelimited)) \
More information about the svn-src-head
mailing list