2019-07-25 15:58:31 +08:00
|
|
|
/* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause */
|
2019-07-05 22:03:23 +08:00
|
|
|
/*
|
|
|
|
* Definitions for virtio-pmem devices.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* Author(s): Pankaj Gupta <pagupta@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _UAPI_LINUX_VIRTIO_PMEM_H
|
|
|
|
#define _UAPI_LINUX_VIRTIO_PMEM_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/virtio_ids.h>
|
|
|
|
#include <linux/virtio_config.h>
|
|
|
|
|
|
|
|
struct virtio_pmem_config {
|
|
|
|
__u64 start;
|
|
|
|
__u64 size;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define VIRTIO_PMEM_REQ_TYPE_FLUSH 0
|
|
|
|
|
|
|
|
struct virtio_pmem_resp {
|
|
|
|
/* Host return status corresponding to flush request */
|
2019-07-12 13:16:10 +08:00
|
|
|
__le32 ret;
|
2019-07-05 22:03:23 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct virtio_pmem_req {
|
|
|
|
/* command type */
|
2019-07-12 13:16:10 +08:00
|
|
|
__le32 type;
|
2019-07-05 22:03:23 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|