#define LOG_ROUTING_BITS(level) (level)
#endif
+#ifndef VMW_LOG_HELPER_FUNCTIONS
+#define VMW_LOG_HELPER_FUNCTIONS
+/*
+ * Helper functions for module level filtering.
+ */
+
+static INLINE void
+LogV_Module(int32 level,
+ const char *fmt,
+ va_list args)
+{
+ LogV(LOG_ROUTING_BITS(level), fmt, args);
+}
+
+static INLINE void PRINTF_DECL(2, 3)
+Log_LevelModule(int32 level,
+ const char *fmt,
+ ...)
+{
+ va_list ap;
+
+ va_start(ap, fmt);
+ LogV_Module(level, fmt, ap);
+ va_end(ap);
+}
+
+#endif
LOGLEVEL_VAR(extcfgdevice), \
LOGLEVEL_VAR(fakeDma), \
LOGLEVEL_VAR(filtlib), \
+ LOGLEVEL_VAR(FiltLibTestLog), \
LOGLEVEL_VAR(flashram), \
LOGLEVEL_VAR(floppy), \
LOGLEVEL_VAR(fsresx), \
LOGLEVEL_VAR(hostctl), \
LOGLEVEL_VAR(hostonly), \
LOGLEVEL_VAR(hpet), \
+ LOGLEVEL_VAR(Heap), \
LOGLEVEL_VAR(http), \
LOGLEVEL_VAR(ich7m), \
LOGLEVEL_VAR(inputdevtap), \