staging: lustre: lnet: remove LNET_SEQ_BASETYPE
The lnet_seq_t is a simple unsigned long so lets simplify it. 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>
This commit is contained in:
parent
8942bc2bca
commit
c2c2a39b4f
@ -119,8 +119,8 @@ struct lnet_libhandle {
|
||||
struct lnet_eq {
|
||||
struct list_head eq_list;
|
||||
struct lnet_libhandle eq_lh;
|
||||
lnet_seq_t eq_enq_seq;
|
||||
lnet_seq_t eq_deq_seq;
|
||||
unsigned long eq_enq_seq;
|
||||
unsigned long eq_deq_seq;
|
||||
unsigned int eq_size;
|
||||
lnet_eq_handler_t eq_callback;
|
||||
struct lnet_event *eq_events;
|
||||
|
@ -561,9 +561,7 @@ enum lnet_event_kind {
|
||||
LNET_EVENT_UNLINK,
|
||||
};
|
||||
|
||||
#define LNET_SEQ_BASETYPE long
|
||||
typedef unsigned LNET_SEQ_BASETYPE lnet_seq_t;
|
||||
#define LNET_SEQ_GT(a, b) (((signed LNET_SEQ_BASETYPE)((a) - (b))) > 0)
|
||||
#define LNET_SEQ_GT(a, b) (((signed long)((a) - (b))) > 0)
|
||||
|
||||
/**
|
||||
* Information about an event on a MD.
|
||||
@ -634,7 +632,7 @@ struct lnet_event {
|
||||
* The sequence number for this event. Sequence numbers are unique
|
||||
* to each event.
|
||||
*/
|
||||
volatile lnet_seq_t sequence;
|
||||
volatile unsigned long sequence;
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user