From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 505B5A0546;
	Fri, 30 Apr 2021 13:18:02 +0200 (CEST)
Received: from [217.70.189.124] (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id A790D4113B;
	Fri, 30 Apr 2021 13:17:51 +0200 (CEST)
Received: from mga17.intel.com (mga17.intel.com [192.55.52.151])
 by mails.dpdk.org (Postfix) with ESMTP id 928BE4013F
 for <dev@dpdk.org>; Fri, 30 Apr 2021 13:17:47 +0200 (CEST)
IronPort-SDR: rzLi1V9Bl3zt2YmuYX0631ZfA3Ups59xBUo1THAtKUDxiAAuAFU/rpbvgx0xj7lTeaKcuey/t9
 dUN+0z+Qfi5A==
X-IronPort-AV: E=McAfee;i="6200,9189,9969"; a="177410638"
X-IronPort-AV: E=Sophos;i="5.82,262,1613462400"; d="scan'208";a="177410638"
Received: from orsmga003.jf.intel.com ([10.7.209.27])
 by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 30 Apr 2021 04:17:47 -0700
IronPort-SDR: wCQTb8iQr+gfhjqT494gNncNPQvR3PjFRbVBWvHcVKdLb9aTLmFeoobYzu9fqjB6jWbSRTM5+X
 Y9sfRzjM3yhw==
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.82,262,1613462400"; d="scan'208";a="387325077"
Received: from silpixa00399126.ir.intel.com ([10.237.223.78])
 by orsmga003.jf.intel.com with ESMTP; 30 Apr 2021 04:17:46 -0700
From: Bruce Richardson <bruce.richardson@intel.com>
To: dev@dpdk.org
Cc: kevin.laatz@intel.com, sunil.pai.g@intel.com, jiayu.hu@intel.com,
 Bruce Richardson <bruce.richardson@intel.com>
Date: Fri, 30 Apr 2021 12:17:19 +0100
Message-Id: <20210430111727.12203-5-bruce.richardson@intel.com>
X-Mailer: git-send-email 2.30.2
In-Reply-To: <20210430111727.12203-1-bruce.richardson@intel.com>
References: <20210318182042.43658-1-bruce.richardson@intel.com>
 <20210430111727.12203-1-bruce.richardson@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Subject: [dpdk-dev] [PATCH v3 04/12] raw/ioat: add explicit padding to
 descriptor struct
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>

Add an explicit padding field to the end of the descriptor structure so
that when the batch descriptor is defined on the stack for perform-ops, the
unused space is all zeroed appropriately.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 drivers/raw/ioat/rte_ioat_rawdev_fns.h | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/raw/ioat/rte_ioat_rawdev_fns.h b/drivers/raw/ioat/rte_ioat_rawdev_fns.h
index c2c4601ca7..e96edc9053 100644
--- a/drivers/raw/ioat/rte_ioat_rawdev_fns.h
+++ b/drivers/raw/ioat/rte_ioat_rawdev_fns.h
@@ -140,7 +140,10 @@ struct rte_idxd_hw_desc {
 
 	uint32_t size;    /* length of data for op, or batch size */
 
-	/* 28 bytes of padding here */
+	uint16_t intr_handle; /* completion interrupt handle */
+
+	/* remaining 26 bytes are reserved */
+	uint16_t __reserved[13];
 } __rte_aligned(64);
 
 /**
-- 
2.30.2