52 lines
1.7 KiB
Diff
52 lines
1.7 KiB
Diff
From 28786edf9fd1e0d188190cb7029ddde2bdcd8ad8 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <28786edf9fd1e0d188190cb7029ddde2bdcd8ad8.1647872200.git.aclaudi@redhat.com>
|
|
In-Reply-To: <b30268eda844bdebbb8e5e4f5735e3b1bb666368.1647872200.git.aclaudi@redhat.com>
|
|
References: <b30268eda844bdebbb8e5e4f5735e3b1bb666368.1647872200.git.aclaudi@redhat.com>
|
|
From: Andrea Claudi <aclaudi@redhat.com>
|
|
Date: Mon, 21 Mar 2022 15:03:16 +0100
|
|
Subject: [PATCH] uapi: update vdpa.h
|
|
|
|
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2056827
|
|
Upstream Status: iproute2.git commit 885e281e
|
|
|
|
commit 885e281eadc238e30f7c3a42ad366ea123c03a83
|
|
Author: Stephen Hemminger <stephen@networkplumber.org>
|
|
Date: Fri Mar 11 19:16:25 2022 -0800
|
|
|
|
uapi: update vdpa.h
|
|
|
|
Update header from upstream.
|
|
|
|
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
|
|
---
|
|
vdpa/include/uapi/linux/vdpa.h | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/vdpa/include/uapi/linux/vdpa.h b/vdpa/include/uapi/linux/vdpa.h
|
|
index b7eab069..cc575a82 100644
|
|
--- a/vdpa/include/uapi/linux/vdpa.h
|
|
+++ b/vdpa/include/uapi/linux/vdpa.h
|
|
@@ -23,6 +23,9 @@ enum vdpa_command {
|
|
enum vdpa_attr {
|
|
VDPA_ATTR_UNSPEC,
|
|
|
|
+ /* Pad attribute for 64b alignment */
|
|
+ VDPA_ATTR_PAD = VDPA_ATTR_UNSPEC,
|
|
+
|
|
/* bus name (optional) + dev name together make the parent device handle */
|
|
VDPA_ATTR_MGMTDEV_BUS_NAME, /* string */
|
|
VDPA_ATTR_MGMTDEV_DEV_NAME, /* string */
|
|
@@ -40,6 +43,9 @@ enum vdpa_attr {
|
|
VDPA_ATTR_DEV_NET_CFG_MAX_VQP, /* u16 */
|
|
VDPA_ATTR_DEV_NET_CFG_MTU, /* u16 */
|
|
|
|
+ VDPA_ATTR_DEV_NEGOTIATED_FEATURES, /* u64 */
|
|
+ VDPA_ATTR_DEV_MGMTDEV_MAX_VQS, /* u32 */
|
|
+ VDPA_ATTR_DEV_SUPPORTED_FEATURES, /* u64 */
|
|
/* new attributes must be added above here */
|
|
VDPA_ATTR_MAX,
|
|
};
|
|
--
|
|
2.35.1
|
|
|