From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 04E6745B5F; Thu, 17 Oct 2024 16:22:53 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0BE3140662; Thu, 17 Oct 2024 16:22:39 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.19]) by mails.dpdk.org (Postfix) with ESMTP id 58930402ED for ; Thu, 17 Oct 2024 16:22:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1729174956; x=1760710956; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=r/ogGrRhxeUKZ19xh7XirWLvHpx+EOkMIxA4WFLJnXE=; b=VKWUCyHcPw86Bh1JHJSFSg7Z02s9TzTYGmhb8vaBCVzE2Nu5THpcB/7x 7C/M3/hh7kpGuIquM2/xd7V/duXybjL+VXcvPoeGKIVEmXV71VcQMbE7d juBGE2jYchmMf63Bumw2y+/vgqP0fOfpNDaOWHgDt5TDLj/ljKMMOOEAy ChJFyvdAZb5ejc9iuxjIujnntiik+cFH/31HBSE70uzb+p33DXWHoK5ku E/lkkKqkR61L81mVIXY0UlENPrA9sJK5fdThMh7heRh0cZtuNNMfH6vDn x6bAZJSY3w3pqmS90YvepCDyPvtQLi3m5zAqbI0mnQ5+UCiHHYhFHDFIx A==; X-CSE-ConnectionGUID: 40MlRFr6QaevlALIG1aZWg== X-CSE-MsgGUID: HDDJRq5KRNS23nrkvwbO0w== X-IronPort-AV: E=McAfee;i="6700,10204,11228"; a="28131725" X-IronPort-AV: E=Sophos;i="6.11,211,1725346800"; d="scan'208";a="28131725" Received: from fmviesa002.fm.intel.com ([10.60.135.142]) by fmvoesa113.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Oct 2024 07:22:35 -0700 X-CSE-ConnectionGUID: +tN7AGIISr2TNGPeOReXQw== X-CSE-MsgGUID: UtCdSJb5Rdq9FuMbFZoT9A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.11,211,1725346800"; d="scan'208";a="101867842" Received: from unknown (HELO silpixa00401385.ir.intel.com) ([10.237.214.25]) by fmviesa002.fm.intel.com with ESMTP; 17 Oct 2024 07:22:34 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , Rosen Xu Subject: [PATCH 3/6] bus/ifpga: remove packed attribute Date: Thu, 17 Oct 2024 15:22:10 +0100 Message-ID: <20241017142214.1669370-4-bruce.richardson@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20241017142214.1669370-1-bruce.richardson@intel.com> References: <20241017142214.1669370-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org The struct rte_afu_device does not need to be packed, so remove the packed attribute from it. Signed-off-by: Bruce Richardson --- drivers/bus/ifpga/bus_ifpga_driver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bus/ifpga/bus_ifpga_driver.h b/drivers/bus/ifpga/bus_ifpga_driver.h index 5bbe36d6e0..557e8fd08d 100644 --- a/drivers/bus/ifpga/bus_ifpga_driver.h +++ b/drivers/bus/ifpga/bus_ifpga_driver.h @@ -77,7 +77,7 @@ struct rte_afu_device { struct rte_intr_handle *intr_handle; /**< Interrupt handle */ struct rte_afu_driver *driver; /**< Associated driver */ char path[IFPGA_BUS_BITSTREAM_PATH_MAX_LEN]; -} __rte_packed; +}; /** * @internal -- 2.43.0