#include "dm-cache-background-tracker.h"
#define DM_MSG_PREFIX "dm-background-tracker"
struct background_tracker {
atomic_t pending_promotes;
atomic_t pending_writebacks;
atomic_t pending_demotes;
struct kmem_cache *work_cache;
struct background_tracker *btracker_create(unsigned max_work)
struct background_tracker *b = kmalloc(sizeof(*b), GFP_KERNEL);
DMERR("couldn't create background_tracker");
atomic_set(&b->pending_promotes, 0);
atomic_set(&b->pending_writebacks, 0);
atomic_set(&b->pending_demotes, 0);
INIT_LIST_HEAD(&b->issued);
INIT_LIST_HEAD(&b->queued);
b->work_cache = KMEM_CACHE(bt_work, 0);
DMERR("couldn't create mempool for background work items");
EXPORT_SYMBOL_GPL(btracker_create);
void btracker_destroy(struct background_tracker *b)
kmem_cache_destroy(b->work_cache);