2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-04-12 00:01:27 +00:00
Files
xNBA/src/include/gpxe/ramdisk.h
2007-01-30 22:53:59 +00:00

20 lines
238 B
C

#ifndef _GPXE_RAMDISK_H
#define _GPXE_RAMDISK_H
/**
* @file
*
* RAM disks
*
*/
#include <gpxe/uaccess.h>
#include <gpxe/blockdev.h>
struct ramdisk {
struct block_device blockdev;
userptr_t data;
};
#endif /* _GPXE_RAMDISK_H */