qvm_dcache_op

Data cache operations

Synopsis:

#include <qvm/utils.h>
enum qvm_dcache_op {
    QDO_NONE = 0x00,
    QDO_INVAL = 0x01,
    QDO_FLUSH = 0x02,
    QDO_QUERY_PRIV = 0x04
};

Data:

QDO_NONE

No-op

QDO_INVAL

Invalidate the data cache

QDO_FLUSH

Flush the data cache

QDO_QUERY_PRIV

Query what privilege level is required for an operation

Description:

These flags define data cache operations. Multiple flags can be OR'ed together.