long dax_direct_access(struct dax_device *dax_dev, pgoff_t pgoff, long nr_pages,
#include <linux/pagemap.h>
#include <linux/module.h>
DEFINE_STATIC_SRCU(dax_srcu);
static struct vfsmount *dax_mnt;
static DEFINE_IDA(dax_minor_ida);
static struct kmem_cache *dax_cache __read_mostly;
static struct super_block *dax_superblock __read_mostly;
#define DAX_HASH_SIZE (PAGE_SIZE / sizeof(struct hlist_head))
static struct hlist_head dax_host_list[DAX_HASH_SIZE];
static DEFINE_SPINLOCK(dax_host_lock);
return srcu_read_lock(&dax_srcu);
EXPORT_SYMBOL_GPL(dax_read_lock);
void dax_read_unlock(int id)
srcu_read_unlock(&dax_srcu, id);
EXPORT_SYMBOL_GPL(dax_read_unlock);
#include <linux/blkdev.h>
int bdev_dax_pgoff(struct block_device *bdev, sector_t sector, size_t size,
phys_addr_t phys_off = (get_start_sect(bdev) + sector) * 512;
*pgoff = PHYS_PFN(phys_off);
if (phys_off % PAGE_SIZE || size % PAGE_SIZE)