From: Sami Kerola <kerolasa@iki.fi>
To: util-linux@vger.kernel.org
Cc: kerolasa@iki.fi
Subject: [PATCH 09/15] cytune: pull signal handling and statistic priting apart
Date: Sun, 4 May 2014 16:49:50 +0100 [thread overview]
Message-ID: <1399218596-21321-10-git-send-email-kerolasa@iki.fi> (raw)
In-Reply-To: <1399218596-21321-1-git-send-email-kerolasa@iki.fi>
Combination of these two functions made the code to rely to global
variables, and cmon_index was seemingly invalid if signal was sent at a
time when query_tty_stats() was half done with a statistics printout.
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
---
sys-utils/cytune.c | 60 +++++++++++++++++++++++++-----------------------------
1 file changed, 28 insertions(+), 32 deletions(-)
diff --git a/sys-utils/cytune.c b/sys-utils/cytune.c
index 8dd566d..4f0ddc7 100644
--- a/sys-utils/cytune.c
+++ b/sys-utils/cytune.c
@@ -120,33 +120,36 @@ static inline double dtime(struct timeval *tvpnew, struct timeval *tvpold)
return diff;
}
-static void summary(int sig)
+static void signal_handler(int sig __attribute__((__unused__)))
{
struct cyclades_control *cc;
int argc, local_optind;
char **argv;
- int i;
+ int i, j = 0;
argc = mod.global_argc;
argv = *mod.global_argv;
local_optind = mod.global_optind;
- if (sig > 0) {
- for (i = local_optind; i < argc; i++) {
- cc = &cmon[mod.cmon_index];
- warnx(_("File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
- "and the maximum transfer rate in characters/second was %f"),
- argv[i], cc->threshold_value, cc->maxmax,
- cc->maxtran);
- }
- exit(EXIT_SUCCESS);
+ for (i = local_optind; i < argc; i++, j++) {
+ cc = &cmon[j];
+ warnx(_("File %s, For threshold value %lu, Maximum characters in fifo were %d,\n"
+ "and the maximum transfer rate in characters/second was %f"),
+ argv[i], cc->threshold_value, cc->maxmax, cc->maxtran);
}
- cc = &cmon[mod.cmon_index];
- if (cc->threshold_value > 0 && sig != -1) {
+ exit(EXIT_SUCCESS);
+}
+
+static void print_statistics(struct cyclades_control *mon, struct cytune_modifiers *mod, int init)
+{
+ struct cyclades_control *cc;
+
+ cc = &mon[mod->cmon_index];
+ if (0 < cc->threshold_value && !init) {
warnx(_("File %s, For threshold value %lu and timeout value %lu, Maximum characters in fifo were %d,\n"
"and the maximum transfer rate in characters/second was %f"),
- argv[mod.cmon_index + local_optind], cc->threshold_value,
- cc->timeout_value, cc->maxmax, cc->maxtran);
+ *mod->global_argv[mod->cmon_index + optind], cc->threshold_value, cc->timeout_value, cc->maxmax,
+ cc->maxtran);
}
cc->maxmax = 0;
cc->maxtran = 0.0;
@@ -177,7 +180,7 @@ static void query_tty_stats(int argc, char **argv, struct cytune_modifiers *mod)
cmon = xmalloc(sizeof(struct cyclades_control) * (argc - mod->global_optind));
sigemptyset(&sigact.sa_mask);
- sigact.sa_handler = &summary;
+ sigact.sa_handler = &signal_handler;
sigact.sa_flags = SA_RESTART;
if (sigaction(SIGINT, &sigact, NULL) ||
sigaction(SIGQUIT, &sigact, NULL) ||
@@ -193,7 +196,7 @@ static void query_tty_stats(int argc, char **argv, struct cytune_modifiers *mod)
if (cmon[mod->cmon_index].cfile == -1)
err(EXIT_FAILURE, _("cannot open %s"), argv[i]);
cyg_get_mon(cmon[mod->cmon_index].cfile, &cmon[mod->cmon_index].c, argv[i], mod);
- summary(-1);
+ print_statistics(&cmon[mod->cmon_index], mod, 1);
}
while (1) {
sleep(mod->interval);
@@ -209,28 +212,21 @@ static void query_tty_stats(int argc, char **argv, struct cytune_modifiers *mod)
cyg_get_mon(cmon[mod->cmon_index].cfile, &cywork, argv[i], mod);
xfer_rate = cywork.char_count / diff;
- if (mod->threshold_value !=
- cmon[mod->cmon_index].threshold_value
- || mod->timeout_value !=
- cmon[mod->cmon_index].timeout_value) {
- summary(-2);
+ if (mod->threshold_value != cmon[mod->cmon_index].threshold_value ||
+ mod->timeout_value != cmon[mod->cmon_index].timeout_value) {
+ print_statistics(&cmon[mod->cmon_index], mod, 0);
/* Note that the summary must come before the
* setting of threshold_value */
- cmon[mod->cmon_index].threshold_value =
- mod->threshold_value;
- cmon[mod->cmon_index].timeout_value =
- mod->timeout_value;
+ cmon[mod->cmon_index].threshold_value = mod->threshold_value;
+ cmon[mod->cmon_index].timeout_value = mod->timeout_value;
} else {
/* Don't record this first cycle after change */
- if (xfer_rate > cmon[mod->cmon_index].maxtran)
+ if (cmon[mod->cmon_index].maxtran < xfer_rate)
cmon[mod->cmon_index].maxtran = xfer_rate;
if (cmon[mod->cmon_index].maxmax < 0 ||
- cywork.char_max >
- (unsigned long)cmon[mod->cmon_index].maxmax)
- cmon[mod->cmon_index].maxmax =
- cywork.char_max;
+ (unsigned long)cmon[mod->cmon_index].maxmax < cywork.char_max)
+ cmon[mod->cmon_index].maxmax = cywork.char_max;
}
-
printf(_("%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, "
"%lu max, %lu now\n"), argv[i],
cywork.int_count, cywork.char_count,
--
1.9.2
next prev parent reply other threads:[~2014-05-04 15:50 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-04 15:49 [PATCH 00/15] cytune modernization Sami Kerola
2014-05-04 15:49 ` [PATCH 01/15] cytune: rename threshold and timeout variables Sami Kerola
2014-05-05 8:34 ` Benno Schulenberg
2014-05-04 15:49 ` [PATCH 02/15] cytune: remove unnecessary variables Sami Kerola
2014-05-05 8:29 ` Benno Schulenberg
2014-05-04 15:49 ` [PATCH 03/15] cytune: be consistent with interval data type Sami Kerola
2014-05-04 15:49 ` [PATCH 04/15] cytune: use single loop for setting and getting ioctl() calls Sami Kerola
2014-05-05 8:24 ` Benno Schulenberg
2014-05-04 15:49 ` [PATCH 05/15] cytune: kernel still does not have send_count in cyclades_monitor structure Sami Kerola
2014-05-04 15:49 ` [PATCH 06/15] cytune: prefer sigaction(), and remove unnecessary abstractions Sami Kerola
2014-05-04 15:49 ` [PATCH 07/15] cytune: add cyg_get_mon() to avoid duplicate code Sami Kerola
2014-05-04 15:49 ` [PATCH 08/15] cytune: add structure to hold run time configuration Sami Kerola
2014-05-04 15:49 ` Sami Kerola [this message]
2014-05-04 15:49 ` [PATCH 10/15] cytune: remove unnecessary type casts Sami Kerola
2014-05-04 15:49 ` [PATCH 11/15] cytune: deprecate undescriptive options Sami Kerola
2014-05-04 15:49 ` [PATCH 12/15] cytune: add filename to struct cyclades_control Sami Kerola
2014-05-04 15:49 ` [PATCH 13/15] cytune: add noreturn function attributes Sami Kerola
2014-05-04 15:49 ` [PATCH 14/15] cytune: use matching type in struct cyclades_control with kernel Sami Kerola
2014-05-04 15:49 ` [PATCH 15/15] cytune: update copyright Sami Kerola
2014-05-07 7:10 ` [PATCH 00/15] cytune modernization Karel Zak
2014-05-07 8:12 ` Sami Kerola
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1399218596-21321-10-git-send-email-kerolasa@iki.fi \
--to=kerolasa@iki.fi \
--cc=util-linux@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox