svn commit: r342131 - stable/11/sys/dev/netmap
Vincenzo Maffione
vmaffione at FreeBSD.org
Sat Dec 15 18:08:00 UTC 2018
Author: vmaffione
Date: Sat Dec 15 18:07:59 2018
New Revision: 342131
URL: https://svnweb.freebsd.org/changeset/base/342131
Log:
MFC r341992
netmap: fix warning in netmap_kloop.c
Reported by: markj
Modified:
stable/11/sys/dev/netmap/netmap_kloop.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/dev/netmap/netmap_kloop.c
==============================================================================
--- stable/11/sys/dev/netmap/netmap_kloop.c Sat Dec 15 18:05:05 2018 (r342130)
+++ stable/11/sys/dev/netmap/netmap_kloop.c Sat Dec 15 18:07:59 2018 (r342131)
@@ -111,6 +111,7 @@ csb_ktoa_kick_enable(struct nm_csb_ktoa __user *csb_kt
CSB_WRITE(csb_ktoa, kern_need_kick, val);
}
+#ifdef SYNC_KLOOP_POLL
/* Are application interrupt enabled or disabled? */
static inline uint32_t
csb_atok_intr_enabled(struct nm_csb_atok __user *csb_atok)
@@ -121,6 +122,7 @@ csb_atok_intr_enabled(struct nm_csb_atok __user *csb_a
return v;
}
+#endif /* SYNC_KLOOP_POLL */
static inline void
sync_kloop_kring_dump(const char *title, const struct netmap_kring *kring)
More information about the svn-src-stable-11
mailing list