2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2008, Peter Dinda <pdinda@northwestern.edu>
11 * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org>
12 * All rights reserved.
14 * Author: Peter Dinda <pdinda@northwestern.edu>
16 * This is free software. You are permitted to use,
17 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
23 #include <palacios/svm_wbinvd.h>
24 #include <palacios/vmm_intr.h>
27 // Writeback and invalidate caches
28 // should raise #GP if CPL is not zero
31 int v3_handle_svm_wbinvd(struct guest_info * info) {
34 PrintDebug("WBINVD: cpl != 0, injecting GPF\n");
35 v3_raise_exception(info, GPF_EXCEPTION);