Change lnet_ins_pos_t from typedef to proper enum.
Signed-off-by: James Simmons <uja.ornl@yahoo.com>
Reviewed-on: https://review.whamcloud.com/20831
Reviewed-by: Olaf Weber <olaf@sgi.com>
Reviewed-by: Doug Oucharek <doug.s.oucharek@intel.com>
Reviewed-by: Dmitry Eremin <dmitry.eremin@intel.com>
Reviewed-by: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
                 __u64             match_bits_in,
                 __u64             ignore_bits_in,
                 enum lnet_unlink unlink_in,
-                lnet_ins_pos_t    pos_in,
+                enum lnet_ins_pos pos_in,
                 struct lnet_handle_me *handle_out);
 
 int LNetMEInsert(struct lnet_handle_me current_in,
                 __u64             match_bits_in,
                 __u64             ignore_bits_in,
                 enum lnet_unlink unlink_in,
-                lnet_ins_pos_t    position_in,
+                enum lnet_ins_pos position_in,
                 struct lnet_handle_me *handle_out);
 
 int LNetMEUnlink(struct lnet_handle_me current_in);
 
 struct lnet_match_table *lnet_mt_of_attach(unsigned int index,
                                           struct lnet_process_id id,
                                           __u64 mbits, __u64 ignore_bits,
-                                          lnet_ins_pos_t pos);
+                                          enum lnet_ins_pos pos);
 int lnet_mt_match_md(struct lnet_match_table *mtable,
                     struct lnet_match_info *info, struct lnet_msg *msg);
 
 
 };
 
 /**
- * Values of the type lnet_ins_pos_t are used to control where a new match
+ * Values of the type lnet_ins_pos are used to control where a new match
  * entry is inserted. The value LNET_INS_BEFORE is used to insert the new
  * entry before the current entry or before the head of the list. The value
  * LNET_INS_AFTER is used to insert the new entry after the current entry
  * or after the last item in the list.
  */
-typedef enum {
+enum lnet_ins_pos {
        /** insert ME before current position or head of the list */
        LNET_INS_BEFORE,
        /** insert ME after current position or tail of the list */
        LNET_INS_AFTER,
        /** attach ME at tail of local CPU partition ME list */
        LNET_INS_LOCAL
-} lnet_ins_pos_t;
+};
 
 /** @} lnet_me */
 
 
 LNetMEAttach(unsigned int portal,
             struct lnet_process_id match_id,
             __u64 match_bits, __u64 ignore_bits,
-            enum lnet_unlink unlink, lnet_ins_pos_t pos,
+            enum lnet_unlink unlink, enum lnet_ins_pos pos,
             struct lnet_handle_me *handle)
 {
        struct lnet_match_table *mtable;
 LNetMEInsert(struct lnet_handle_me current_meh,
             struct lnet_process_id match_id,
             __u64 match_bits, __u64 ignore_bits,
-            enum lnet_unlink unlink, lnet_ins_pos_t pos,
+            enum lnet_unlink unlink, enum lnet_ins_pos pos,
             struct lnet_handle_me *handle)
 {
        struct lnet_me *current_me;
 
 
 struct lnet_match_table *
 lnet_mt_of_attach(unsigned int index, struct lnet_process_id id,
-                 __u64 mbits, __u64 ignore_bits, lnet_ins_pos_t pos)
+                 __u64 mbits, __u64 ignore_bits, enum lnet_ins_pos pos)
 {
        struct lnet_portal *ptl;
        struct lnet_match_table *mtable;