1 /* 2 * This file is auto-generated. Modifications will be lost. 3 * 4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ 5 * for more information. 6 */ 7 #ifndef _UAPI_LINUX_VIRTIO_PMEM_H 8 #define _UAPI_LINUX_VIRTIO_PMEM_H 9 #include <linux/types.h> 10 #include <linux/virtio_ids.h> 11 #include <linux/virtio_config.h> 12 #define VIRTIO_PMEM_F_SHMEM_REGION 0 13 #define VIRTIO_PMEM_SHMEM_REGION_ID 0 14 struct virtio_pmem_config { 15 __le64 start; 16 __le64 size; 17 }; 18 #define VIRTIO_PMEM_REQ_TYPE_FLUSH 0 19 struct virtio_pmem_resp { 20 __le32 ret; 21 }; 22 struct virtio_pmem_req { 23 __le32 type; 24 }; 25 #endif 26