浏览代码

Missing check-in

tags/v0.9.3
Michael Brown 18 年前
父节点
当前提交
b3e4418ea8
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19
    0
      src/include/gpxe/ramdisk.h

+ 19
- 0
src/include/gpxe/ramdisk.h 查看文件

@@ -0,0 +1,19 @@
1
+#ifndef _GPXE_RAMDISK_H
2
+#define _GPXE_RAMDISK_H
3
+
4
+/**
5
+ * @file
6
+ *
7
+ * RAM disks
8
+ *
9
+ */
10
+
11
+#include <gpxe/uaccess.h>
12
+#include <gpxe/blockdev.h>
13
+
14
+struct ramdisk {
15
+	struct block_device blockdev;
16
+	userptr_t data;
17
+};
18
+
19
+#endif /* _GPXE_RAMDISK_H */

正在加载...
取消
保存