Implement handling of 'enable' and 'disable' control commands
coming from control file descriptor. process_evlist() function
checks for events on static fd and makes required operations.
If poll event splits initiated timeout interval then the reminder
is calculated and still waited in the following poll() syscall.

Signed-off-by: Alexey Budankov <alexey.budan...@linux.intel.com>
---
 tools/perf/builtin-stat.c | 67 +++++++++++++++++++++++++++++----------
 1 file changed, 50 insertions(+), 17 deletions(-)

diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index 8cf248bb9e78..4a197b5eee23 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -439,6 +439,31 @@ static bool process_timeout(int timeout, unsigned int 
interval, int *times)
        return print_interval(interval, times);
 }
 
+static bool process_evlist(struct evlist *evlist, unsigned int interval, int 
*times)
+{
+       bool stop = false;
+       enum evlist_ctl_cmd cmd = EVLIST_CTL_CMD_UNSUPPORTED;
+
+       if (evlist__ctlfd_process(evlist, &cmd) > 0) {
+               switch (cmd) {
+               case EVLIST_CTL_CMD_ENABLE:
+                       pr_info(EVLIST_ENABLED_MSG);
+                       stop = print_interval(interval, times);
+                       break;
+               case EVLIST_CTL_CMD_DISABLE:
+                       stop = print_interval(interval, times);
+                       pr_info(EVLIST_DISABLED_MSG);
+                       break;
+               case EVLIST_CTL_CMD_ACK:
+               case EVLIST_CTL_CMD_UNSUPPORTED:
+               default:
+                       break;
+               }
+       }
+
+       return stop;
+}
+
 static void enable_counters(void)
 {
        if (stat_config.initial_delay < 0) {
@@ -514,10 +539,21 @@ static bool is_target_alive(struct target *_target,
        return false;
 }
 
-static int dispatch_events(bool forks, int timeout, int interval, int *times, 
struct timespec *ts)
+static int dispatch_events(bool forks, int timeout, int interval, int *times)
 {
        bool stop = false;
        int child = 0, status = 0;
+       int time_to_sleep, sleep_time;
+       struct timespec time_start, time_stop, time_diff;
+
+       if (interval)
+               sleep_time = interval;
+       else if (timeout)
+               sleep_time = timeout;
+       else
+               sleep_time = 1000;
+
+       time_to_sleep = sleep_time;
 
        while (1) {
                if (forks)
@@ -528,8 +564,17 @@ static int dispatch_events(bool forks, int timeout, int 
interval, int *times, st
                if (done || stop || child)
                        break;
 
-               nanosleep(ts, NULL);
-               stop = process_timeout(timeout, interval, times);
+               clock_gettime(CLOCK_MONOTONIC, &time_start);
+               if (!(evlist__poll(evsel_list, time_to_sleep) > 0)) { /* poll 
timeout or EINTR */
+                       stop = process_timeout(timeout, interval, times);
+                       time_to_sleep = sleep_time;
+               } else { /* fd revent */
+                       stop = process_evlist(evsel_list, interval, times);
+                       clock_gettime(CLOCK_MONOTONIC, &time_stop);
+                       diff_timespec(&time_diff, &time_stop, &time_start);
+                       time_to_sleep -= time_diff.tv_sec * MSEC_PER_SEC +
+                                       time_diff.tv_nsec / NSEC_PER_MSEC;
+               }
        }
 
        return status;
@@ -598,7 +643,6 @@ static int __run_perf_stat(int argc, const char **argv, int 
run_idx)
        char msg[BUFSIZ];
        unsigned long long t0, t1;
        struct evsel *counter;
-       struct timespec ts;
        size_t l;
        int status = 0;
        const bool forks = (argc > 0);
@@ -607,17 +651,6 @@ static int __run_perf_stat(int argc, const char **argv, 
int run_idx)
        int i, cpu;
        bool second_pass = false;
 
-       if (interval) {
-               ts.tv_sec  = interval / USEC_PER_MSEC;
-               ts.tv_nsec = (interval % USEC_PER_MSEC) * NSEC_PER_MSEC;
-       } else if (timeout) {
-               ts.tv_sec  = timeout / USEC_PER_MSEC;
-               ts.tv_nsec = (timeout % USEC_PER_MSEC) * NSEC_PER_MSEC;
-       } else {
-               ts.tv_sec  = 1;
-               ts.tv_nsec = 0;
-       }
-
        if (forks) {
                if (perf_evlist__prepare_workload(evsel_list, &target, argv, 
is_pipe,
                                                  workload_exec_failed_signal) 
< 0) {
@@ -775,7 +808,7 @@ static int __run_perf_stat(int argc, const char **argv, int 
run_idx)
                enable_counters();
 
                if (interval || timeout)
-                       status = dispatch_events(forks, timeout, interval, 
&times, &ts);
+                       status = dispatch_events(forks, timeout, interval, 
&times);
                if (child_pid != -1) {
                        if (timeout)
                                kill(child_pid, SIGTERM);
@@ -792,7 +825,7 @@ static int __run_perf_stat(int argc, const char **argv, int 
run_idx)
                        psignal(WTERMSIG(status), argv[0]);
        } else {
                enable_counters();
-               dispatch_events(forks, timeout, interval, &times, &ts);
+               dispatch_events(forks, timeout, interval, &times);
        }
 
        disable_counters();
-- 
2.24.1

Reply via email to