Esempio n. 1
0
void free_domain_tlb(struct vcpu *v)
{
    if (v->arch.vtlb.hash)
        thash_free(&(v->arch.vtlb));

    free_domain_vhpt(v);
}
Esempio n. 2
0
File: dns.c Progetto: iitis/flowcalc
/**************************** utility functions */
void free_client(void *ptr)
{
	struct client *client = ptr;
	thash_free(client->servers);
}
Esempio n. 3
0
static void free_domain_vhpt(struct vcpu *v)
{
    if (v->arch.vhpt.hash)
        thash_free(&(v->arch.vhpt));
}
Esempio n. 4
0
static void cleanup()
{
	lfc_deinit(fd->lfc);
	thash_free(fd->out_files);
	mmatic_destroy(fd->mm);
}