cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

uvmm.h (333B)


      1#ifndef __NVKM_UVMM_H__
      2#define __NVKM_UVMM_H__
      3#define nvkm_uvmm(p) container_of((p), struct nvkm_uvmm, object)
      4#include <core/object.h>
      5#include "vmm.h"
      6
      7struct nvkm_uvmm {
      8	struct nvkm_object object;
      9	struct nvkm_vmm *vmm;
     10};
     11
     12int nvkm_uvmm_new(const struct nvkm_oclass *, void *argv, u32 argc,
     13		  struct nvkm_object **);
     14#endif