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 03C4845B60; Thu, 17 Oct 2024 18:27:04 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0930440677; Thu, 17 Oct 2024 18:26:52 +0200 (CEST) Received: from mail-pg1-f177.google.com (mail-pg1-f177.google.com [209.85.215.177]) by mails.dpdk.org (Postfix) with ESMTP id 97F4140673 for ; Thu, 17 Oct 2024 18:26:50 +0200 (CEST) Received: by mail-pg1-f177.google.com with SMTP id 41be03b00d2f7-7ea12e0dc7aso756260a12.3 for ; Thu, 17 Oct 2024 09:26:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20230601.gappssmtp.com; s=20230601; t=1729182410; x=1729787210; darn=dpdk.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:from:to:cc:subject:date :message-id:reply-to; bh=Gb072Wo/Ra3ES5Q5IqTbCTbzXYE1+z+YE0HRMkyvwqM=; b=sV36yZdJcltEu46F3dRbhBOu27k+1DdOQTxbIo2++8ipNy6R7tCXCLnEVCsDumezxs G5giuBoOJlwkPfC2ge9z+IahKytP+M15WXwQ8Z38cHvWVaR0X/THPoGpHcxoKSrFaNUk TNAkyXfMt1CTXfKu3bAJ8ZNwf3jvm07oXE2QlEw4OBc26DDEZoGvztlJHg//N3PA1hJy QeXEvDNcjh3AQw8slTB4K3k/n+57XYpx/EMfuz60ssgxMgMHdbfQ00aSzDDI3PhFAfGa YkXmvf0Xh8XR/T5vcCPwXhTA5AHCjrMZ8FaqP1tA6BCuZoMRosEBNvDhBO32QxdLu2Mx hfhQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1729182410; x=1729787210; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=Gb072Wo/Ra3ES5Q5IqTbCTbzXYE1+z+YE0HRMkyvwqM=; b=MYBcBePpgLx+9bX/IV19+KdBlElXfWKgMmJA3/PaJgNjEwKzpXmO/9Zb6K2eMilbOj 5Xt1kkHs9bIGreyfeXFUM7iqLvL1A3qdvO/s2jZXPebGqooFh87WTUYo60jTv9k30nc1 iMDX24jpqP9ECD1MKnluQYN1jlZVr66ypOvkvayflwUvqsQl//11FqxSieZB5EbCAeEx V4eb9N9FQCs2ewU9MKvCrhzyBIl4NlwY20WrSYdBxkqUl+C1s8YDAi8U3C8RP4fIg55/ x57U0O7XlG44N0wremv1bEi2LPGEAn7AFcp1DkjC8BAG4lDgx7RS47JRp+ONLCJFzEs6 rE3g== X-Gm-Message-State: AOJu0YzbAgqwC7FTf4LvnBCEhNEMMNtKlv1BMDcygHLchxn6221YNXda 1JTFZ4wgGCnWbpQwdYEE9Y4xoazDWCUzzSRLGAJY453tqo2HHTgt0C8gnYZfuxo= X-Google-Smtp-Source: AGHT+IHYi8gC5VFXSHF4ijHA72HukRU7xQkzakrEXkK6KaHvTNo1NgOmJYyzvtoh2AntW44RsxGvAA== X-Received: by 2002:a17:90b:1810:b0:2e2:b281:536e with SMTP id 98e67ed59e1d1-2e3152c825bmr22782287a91.15.1729182409837; Thu, 17 Oct 2024 09:26:49 -0700 (PDT) Received: from hermes.local (204-195-96-226.wavecable.com. [204.195.96.226]) by smtp.gmail.com with ESMTPSA id 98e67ed59e1d1-2e55d796a2csm23257a91.7.2024.10.17.09.26.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 17 Oct 2024 09:26:49 -0700 (PDT) Date: Thu, 17 Oct 2024 09:25:20 -0700 From: Stephen Hemminger To: Bruce Richardson Cc: dev@dpdk.org, Rosen Xu Subject: Re: [PATCH 3/6] bus/ifpga: remove packed attribute Message-ID: <20241017092520.5796cc77@hermes.local> In-Reply-To: <20241017142214.1669370-4-bruce.richardson@intel.com> References: <20241017142214.1669370-1-bruce.richardson@intel.com> <20241017142214.1669370-4-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 On Thu, 17 Oct 2024 15:22:10 +0100 Bruce Richardson wrote: > The struct rte_afu_device does not need to be packed, so remove the > packed attribute from it. > > Signed-off-by: Bruce Richardson Acked-by: Stephen Hemminger