├── .gitignore ├── Makefile ├── README.md ├── test ├── Makefile └── test.c └── uncached_ram.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemonsqueeze/uncached-ram-lkm/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemonsqueeze/uncached-ram-lkm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemonsqueeze/uncached-ram-lkm/HEAD/README.md -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemonsqueeze/uncached-ram-lkm/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemonsqueeze/uncached-ram-lkm/HEAD/test/test.c -------------------------------------------------------------------------------- /uncached_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lemonsqueeze/uncached-ram-lkm/HEAD/uncached_ram.c --------------------------------------------------------------------------------