]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
staging: lustre: lnet: change lst_bid_t to proper structure
authorJames Simmons <jsimmons@infradead.org>
Mon, 16 Jan 2017 21:30:05 +0000 (16:30 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jan 2017 10:10:14 +0000 (11:10 +0100)
Change lst_bid_t from typedef to proper structure.

Signed-off-by: James Simmons <uja.ornl@yahoo.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6142
Reviewed-on: https://review.whamcloud.com/24188
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Doug Oucharek <doug.s.oucharek@intel.com>
Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/include/linux/lnet/lnetst.h
drivers/staging/lustre/lnet/selftest/console.h
drivers/staging/lustre/lnet/selftest/framework.c
drivers/staging/lustre/lnet/selftest/rpc.h
drivers/staging/lustre/lnet/selftest/selftest.h

index 68c7f5837be39c78dc0a075d94b06529fb855e38..b72128755b9a9c61c6e193f2572d9ac0d2b4821d 100644 (file)
@@ -75,9 +75,9 @@ struct lst_sid {
 
 extern struct lst_sid LST_INVALID_SID;
 
-typedef struct {
+struct lst_bid {
        __u64   bat_id;         /* unique id in session */
-} lst_bid_t;                   /*** batch id (group of tests) */
+};                             /*** batch id (group of tests) */
 
 /* Status of test node */
 #define LST_NODE_ACTIVE                0x1     /* node in this session */
index 4bf7ecdce966dc6aa58a8020dbfacd329ebc570c..b37c37ea3864a7d99d0f5ffb305d44f309472f02 100644 (file)
@@ -81,7 +81,7 @@ struct lstcon_group {
 #define LST_BATCH_RUNNING 0xB1     /* running batch */
 
 struct lstcon_tsb_hdr {
-       lst_bid_t        tsb_id;         /* batch ID */
+       struct lst_bid   tsb_id;         /* batch ID */
        int              tsb_index;      /* test index */
 };
 
index 4100f67f07451bc7ed5cc2666d7e87d6140e0b32..5ca6712566650e18988bd6c95d6896766ba2c4a1 100644 (file)
@@ -316,7 +316,7 @@ sfw_client_rpc_fini(struct srpc_client_rpc *rpc)
 }
 
 static struct sfw_batch *
-sfw_find_batch(lst_bid_t bid)
+sfw_find_batch(struct lst_bid bid)
 {
        struct sfw_session *sn = sfw_data.fw_session;
        struct sfw_batch *bat;
@@ -332,7 +332,7 @@ sfw_find_batch(lst_bid_t bid)
 }
 
 static struct sfw_batch *
-sfw_bid2batch(lst_bid_t bid)
+sfw_bid2batch(struct lst_bid bid)
 {
        struct sfw_session *sn = sfw_data.fw_session;
        struct sfw_batch *bat;
index 3324c3f1adde2216a40d403893aa1b44575da6bd..f2987c599055321d7aed126aa2ee9554c2cdb37e 100644 (file)
@@ -139,7 +139,7 @@ struct srpc_debug_reply {
 struct srpc_batch_reqst {
        __u64              bar_rpyid;      /* reply buffer matchbits */
        struct lst_sid     bar_sid;        /* session id */
-       lst_bid_t          bar_bid;        /* batch id */
+       struct lst_bid     bar_bid;        /* batch id */
        __u32              bar_opc;        /* create/start/stop batch */
        __u32              bar_testidx;    /* index of test */
        __u32              bar_arg;        /* parameters */
@@ -188,7 +188,7 @@ struct srpc_test_reqst {
        __u64                   tsr_rpyid;      /* reply buffer matchbits */
        __u64                   tsr_bulkid;     /* bulk buffer matchbits */
        struct lst_sid          tsr_sid;        /* session id */
-       lst_bid_t               tsr_bid;        /* batch id */
+       struct lst_bid          tsr_bid;        /* batch id */
        __u32                   tsr_service;    /* test type: bulk|ping|... */
        __u32                   tsr_loop;       /* test client loop count or
                                                 * # server buffers needed
index 35f98aed46142d48cf8343c1cdce4712ab16a91b..79b05aa5983567bf4f9f0c6d67ed05adbf851889 100644 (file)
@@ -340,7 +340,7 @@ struct sfw_session {
 
 struct sfw_batch {
        struct list_head bat_list;      /* chain on sn_batches */
-       lst_bid_t        bat_id;        /* batch id */
+       struct lst_bid   bat_id;        /* batch id */
        int              bat_error;     /* error code of batch */
        struct sfw_session      *bat_session;   /* batch's session */
        atomic_t         bat_nactive;   /* # of active tests */