Commit f1e0bfb0 authored by James Simmons's avatar James Simmons Committed by Greg Kroah-Hartman

staging: lustre: lnet: change lnet_test_peer_t to proper structure

Change lnet_test_peer_t from typedef to proper structure.
Signed-off-by: default avatarJames Simmons <uja.ornl@yahoo.com>
Reviewed-on: https://review.whamcloud.com/20831Reviewed-by: default avatarOlaf Weber <olaf@sgi.com>
Reviewed-by: default avatarDoug Oucharek <doug.s.oucharek@intel.com>
Reviewed-by: default avatarDmitry Eremin <dmitry.eremin@intel.com>
Reviewed-by: default avatarOleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5272e806
...@@ -164,12 +164,12 @@ struct lnet_libmd { ...@@ -164,12 +164,12 @@ struct lnet_libmd {
#define LNET_MD_FLAG_AUTO_UNLINK (1 << 1) #define LNET_MD_FLAG_AUTO_UNLINK (1 << 1)
#define LNET_MD_FLAG_ABORTED (1 << 2) #define LNET_MD_FLAG_ABORTED (1 << 2)
typedef struct { struct lnet_test_peer {
/* info about peers we are trying to fail */ /* info about peers we are trying to fail */
struct list_head tp_list; /* ln_test_peers */ struct list_head tp_list; /* ln_test_peers */
lnet_nid_t tp_nid; /* matching nid */ lnet_nid_t tp_nid; /* matching nid */
unsigned int tp_threshold; /* # failures to simulate */ unsigned int tp_threshold; /* # failures to simulate */
} lnet_test_peer_t; };
#define LNET_COOKIE_TYPE_MD 1 #define LNET_COOKIE_TYPE_MD 1
#define LNET_COOKIE_TYPE_ME 2 #define LNET_COOKIE_TYPE_ME 2
......
...@@ -47,8 +47,8 @@ MODULE_PARM_DESC(local_nid_dist_zero, "Reserved"); ...@@ -47,8 +47,8 @@ MODULE_PARM_DESC(local_nid_dist_zero, "Reserved");
int int
lnet_fail_nid(lnet_nid_t nid, unsigned int threshold) lnet_fail_nid(lnet_nid_t nid, unsigned int threshold)
{ {
lnet_test_peer_t *tp; struct lnet_test_peer *tp;
lnet_test_peer_t *temp; struct lnet_test_peer *temp;
struct list_head *el; struct list_head *el;
struct list_head *next; struct list_head *next;
struct list_head cull; struct list_head cull;
...@@ -75,7 +75,7 @@ lnet_fail_nid(lnet_nid_t nid, unsigned int threshold) ...@@ -75,7 +75,7 @@ lnet_fail_nid(lnet_nid_t nid, unsigned int threshold)
lnet_net_lock(0); lnet_net_lock(0);
list_for_each_safe(el, next, &the_lnet.ln_test_peers) { list_for_each_safe(el, next, &the_lnet.ln_test_peers) {
tp = list_entry(el, lnet_test_peer_t, tp_list); tp = list_entry(el, struct lnet_test_peer, tp_list);
if (!tp->tp_threshold || /* needs culling anyway */ if (!tp->tp_threshold || /* needs culling anyway */
nid == LNET_NID_ANY || /* removing all entries */ nid == LNET_NID_ANY || /* removing all entries */
...@@ -97,8 +97,8 @@ lnet_fail_nid(lnet_nid_t nid, unsigned int threshold) ...@@ -97,8 +97,8 @@ lnet_fail_nid(lnet_nid_t nid, unsigned int threshold)
static int static int
fail_peer(lnet_nid_t nid, int outgoing) fail_peer(lnet_nid_t nid, int outgoing)
{ {
lnet_test_peer_t *tp; struct lnet_test_peer *tp;
lnet_test_peer_t *temp; struct lnet_test_peer *temp;
struct list_head *el; struct list_head *el;
struct list_head *next; struct list_head *next;
struct list_head cull; struct list_head cull;
...@@ -110,7 +110,7 @@ fail_peer(lnet_nid_t nid, int outgoing) ...@@ -110,7 +110,7 @@ fail_peer(lnet_nid_t nid, int outgoing)
lnet_net_lock(0); lnet_net_lock(0);
list_for_each_safe(el, next, &the_lnet.ln_test_peers) { list_for_each_safe(el, next, &the_lnet.ln_test_peers) {
tp = list_entry(el, lnet_test_peer_t, tp_list); tp = list_entry(el, struct lnet_test_peer, tp_list);
if (!tp->tp_threshold) { if (!tp->tp_threshold) {
/* zombie entry */ /* zombie entry */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment