s390/dasd: Fix whitespace

Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
Reviewed-by: Stefan Haberland <sth@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
This commit is contained in:
Jan Höppner
2019-06-07 16:54:22 +02:00
committed by Vasily Gorbik
parent 5e2b17e712
commit 2df4774cb4

View File

@@ -27,34 +27,34 @@
* including foramt and featueres. * including foramt and featueres.
*/ */
typedef struct dasd_information2_t { typedef struct dasd_information2_t {
unsigned int devno; /* S/390 devno */ unsigned int devno; /* S/390 devno */
unsigned int real_devno; /* for aliases */ unsigned int real_devno; /* for aliases */
unsigned int schid; /* S/390 subchannel identifier */ unsigned int schid; /* S/390 subchannel identifier */
unsigned int cu_type : 16; /* from SenseID */ unsigned int cu_type : 16; /* from SenseID */
unsigned int cu_model : 8; /* from SenseID */ unsigned int cu_model : 8; /* from SenseID */
unsigned int dev_type : 16; /* from SenseID */ unsigned int dev_type : 16; /* from SenseID */
unsigned int dev_model : 8; /* from SenseID */ unsigned int dev_model : 8; /* from SenseID */
unsigned int open_count; unsigned int open_count;
unsigned int req_queue_len; unsigned int req_queue_len;
unsigned int chanq_len; /* length of chanq */ unsigned int chanq_len; /* length of chanq */
char type[4]; /* from discipline.name, 'none' for unknown */ char type[4]; /* from discipline.name, 'none' for unknown */
unsigned int status; /* current device level */ unsigned int status; /* current device level */
unsigned int label_block; /* where to find the VOLSER */ unsigned int label_block; /* where to find the VOLSER */
unsigned int FBA_layout; /* fixed block size (like AIXVOL) */ unsigned int FBA_layout; /* fixed block size (like AIXVOL) */
unsigned int characteristics_size; unsigned int characteristics_size;
unsigned int confdata_size; unsigned int confdata_size;
char characteristics[64]; /* from read_device_characteristics */ char characteristics[64]; /* from read_device_characteristics */
char configuration_data[256]; /* from read_configuration_data */ char configuration_data[256]; /* from read_configuration_data */
unsigned int format; /* format info like formatted/cdl/ldl/... */ unsigned int format; /* format info like formatted/cdl/ldl/... */
unsigned int features; /* dasd features like 'ro',... */ unsigned int features; /* dasd features like 'ro',... */
unsigned int reserved0; /* reserved for further use ,... */ unsigned int reserved0; /* reserved for further use ,... */
unsigned int reserved1; /* reserved for further use ,... */ unsigned int reserved1; /* reserved for further use ,... */
unsigned int reserved2; /* reserved for further use ,... */ unsigned int reserved2; /* reserved for further use ,... */
unsigned int reserved3; /* reserved for further use ,... */ unsigned int reserved3; /* reserved for further use ,... */
unsigned int reserved4; /* reserved for further use ,... */ unsigned int reserved4; /* reserved for further use ,... */
unsigned int reserved5; /* reserved for further use ,... */ unsigned int reserved5; /* reserved for further use ,... */
unsigned int reserved6; /* reserved for further use ,... */ unsigned int reserved6; /* reserved for further use ,... */
unsigned int reserved7; /* reserved for further use ,... */ unsigned int reserved7; /* reserved for further use ,... */
} dasd_information2_t; } dasd_information2_t;
/* /*
@@ -97,24 +97,24 @@ typedef struct dasd_information2_t {
* represents any data about the data, which is visible to userspace * represents any data about the data, which is visible to userspace
*/ */
typedef struct dasd_information_t { typedef struct dasd_information_t {
unsigned int devno; /* S/390 devno */ unsigned int devno; /* S/390 devno */
unsigned int real_devno; /* for aliases */ unsigned int real_devno; /* for aliases */
unsigned int schid; /* S/390 subchannel identifier */ unsigned int schid; /* S/390 subchannel identifier */
unsigned int cu_type : 16; /* from SenseID */ unsigned int cu_type : 16; /* from SenseID */
unsigned int cu_model : 8; /* from SenseID */ unsigned int cu_model : 8; /* from SenseID */
unsigned int dev_type : 16; /* from SenseID */ unsigned int dev_type : 16; /* from SenseID */
unsigned int dev_model : 8; /* from SenseID */ unsigned int dev_model : 8; /* from SenseID */
unsigned int open_count; unsigned int open_count;
unsigned int req_queue_len; unsigned int req_queue_len;
unsigned int chanq_len; /* length of chanq */ unsigned int chanq_len; /* length of chanq */
char type[4]; /* from discipline.name, 'none' for unknown */ char type[4]; /* from discipline.name, 'none' for unknown */
unsigned int status; /* current device level */ unsigned int status; /* current device level */
unsigned int label_block; /* where to find the VOLSER */ unsigned int label_block; /* where to find the VOLSER */
unsigned int FBA_layout; /* fixed block size (like AIXVOL) */ unsigned int FBA_layout; /* fixed block size (like AIXVOL) */
unsigned int characteristics_size; unsigned int characteristics_size;
unsigned int confdata_size; unsigned int confdata_size;
char characteristics[64]; /* from read_device_characteristics */ char characteristics[64]; /* from read_device_characteristics */
char configuration_data[256]; /* from read_configuration_data */ char configuration_data[256]; /* from read_configuration_data */
} dasd_information_t; } dasd_information_t;
/* /*
@@ -159,16 +159,16 @@ typedef struct dasd_rssd_perf_stats_t {
* holds the profinling information * holds the profinling information
*/ */
typedef struct dasd_profile_info_t { typedef struct dasd_profile_info_t {
unsigned int dasd_io_reqs; /* number of requests processed at all */ unsigned int dasd_io_reqs; /* number of requests processed at all */
unsigned int dasd_io_sects; /* number of sectors processed at all */ unsigned int dasd_io_sects; /* number of sectors processed at all */
unsigned int dasd_io_secs[32]; /* histogram of request's sizes */ unsigned int dasd_io_secs[32]; /* histogram of request's sizes */
unsigned int dasd_io_times[32]; /* histogram of requests's times */ unsigned int dasd_io_times[32]; /* histogram of requests's times */
unsigned int dasd_io_timps[32]; /* histogram of requests's times per sector */ unsigned int dasd_io_timps[32]; /* histogram of requests's times per sector */
unsigned int dasd_io_time1[32]; /* histogram of time from build to start */ unsigned int dasd_io_time1[32]; /* histogram of time from build to start */
unsigned int dasd_io_time2[32]; /* histogram of time from start to irq */ unsigned int dasd_io_time2[32]; /* histogram of time from start to irq */
unsigned int dasd_io_time2ps[32]; /* histogram of time from start to irq */ unsigned int dasd_io_time2ps[32]; /* histogram of time from start to irq */
unsigned int dasd_io_time3[32]; /* histogram of time from irq to end */ unsigned int dasd_io_time3[32]; /* histogram of time from irq to end */
unsigned int dasd_io_nr_req[32]; /* histogram of # of requests in chanq */ unsigned int dasd_io_nr_req[32]; /* histogram of # of requests in chanq */
} dasd_profile_info_t; } dasd_profile_info_t;
/* /*
@@ -189,10 +189,10 @@ typedef struct format_data_t {
* 3/11: also write home address * 3/11: also write home address
* 4/12: invalidate track * 4/12: invalidate track
*/ */
#define DASD_FMT_INT_FMT_R0 1 /* write record zero */ #define DASD_FMT_INT_FMT_R0 1 /* write record zero */
#define DASD_FMT_INT_FMT_HA 2 /* write home address, also set FMT_R0 ! */ #define DASD_FMT_INT_FMT_HA 2 /* write home address, also set FMT_R0 ! */
#define DASD_FMT_INT_INVAL 4 /* invalidate tracks */ #define DASD_FMT_INT_INVAL 4 /* invalidate tracks */
#define DASD_FMT_INT_COMPAT 8 /* use OS/390 compatible disk layout */ #define DASD_FMT_INT_COMPAT 8 /* use OS/390 compatible disk layout */
/* /*
* struct format_check_t * struct format_check_t
@@ -281,7 +281,7 @@ struct dasd_snid_ioctl_data {
* Here ist how the ioctl-nr should be used: * Here ist how the ioctl-nr should be used:
* 0 - 31 DASD driver itself * 0 - 31 DASD driver itself
* 32 - 239 still open * 32 - 239 still open
* 240 - 255 reserved for EMC * 240 - 255 reserved for EMC
*******************************************************************************/ *******************************************************************************/
/* Disable the volume (for Linux) */ /* Disable the volume (for Linux) */