diff options
author | Javier González <jg@lightnvm.io> | 2016-11-28 22:39:11 +0100 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-11-29 12:12:51 -0700 |
commit | 959e911b31981b52ed3f3d6e351b107bcb9163ef (patch) | |
tree | 52f99be3c1f8fb556f3314b702547929d2f0559b /include/linux/lightnvm.h | |
parent | 8e53624d44c1de31b1b0d4f500703669418a4c67 (diff) | |
download | linux-959e911b31981b52ed3f3d6e351b107bcb9163ef.tar.gz linux-959e911b31981b52ed3f3d6e351b107bcb9163ef.tar.bz2 linux-959e911b31981b52ed3f3d6e351b107bcb9163ef.zip |
lightnvm: introduce helpers for generic ops in rrpc
Avoid calling media manager and device-specific operations directly from
rrpc. Create helper functions on lightnvm's core instead.
Signed-off-by: Javier González <javier@cnexlabs.com>
Made it work with null_blk as well.
Signed-off-by: Matias Bjørling <m@bjorling.me>
Signed-off-by: Matias Bjørling <m@bjorling.me>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux/lightnvm.h')
-rw-r--r-- | include/linux/lightnvm.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/linux/lightnvm.h b/include/linux/lightnvm.h index 2222853ef969..99cd1e70e451 100644 --- a/include/linux/lightnvm.h +++ b/include/linux/lightnvm.h @@ -320,10 +320,7 @@ struct nvm_tgt_dev { struct nvm_id identity; struct request_queue *q; - struct nvmm_type *mt; - struct nvm_dev_ops *ops; - - void *parent; + struct nvm_dev *parent; void *map; }; |