94 lines
2.4 KiB
C
94 lines
2.4 KiB
C
/*
|
|
* Copyright(c) 2012-2019 Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
*/
|
|
#ifndef __CASDISK_DEFS_H__
|
|
#define __CASDISK_DEFS_H__
|
|
|
|
#include <linux/version.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/module.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/kobject.h>
|
|
#include <cas_version.h>
|
|
|
|
struct casdsk_stored_config {
|
|
size_t n_blobs;
|
|
struct casdsk_props_conf *blobs;
|
|
};
|
|
|
|
struct casdsk_module {
|
|
struct mutex lock;
|
|
|
|
struct list_head disk_list;
|
|
uint32_t next_disk_id;
|
|
int disk_major;
|
|
int next_minor;
|
|
|
|
struct kmem_cache *disk_cache;
|
|
struct kmem_cache *exp_obj_cache;
|
|
struct kmem_cache *pt_io_ctx_cache;
|
|
struct kmem_cache *pending_rqs_cache;
|
|
|
|
struct kobject kobj;
|
|
|
|
struct casdsk_stored_config config;
|
|
};
|
|
|
|
extern struct casdsk_module *casdsk_module;
|
|
|
|
/* prefixes for messages */
|
|
#define CASDSK_LOGO "CAS Disk"
|
|
#define CASDSK_PREFIX_SHORT "[" CASDSK_LOGO "] "
|
|
#define CASDSK_PREFIX_LONG "Cache Acceleration Software Linux"
|
|
|
|
#define CASDSK_KERN_EMERG KERN_EMERG""CASDSK_PREFIX_SHORT
|
|
#define CASDSK_KERN_ALERT KERN_ALERT""CASDSK_PREFIX_SHORT
|
|
#define CASDSK_KERN_CRIT KERN_CRIT""CASDSK_PREFIX_SHORT
|
|
#define CASDSK_KERN_ERR KERN_ERR""CASDSK_PREFIX_SHORT
|
|
#define CASDSK_KERN_WARNING KERN_WARNING""CASDSK_PREFIX_SHORT
|
|
#define CASDSK_KERN_NOTICE KERN_NOTICE""CASDSK_PREFIX_SHORT
|
|
#define CASDSK_KERN_INFO KERN_INFO""CASDSK_PREFIX_SHORT
|
|
#define CASDSK_KERN_DEBUG KERN_DEBUG""CASDSK_PREFIX_SHORT
|
|
|
|
#if LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 37)
|
|
static inline struct block_device *open_bdev_exclusive(const char *path,
|
|
fmode_t mode,
|
|
void *holder)
|
|
{
|
|
return blkdev_get_by_path(path, mode | FMODE_EXCL, holder);
|
|
}
|
|
|
|
static inline void close_bdev_exclusive(struct block_device *bdev, fmode_t mode)
|
|
{
|
|
blkdev_put(bdev, mode | FMODE_EXCL);
|
|
}
|
|
|
|
static inline int bd_claim_by_disk(struct block_device *bdev, void *holder,
|
|
struct gendisk *disk)
|
|
{
|
|
return bd_link_disk_holder(bdev, disk);
|
|
}
|
|
|
|
static inline void bd_release_from_disk(struct block_device *bdev,
|
|
struct gendisk *disk)
|
|
{
|
|
return bd_unlink_disk_holder(bdev, disk);
|
|
}
|
|
#endif
|
|
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 3, 0)
|
|
#define KRETURN(x) ({ return (x); })
|
|
#define MAKE_RQ_RET_TYPE blk_qc_t
|
|
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0)
|
|
#define KRETURN(x) return
|
|
#define MAKE_RQ_RET_TYPE void
|
|
#else
|
|
#define KRETURN(x) ({ return (x); })
|
|
#define MAKE_RQ_RET_TYPE int
|
|
#endif
|
|
|
|
#include "debug.h"
|
|
|
|
#endif
|