After r256062, the static function fbsdrun_get_next_cpu() in

usr.sbin/bhyve/bhyverun.c is no longer used, so remove it to silence a
gcc warning.

Approved by:	re (glebius)
This commit is contained in:
dim 2013-10-08 18:09:00 +00:00
parent ecbbed9b9e
commit a0450dc1cc

View File

@ -216,17 +216,6 @@ fbsdrun_addcpu(struct vmctx *ctx, int vcpu, uint64_t rip)
assert(error == 0);
}
static int
fbsdrun_get_next_cpu(int curcpu)
{
/*
* Get the next available CPU. Assumes they arrive
* in ascending order with no gaps.
*/
return ((curcpu + 1) % foundcpus);
}
static int
vmexit_catch_reset(void)
{