staging: lustre: lnet: change lstio_test_args_t to proper structure
Change lstio_test_args_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>
This commit is contained in:
parent
e7f8efc4b4
commit
538a92698a
@ -442,7 +442,7 @@ enum lst_test_type {
|
||||
/* create a test in a batch */
|
||||
#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_bat_nmlen; /* IN: batch name len */
|
||||
char __user *lstio_tes_bat_name; /* IN: batch name */
|
||||
@ -472,7 +472,7 @@ typedef struct {
|
||||
value */
|
||||
struct list_head __user *lstio_tes_resultp;/* OUT: list head of
|
||||
result buffer */
|
||||
} lstio_test_args_t;
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
LST_BRW_READ = 1,
|
||||
|
@ -707,7 +707,7 @@ lst_stat_query_ioctl(struct lstio_stat_args *args)
|
||||
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 *src_name = NULL;
|
||||
@ -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);
|
||||
break;
|
||||
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;
|
||||
case LSTIO_STAT_QUERY:
|
||||
rc = lst_stat_query_ioctl((struct lstio_stat_args *)buf);
|
||||
|
Loading…
x
Reference in New Issue
Block a user