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

staging: lustre: lnet: change lstio_test_args_t to proper structure

Change lstio_test_args_t from typedef to proper structure.
Signed-off-by: default avatarJames Simmons <uja.ornl@yahoo.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6142
Reviewed-on: https://review.whamcloud.com/24188Reviewed-by: default avatarAndreas Dilger <andreas.dilger@intel.com>
Reviewed-by: default avatarDoug Oucharek <doug.s.oucharek@intel.com>
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e7f8efc4
...@@ -442,7 +442,7 @@ enum lst_test_type { ...@@ -442,7 +442,7 @@ enum lst_test_type {
/* create a test in a batch */ /* create a test in a batch */
#define LST_MAX_CONCUR 1024 /* Max concurrency of test */ #define LST_MAX_CONCUR 1024 /* Max concurrency of test */
typedef struct { struct lstio_test_args {
int lstio_tes_key; /* IN: session key */ int lstio_tes_key; /* IN: session key */
int lstio_tes_bat_nmlen; /* IN: batch name len */ int lstio_tes_bat_nmlen; /* IN: batch name len */
char __user *lstio_tes_bat_name; /* IN: batch name */ char __user *lstio_tes_bat_name; /* IN: batch name */
...@@ -472,7 +472,7 @@ typedef struct { ...@@ -472,7 +472,7 @@ typedef struct {
value */ value */
struct list_head __user *lstio_tes_resultp;/* OUT: list head of struct list_head __user *lstio_tes_resultp;/* OUT: list head of
result buffer */ result buffer */
} lstio_test_args_t; };
typedef enum { typedef enum {
LST_BRW_READ = 1, LST_BRW_READ = 1,
......
...@@ -707,7 +707,7 @@ lst_stat_query_ioctl(struct lstio_stat_args *args) ...@@ -707,7 +707,7 @@ lst_stat_query_ioctl(struct lstio_stat_args *args)
return rc; return rc;
} }
static int lst_test_add_ioctl(lstio_test_args_t *args) static int lst_test_add_ioctl(struct lstio_test_args *args)
{ {
char *batch_name; char *batch_name;
char *src_name = NULL; char *src_name = NULL;
...@@ -903,7 +903,7 @@ lstcon_ioctl_entry(unsigned int cmd, struct libcfs_ioctl_hdr *hdr) ...@@ -903,7 +903,7 @@ lstcon_ioctl_entry(unsigned int cmd, struct libcfs_ioctl_hdr *hdr)
rc = lst_batch_info_ioctl((struct lstio_batch_info_args *)buf); rc = lst_batch_info_ioctl((struct lstio_batch_info_args *)buf);
break; break;
case LSTIO_TEST_ADD: case LSTIO_TEST_ADD:
rc = lst_test_add_ioctl((lstio_test_args_t *)buf); rc = lst_test_add_ioctl((struct lstio_test_args *)buf);
break; break;
case LSTIO_STAT_QUERY: case LSTIO_STAT_QUERY:
rc = lst_stat_query_ioctl((struct lstio_stat_args *)buf); rc = lst_stat_query_ioctl((struct lstio_stat_args *)buf);
......
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