Merge pull request #78 from mmichal10/ctx-deinit-op
Additional context ops: deinit.
This commit is contained in:
commit
ded43cdec6
@ -430,13 +430,11 @@ int cas_initialize_context(void)
|
|||||||
ret = atomic_dev_init();
|
ret = atomic_dev_init();
|
||||||
if (ret) {
|
if (ret) {
|
||||||
printk(KERN_ERR "Cannot initialize atomic device layer\n");
|
printk(KERN_ERR "Cannot initialize atomic device layer\n");
|
||||||
goto err_block_dev;
|
goto err_rpool;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_block_dev:
|
|
||||||
block_dev_deinit();
|
|
||||||
err_rpool:
|
err_rpool:
|
||||||
cas_rpool_destroy(cas_bvec_pages_rpool, _cas_free_page_rpool, NULL);
|
cas_rpool_destroy(cas_bvec_pages_rpool, _cas_free_page_rpool, NULL);
|
||||||
err_mpool:
|
err_mpool:
|
||||||
@ -449,8 +447,6 @@ err_ctx:
|
|||||||
|
|
||||||
void cas_cleanup_context(void)
|
void cas_cleanup_context(void)
|
||||||
{
|
{
|
||||||
block_dev_deinit();
|
|
||||||
atomic_dev_deinit();
|
|
||||||
cas_garbage_collector_deinit();
|
cas_garbage_collector_deinit();
|
||||||
cas_mpool_destroy(cas_bvec_pool);
|
cas_mpool_destroy(cas_bvec_pool);
|
||||||
cas_rpool_destroy(cas_bvec_pages_rpool, _cas_free_page_rpool, NULL);
|
cas_rpool_destroy(cas_bvec_pages_rpool, _cas_free_page_rpool, NULL);
|
||||||
|
@ -114,6 +114,10 @@ static inline int env_mutex_is_locked(env_mutex *mutex)
|
|||||||
return mutex_is_locked(mutex);
|
return mutex_is_locked(mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void env_mutex_destroy(env_mutex *mutex)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/* *** RECURSIVE MUTEX *** */
|
/* *** RECURSIVE MUTEX *** */
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
@ -197,6 +201,10 @@ static inline int env_rmutex_is_locked(env_rmutex *rmutex)
|
|||||||
return mutex_is_locked(&rmutex->mutex);
|
return mutex_is_locked(&rmutex->mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void env_rmutex_destroy(env_rmutex *rmutex)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/* *** RW SEMAPHORE *** */
|
/* *** RW SEMAPHORE *** */
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
@ -261,6 +269,10 @@ static inline int env_rwsem_is_locked(env_rwsem *s)
|
|||||||
return rwsem_is_locked(&s->sem);
|
return rwsem_is_locked(&s->sem);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void env_rwsem_destroy(env_rwsem *s)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/* *** COMPLETION *** */
|
/* *** COMPLETION *** */
|
||||||
|
|
||||||
typedef struct completion env_completion;
|
typedef struct completion env_completion;
|
||||||
@ -280,6 +292,10 @@ static inline void env_completion_complete(env_completion *completion)
|
|||||||
complete(completion);
|
complete(completion);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void env_completion_destroy(env_completion *completion)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/* *** ATOMIC VARIABLES *** */
|
/* *** ATOMIC VARIABLES *** */
|
||||||
|
|
||||||
typedef atomic_t env_atomic;
|
typedef atomic_t env_atomic;
|
||||||
@ -429,6 +445,10 @@ static inline void env_spinlock_unlock_irq(env_spinlock *l)
|
|||||||
spin_unlock_irq(l);
|
spin_unlock_irq(l);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void env_spinlock_destroy(env_spinlock *l)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
#define env_spinlock_lock_irqsave(l, flags) \
|
#define env_spinlock_lock_irqsave(l, flags) \
|
||||||
spin_lock_irqsave((l), (flags))
|
spin_lock_irqsave((l), (flags))
|
||||||
|
|
||||||
@ -464,6 +484,10 @@ static inline void env_rwlock_write_unlock(env_rwlock *l)
|
|||||||
write_unlock(l);
|
write_unlock(l);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void env_rwlock_destroy(env_rwlock *l)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/* *** WAITQUEUE *** */
|
/* *** WAITQUEUE *** */
|
||||||
|
|
||||||
typedef wait_queue_head_t env_waitqueue;
|
typedef wait_queue_head_t env_waitqueue;
|
||||||
|
@ -1126,6 +1126,14 @@ error:
|
|||||||
io->end(io, result);
|
io->end(io, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void atomic_dev_deinit(void)
|
||||||
|
{
|
||||||
|
if (atomic_io_allocator) {
|
||||||
|
cas_mpool_destroy(atomic_io_allocator);
|
||||||
|
atomic_io_allocator = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const struct ocf_volume_properties cas_object_atomic_properties = {
|
const struct ocf_volume_properties cas_object_atomic_properties = {
|
||||||
.name = "Atomic Writes NVMe",
|
.name = "Atomic Writes NVMe",
|
||||||
.io_priv_size = sizeof(struct blkio),
|
.io_priv_size = sizeof(struct blkio),
|
||||||
@ -1148,6 +1156,7 @@ const struct ocf_volume_properties cas_object_atomic_properties = {
|
|||||||
.set_data = cas_blk_io_set_data,
|
.set_data = cas_blk_io_set_data,
|
||||||
.get_data = cas_blk_io_get_data,
|
.get_data = cas_blk_io_get_data,
|
||||||
},
|
},
|
||||||
|
.deinit = atomic_dev_deinit
|
||||||
};
|
};
|
||||||
|
|
||||||
int atomic_dev_init(void)
|
int atomic_dev_init(void)
|
||||||
@ -1171,16 +1180,6 @@ int atomic_dev_init(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void atomic_dev_deinit(void)
|
|
||||||
{
|
|
||||||
if (atomic_io_allocator) {
|
|
||||||
cas_mpool_destroy(atomic_io_allocator);
|
|
||||||
atomic_io_allocator = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
ocf_ctx_unregister_volume_type(cas_ctx, ATOMIC_DEVICE_VOLUME);
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
int atomic_dev_init(void)
|
int atomic_dev_init(void)
|
||||||
@ -1188,8 +1187,4 @@ int atomic_dev_init(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void atomic_dev_deinit(void)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -26,6 +26,4 @@ struct atomic_dev_params {
|
|||||||
|
|
||||||
int atomic_dev_init(void);
|
int atomic_dev_init(void);
|
||||||
|
|
||||||
void atomic_dev_deinit(void);
|
|
||||||
|
|
||||||
#endif /* __VOL_ATOMIC_DEV_BOTTOM_H__ */
|
#endif /* __VOL_ATOMIC_DEV_BOTTOM_H__ */
|
||||||
|
@ -565,6 +565,7 @@ const struct ocf_volume_properties cas_object_blk_properties = {
|
|||||||
.set_data = cas_blk_io_set_data,
|
.set_data = cas_blk_io_set_data,
|
||||||
.get_data = cas_blk_io_get_data,
|
.get_data = cas_blk_io_get_data,
|
||||||
},
|
},
|
||||||
|
.deinit = NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
int block_dev_init(void)
|
int block_dev_init(void)
|
||||||
@ -578,10 +579,6 @@ int block_dev_init(void)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
void block_dev_deinit(void)
|
|
||||||
{
|
|
||||||
ocf_ctx_unregister_volume_type(cas_ctx, BLOCK_DEVICE_VOLUME);
|
|
||||||
}
|
|
||||||
|
|
||||||
int block_dev_try_get_io_class(struct bio *bio, int *io_class)
|
int block_dev_try_get_io_class(struct bio *bio, int *io_class)
|
||||||
{
|
{
|
||||||
|
@ -21,6 +21,4 @@ int block_dev_try_get_io_class(struct bio *bio, int *io_class);
|
|||||||
|
|
||||||
int block_dev_init(void);
|
int block_dev_init(void);
|
||||||
|
|
||||||
void block_dev_deinit(void);
|
|
||||||
|
|
||||||
#endif /* __VOL_BLOCK_DEV_BOTTOM_H__ */
|
#endif /* __VOL_BLOCK_DEV_BOTTOM_H__ */
|
||||||
|
2
ocf
2
ocf
@ -1 +1 @@
|
|||||||
Subproject commit bc2084567330a16db660feb0f579210f525dfc2b
|
Subproject commit 8ed525ae7f9f2e8af12ff88804dd5a73d8c9fdd1
|
Loading…
Reference in New Issue
Block a user