diff options
author | Jason King <jason.king@joyent.com> | 2019-09-11 18:51:51 +0000 |
---|---|---|
committer | Jason King <jason.king@joyent.com> | 2020-12-08 19:13:03 +0000 |
commit | 78549a8007935271387f565f466b293d1e36f1e4 (patch) | |
tree | 7ba963a68387cb3e6f9d0d12fb85ce66a4705641 | |
parent | e83d4ec9634f0e4d3d6c8df902ca1d66347947dc (diff) | |
download | illumos-joyent-78549a8007935271387f565f466b293d1e36f1e4.tar.gz |
cstyle and gcc7 fixes
-rw-r--r-- | usr/src/cmd/intrd/intrd.c | 13 | ||||
-rw-r--r-- | usr/src/cmd/intrd/intrd.h | 12 | ||||
-rw-r--r-- | usr/src/cmd/intrd/intrd_kstat.c | 39 |
3 files changed, 42 insertions, 22 deletions
diff --git a/usr/src/cmd/intrd/intrd.c b/usr/src/cmd/intrd/intrd.c index 1c1f63fd9e..9ad576a906 100644 --- a/usr/src/cmd/intrd/intrd.c +++ b/usr/src/cmd/intrd/intrd.c @@ -39,8 +39,11 @@ #include "intrd.h" +#if 0 static int intrd_daemonize(void); static void intrd_dfatal(int, const char *, ...); +#endif + static void setup(kstat_ctl_t **restrict, config_t *restrict); static void loop(const config_t *restrict, kstat_ctl_t *restrict); static void delta_save(stats_t **, size_t, stats_t *, uint_t); @@ -84,7 +87,9 @@ main(int argc, char **argv) .cfg_statslen = 120, .cfg_tooslow = 0.05 }; +#if 0 int dfd, status; +#endif umem_nofail_callback(nomem); @@ -102,10 +107,11 @@ main(int argc, char **argv) loop(&cfg, kcp); - kstat_close(kcp); + (void) kstat_close(kcp); return (0); } +#if 0 static int intrd_daemonize(void) { @@ -187,6 +193,7 @@ intrd_daemonize(void) return (pfds[1]); } +#endif static void setup(kstat_ctl_t **restrict kcpp, config_t *restrict cfg) @@ -265,7 +272,7 @@ loop(const config_t *restrict cfg, kstat_ctl_t *restrict kcp) deltas = xcalloc(deltas_sz, sizeof (stats_t *)); - for (;; sleep(interval)) { + for (;; (void) sleep(interval)) { stats_free(stats[gen]); /* @@ -411,6 +418,7 @@ xreallocarray(void *p, size_t n, size_t elsize) return (newp); } +#if 0 static void intrd_dfatal(int dfd, const char *fmt, ...) { @@ -424,3 +432,4 @@ intrd_dfatal(int dfd, const char *fmt, ...) (void) write(dfd, &status, sizeof (status)); exit(status); } +#endif diff --git a/usr/src/cmd/intrd/intrd.h b/usr/src/cmd/intrd/intrd.h index 6be32e0d09..a220ce3782 100644 --- a/usr/src/cmd/intrd/intrd.h +++ b/usr/src/cmd/intrd/intrd.h @@ -10,7 +10,7 @@ */ /* - * Copyright 2018, Joyent, Inc. + * Copyright 2019 Joyent, Inc. */ #ifndef _INTRD_H @@ -132,8 +132,8 @@ typedef struct stats { typedef struct load { uint64_t ld_total; uint64_t ld_intrtotal; - double ld_avgnsec; - double ld_avgload; + double ld_avgnsec; + double ld_avgload; ivec_t *ld_bigint; size_t ld_ncpu; } load_t; @@ -151,9 +151,9 @@ extern uint_t cfg_idle_interval; extern uint_t max_cpu; typedef enum intrd_walk_ret { - INTRD_WALK_ERROR = -1, - INTRD_WALK_NEXT = 0, - INTRD_WALK_DONE = 1 + INTRD_WALK_ERROR = -1, + INTRD_WALK_NEXT = 0, + INTRD_WALK_DONE = 1 } intrd_walk_ret_t; typedef intrd_walk_ret_t (*cpu_itercb_t)(stats_t *, cpustat_t *, void *); diff --git a/usr/src/cmd/intrd/intrd_kstat.c b/usr/src/cmd/intrd/intrd_kstat.c index 9fc054b69c..57fd4b1b6e 100644 --- a/usr/src/cmd/intrd/intrd_kstat.c +++ b/usr/src/cmd/intrd/intrd_kstat.c @@ -10,7 +10,7 @@ */ /* - * Copyright 2018, Joyent, Inc. + * Copyright 2019 Joyent, Inc. */ #include <err.h> #include <errno.h> @@ -33,6 +33,10 @@ #include "intrd.h" +#if __GNUC__ >= 5 || defined(__clang__) +#define HAS_ADD_OVERFLOW +#endif + static umem_cache_t *ivec_cache; static umem_cache_t *cpustat_cache; static umem_cache_t *stats_cache; @@ -49,11 +53,12 @@ static intrd_walk_ret_t get_ivecs(kstat_ctl_t *restrict, kstat_t *restrict, static boolean_t build_lgrp_tree(stats_t *); static void consolidate_ivecs(stats_t *); -static void set_timerange(stats_t *, cpustat_t **, size_t, ivec_t **, size_t); static boolean_t getstat_tooslow(stats_t *, uint_t, double); static boolean_t ivec_shared_intr(const ivec_t *, const ivec_t *); +#if 0 static boolean_t ivec_shared_msi(const ivec_t *, const ivec_t *); +#endif static stats_t *stats_new(void); static stats_t *stats_dup(const stats_t*); @@ -194,11 +199,11 @@ build_lgrp_tree(stats_t *st) } } - lgrp_fini(cookie); + VERIFY0(lgrp_fini(cookie)); return (B_TRUE); fail: - lgrp_fini(cookie); + VERIFY0(lgrp_fini(cookie)); return (B_FALSE); } @@ -284,7 +289,7 @@ consolidate_ivec_cb(stats_t *stp, cpustat_t *cs, void *arg) static void consolidate_ivecs(stats_t *stp) { - cpu_iter(stp, consolidate_ivec_cb, NULL); + (void) cpu_iter(stp, consolidate_ivec_cb, NULL); } static boolean_t @@ -305,17 +310,15 @@ ivec_shared_intr(const ivec_t *i1, const ivec_t *i2) #endif } +#if 0 static boolean_t ivec_shared_msi(const ivec_t *i1, const ivec_t *i2) { -#if 0 if (strcmp(custr_cstr(i1->ivec_name), custr_cstr(i2->ivec_name)) != 0) return (B_FALSE); return (B_TRUE); -#else - return (B_FALSE); -#endif } +#endif #if 0 static int @@ -535,8 +538,8 @@ getstat_tooslow(stats_t *stp, uint_t interval, double tooslow) "spent %.1f%% of the polling interval collecting stats " "(max: %.1f%%)", portion * 100.0, tooslow * 100.0); - (void) printf("spent %ss %.1f%% of the polling interval collecting stats " - "(max: %.1f%%)\n", numbuf, portion * 100.0, tooslow * 100.0); + (void) printf("spent %ss %.1f%% of the polling interval collecting " + "stats (max: %.1f%%)\n", numbuf, portion * 100.0, tooslow * 100.0); return ((portion < tooslow) ? B_FALSE : B_TRUE); } @@ -544,8 +547,8 @@ getstat_tooslow(stats_t *stp, uint_t interval, double tooslow) static inline boolean_t uint64_add(uint64_t a, uint64_t b, uint64_t *res) { -#if 0 - if (__builtin_uaddll_overflow(a, b, res)) +#ifdef HAS_ADD_OVERFLOW + if (__builtin_uaddl_overflow(a, b, res)) return (B_TRUE); #else *res = a + b; @@ -750,7 +753,15 @@ stats_sum(stats_t * const *restrict deltas, size_t n, size_t *restrict total) stats_free(sum); return (NULL); } + + /* + * We want to return the total, but GCC currently flags this + * as an unused variable error. + */ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-value" *total++; +#pragma GCC diagnostic pop } return (sum); @@ -841,7 +852,7 @@ stats_dump(const stats_t *stp) nanonicenum(stp->sts_maxtime - stp->sts_mintime, timebuf, sizeof (timebuf)); (void) printf("Interval: %ss\n", timebuf); - cpu_iter((stats_t *)stp, stats_dump_cb, NULL); + (void) cpu_iter((stats_t *)stp, stats_dump_cb, NULL); (void) fputc('\n', stdout); } |