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

ummu.h (356B)


      1#ifndef __NVKM_UMMU_H__
      2#define __NVKM_UMMU_H__
      3#define nvkm_ummu(p) container_of((p), struct nvkm_ummu, object)
      4#include <core/object.h>
      5#include "priv.h"
      6
      7struct nvkm_ummu {
      8	struct nvkm_object object;
      9	struct nvkm_mmu *mmu;
     10};
     11
     12int nvkm_ummu_new(struct nvkm_device *, const struct nvkm_oclass *,
     13		  void *argv, u32 argc, struct nvkm_object **);
     14#endif