struct zpool *zpool_create_pool(const char *type, const char *name, gfp_t gfp,
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/spinlock.h>
#include <linux/module.h>
struct zpool_driver *driver;
const struct zpool_ops *ops;
static LIST_HEAD(drivers_head);
static DEFINE_SPINLOCK(drivers_lock);
static LIST_HEAD(pools_head);
static DEFINE_SPINLOCK(pools_lock);
void zpool_register_driver(struct zpool_driver *driver)
spin_lock(&drivers_lock);
atomic_set(&driver->refcount, 0);
list_add(&driver->list, &drivers_head);
spin_unlock(&drivers_lock);
EXPORT_SYMBOL(zpool_register_driver);
int zpool_unregister_driver(struct zpool_driver *driver)
spin_lock(&drivers_lock);
refcount = atomic_read(&driver->refcount);
spin_unlock(&drivers_lock);
EXPORT_SYMBOL(zpool_unregister_driver);
static struct zpool_driver *zpool_get_driver(const char *type)
struct zpool_driver *driver;
spin_lock(&drivers_lock);
list_for_each_entry(driver, &drivers_head, list) {
if (!strcmp(driver->type, type)) {
bool got = try_module_get(driver->owner);
atomic_inc(&driver->refcount);
spin_unlock(&drivers_lock);
return got ? driver : NULL;
spin_unlock(&drivers_lock);