From 26b6c9487afc3a61ddbfb5e0f5392ff4587fff45 Mon Sep 17 00:00:00 2001 From: grehan Date: Fri, 4 Oct 2013 23:29:07 +0000 Subject: Remove obsolete cmd-line options and code associated with these. The mux-vcpus option may return at some point, given it's utility in finding bhyve (and FreeBSD) bugs. Approved by: re@ (blanket) Discussed with: neel@ --- usr.sbin/bhyve/pit_8254.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/bhyve/pit_8254.c') diff --git a/usr.sbin/bhyve/pit_8254.c b/usr.sbin/bhyve/pit_8254.c index 44d0cca..3987da3 100644 --- a/usr.sbin/bhyve/pit_8254.c +++ b/usr.sbin/bhyve/pit_8254.c @@ -153,10 +153,10 @@ pit_update_counter(struct counter *c, int latch) * of the program. * * If the counter's initial value is not programmed we - * assume a value that would be set to generate 'guest_hz' + * assume a value that would be set to generate 100 * interrupts per second. */ - c->initial = TIMER_DIV(PIT_8254_FREQ, guest_hz); + c->initial = TIMER_DIV(PIT_8254_FREQ, 100); gettimeofday(&c->tv, NULL); } -- cgit v1.1