2011-11-21 23:35:35 +07:00
|
|
|
#ifndef _LIBKMOD_PRIVATE_H_
|
|
|
|
#define _LIBKMOD_PRIVATE_H_
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
|
2011-11-23 21:23:46 +07:00
|
|
|
#include "macro.h"
|
2011-11-21 23:35:35 +07:00
|
|
|
#include "libkmod.h"
|
|
|
|
|
2011-11-23 21:21:29 +07:00
|
|
|
static __always_inline __printf_format(2, 3) void
|
2011-11-21 23:35:35 +07:00
|
|
|
kmod_log_null(struct kmod_ctx *ctx, const char *format, ...) {}
|
|
|
|
|
|
|
|
#define kmod_log_cond(ctx, prio, arg...) \
|
|
|
|
do { \
|
|
|
|
if (kmod_get_log_priority(ctx) >= prio) \
|
|
|
|
kmod_log(ctx, prio, __FILE__, __LINE__, __FUNCTION__, ## arg);\
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#ifdef ENABLE_LOGGING
|
|
|
|
# ifdef ENABLE_DEBUG
|
2011-11-25 10:05:30 +07:00
|
|
|
# define DBG(ctx, arg...) kmod_log_cond(ctx, LOG_DEBUG, ## arg)
|
2011-11-21 23:35:35 +07:00
|
|
|
# else
|
2011-11-25 10:05:30 +07:00
|
|
|
# define DBG(ctx, arg...) kmod_log_null(ctx, ## arg)
|
2011-11-21 23:35:35 +07:00
|
|
|
# endif
|
2011-11-25 10:05:30 +07:00
|
|
|
# define INFO(ctx, arg...) kmod_log_cond(ctx, LOG_INFO, ## arg)
|
|
|
|
# define ERR(ctx, arg...) kmod_log_cond(ctx, LOG_ERR, ## arg)
|
2011-11-21 23:35:35 +07:00
|
|
|
#else
|
2011-11-25 10:05:30 +07:00
|
|
|
# define DBG(ctx, arg...) kmod_log_null(ctx, ## arg)
|
|
|
|
# define INFO(ctx, arg...) kmod_log_null(ctx, ## arg)
|
|
|
|
# define ERR(ctx, arg...) kmod_log_null(ctx, ## arg)
|
2011-11-21 23:35:35 +07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define KMOD_EXPORT __attribute__ ((visibility("default")))
|
|
|
|
|
|
|
|
void kmod_log(struct kmod_ctx *ctx,
|
|
|
|
int priority, const char *file, int line, const char *fn,
|
|
|
|
const char *format, ...) __attribute__((format(printf, 6, 7)));
|
|
|
|
|
2011-11-22 14:38:28 +07:00
|
|
|
struct list_node {
|
|
|
|
struct list_node *next, *prev;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct kmod_list {
|
|
|
|
struct list_node node;
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
2011-11-23 21:21:29 +07:00
|
|
|
struct kmod_list *kmod_list_append(struct kmod_list *list, void *data) __must_check;
|
|
|
|
struct kmod_list *kmod_list_prepend(struct kmod_list *list, void *data) __must_check;
|
2011-11-22 14:38:28 +07:00
|
|
|
struct kmod_list *kmod_list_remove(struct kmod_list *list);
|
|
|
|
struct kmod_list *kmod_list_remove_data(struct kmod_list *list,
|
2011-11-23 21:21:29 +07:00
|
|
|
const void *data) __must_check;
|
2011-11-22 14:38:28 +07:00
|
|
|
|
2011-11-25 01:41:01 +07:00
|
|
|
const char *kmod_get_dirname(struct kmod_ctx *ctx) __attribute__((nonnull(1)));
|
|
|
|
|
2011-11-21 23:35:35 +07:00
|
|
|
#endif
|