diff options
author | George Melikov <[email protected]> | 2017-01-21 00:17:55 +0300 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-01-22 13:25:40 -0800 |
commit | 4ea3f86426f76e59244ec6f66504da688d90193c (patch) | |
tree | ff907fb2ce89e00b8b89a0a653c9b4e7005f6935 /cmd/zpool | |
parent | ec441a9c534815b379468a2d349011cbd5bcd884 (diff) |
codebase style improvements for OpenZFS 6459 port
Diffstat (limited to 'cmd/zpool')
-rw-r--r-- | cmd/zpool/zpool_main.c | 12 | ||||
-rw-r--r-- | cmd/zpool/zpool_util.c | 6 |
2 files changed, 12 insertions, 6 deletions
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index c0500ec00..da6744b76 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -2953,7 +2953,8 @@ struct stat_array { }; static uint64_t -stat_histo_max(struct stat_array *nva, unsigned int len) { +stat_histo_max(struct stat_array *nva, unsigned int len) +{ uint64_t max = 0; int i; for (i = 0; i < len; i++) @@ -2969,7 +2970,8 @@ stat_histo_max(struct stat_array *nva, unsigned int len) { */ static int nvpair64_to_stat_array(nvlist_t *nvl, const char *name, - struct stat_array *nva) { + struct stat_array *nva) +{ nvpair_t *tmp; int ret; @@ -3871,7 +3873,8 @@ is_pool(char *name) /* Are all our argv[] strings pool names? If so return 1, 0 otherwise. */ static int -are_all_pools(int argc, char **argv) { +are_all_pools(int argc, char **argv) +{ if ((argc == 0) || !*argv) return (0); @@ -3952,7 +3955,8 @@ get_interval_count_filter_guids(int *argc, char **argv, float *interval, * seconds. */ static void -fsleep(float sec) { +fsleep(float sec) +{ struct timespec req; req.tv_sec = floor(sec); req.tv_nsec = (sec - (float)req.tv_sec) * NANOSEC; diff --git a/cmd/zpool/zpool_util.c b/cmd/zpool/zpool_util.c index df3f9bf83..43abfa23b 100644 --- a/cmd/zpool/zpool_util.c +++ b/cmd/zpool/zpool_util.c @@ -88,7 +88,8 @@ num_logs(nvlist_t *nv) /* Find the max element in an array of uint64_t values */ uint64_t -array64_max(uint64_t array[], unsigned int len) { +array64_max(uint64_t array[], unsigned int len) +{ uint64_t max = 0; int i; for (i = 0; i < len; i++) @@ -102,7 +103,8 @@ array64_max(uint64_t array[], unsigned int len) { * floating point numbers. */ int -isnumber(char *str) { +isnumber(char *str) +{ for (; *str; str++) if (!(isdigit(*str) || (*str == '.'))) return (0); |