Remove "coverage/clear" command due its limited use
authorJustin Pettit <jpettit@nicira.com>
Sat, 11 Jul 2009 00:36:09 +0000 (17:36 -0700)
committerJustin Pettit <jpettit@nicira.com>
Sat, 11 Jul 2009 00:36:09 +0000 (17:36 -0700)
The poll loop calls coverage_clear on every pass anyway, so provide a
function to call it separately is of limited value.

lib/coverage.c

index e86aa02..6f805e9 100644 (file)
@@ -36,18 +36,10 @@ coverage_unixctl_log(struct unixctl_conn *conn, const char *args UNUSED)
     unixctl_command_reply(conn, 200, NULL);
 }
 
-static void
-coverage_unixctl_clear(struct unixctl_conn *conn, const char *args UNUSED)
-{
-    coverage_clear();
-    unixctl_command_reply(conn, 200, NULL);
-}
-
 void
 coverage_init(void)
 {
     unixctl_command_register("coverage/log", coverage_unixctl_log);
-    unixctl_command_register("coverage/clear", coverage_unixctl_clear);
 }
 
 /* Sorts coverage counters in descending order by count, within equal counts