diff options
| author | Oleg Drokin <[email protected]> | 2016-02-24 21:59:49 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2016-02-25 22:05:50 -0800 |
| commit | efede67ca150b6aa3d952b9652000d570b2d095b (patch) | |
| tree | 45c178f8077043e638d2bc0f495c8f2ca576b333 | |
| parent | d133210f2ff1eccbb7c01be66c2783d177fe6e17 (diff) | |
staging/lustre: Get rid of ost_cmd_t typedef
Replace it with enum ost_cmd
Signed-off-by: Oleg Drokin <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/lustre/lustre/include/lustre/lustre_idl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/lustre/lustre/include/lustre/lustre_idl.h b/drivers/staging/lustre/lustre/include/lustre/lustre_idl.h index 0f37b615b246..50e70fee9d8f 100644 --- a/drivers/staging/lustre/lustre/include/lustre/lustre_idl.h +++ b/drivers/staging/lustre/lustre/include/lustre/lustre_idl.h @@ -1419,7 +1419,7 @@ enum cksum_type { */ /* opcodes */ -typedef enum { +enum ost_cmd { OST_REPLY = 0, /* reply ? */ OST_GETATTR = 1, OST_SETATTR = 2, @@ -1440,7 +1440,7 @@ typedef enum { OST_QUOTACTL = 19, OST_QUOTA_ADJUST_QUNIT = 20, /* not used since 2.4 */ OST_LAST_OPC -} ost_cmd_t; +}; #define OST_FIRST_OPC OST_REPLY enum obdo_flags { |