Skip to content

Commit

Permalink
lightnvm: remove unused attrs in nvm_id structs
Browse files Browse the repository at this point in the history
The nvm_id, nvm_id_group and nvm_addr_format data structures contain
reserved attributes. They are unused by media managers and targets.
Remove them.

Signed-off-by: Matias Bjørling <m@bjorling.me>
Signed-off-by: Jens Axboe <axboe@fb.com>
  • Loading branch information
Matias Bjørling authored and Jens Axboe committed Nov 16, 2015
1 parent 12be5ed commit 73387e7
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions include/linux/lightnvm.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ enum {
struct nvm_id_group {
u8 mtype;
u8 fmtype;
u16 res16;
u8 num_ch;
u8 num_lun;
u8 num_pln;
Expand All @@ -76,8 +75,7 @@ struct nvm_id_group {
u32 mpos;
u32 mccap;
u16 cpar;
u8 res[913];
} __packed;
};

struct nvm_addr_format {
u8 ch_offset;
Expand All @@ -92,19 +90,16 @@ struct nvm_addr_format {
u8 pg_len;
u8 sect_offset;
u8 sect_len;
u8 res[4];
};

struct nvm_id {
u8 ver_id;
u8 vmnt;
u8 cgrps;
u8 res[5];
u32 cap;
u32 dom;
struct nvm_addr_format ppaf;
u8 ppat;
u8 resv[224];
struct nvm_id_group groups[4];
} __packed;

Expand Down

0 comments on commit 73387e7

Please sign in to comment.