From patchwork Wed Mar 9 14:27:43 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vasant Hegde X-Patchwork-Id: 595079 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 210E5140213 for ; Thu, 10 Mar 2016 01:29:05 +1100 (AEDT) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 0DAD41A0060 for ; Thu, 10 Mar 2016 01:29:05 +1100 (AEDT) X-Original-To: skiboot@lists.ozlabs.org Delivered-To: skiboot@lists.ozlabs.org Received: from e23smtp06.au.ibm.com (e23smtp06.au.ibm.com [202.81.31.148]) (using TLSv1.2 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 07BBB1A004C for ; Thu, 10 Mar 2016 01:28:54 +1100 (AEDT) Received: from localhost by e23smtp06.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 10 Mar 2016 00:28:52 +1000 Received: from d23dlp03.au.ibm.com (202.81.31.214) by e23smtp06.au.ibm.com (202.81.31.212) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Thu, 10 Mar 2016 00:28:50 +1000 X-IBM-Helo: d23dlp03.au.ibm.com X-IBM-MailFrom: hegdevasant@linux.vnet.ibm.com X-IBM-RcptTo: skiboot@lists.ozlabs.org Received: from d23relay08.au.ibm.com (d23relay08.au.ibm.com [9.185.71.33]) by d23dlp03.au.ibm.com (Postfix) with ESMTP id 6AFAD3578056 for ; Thu, 10 Mar 2016 01:28:50 +1100 (EST) Received: from d23av02.au.ibm.com (d23av02.au.ibm.com [9.190.235.138]) by d23relay08.au.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id u29ESgCx64880678 for ; Thu, 10 Mar 2016 01:28:50 +1100 Received: from d23av02.au.ibm.com (localhost [127.0.0.1]) by d23av02.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id u29ESHFm022406 for ; Thu, 10 Mar 2016 01:28:17 +1100 Received: from hegdevasant.ibm.com ([9.80.64.109]) by d23av02.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id u29ESDdj021878; Thu, 10 Mar 2016 01:28:16 +1100 From: Vasant Hegde To: skiboot@lists.ozlabs.org Date: Wed, 9 Mar 2016 19:57:43 +0530 Message-Id: <1457533668-10655-2-git-send-email-hegdevasant@linux.vnet.ibm.com> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1457533668-10655-1-git-send-email-hegdevasant@linux.vnet.ibm.com> References: <1457533668-10655-1-git-send-email-hegdevasant@linux.vnet.ibm.com> X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 16030914-0021-0000-0000-000002F0C0F1 Subject: [Skiboot] [PATCH v3 1/6] hdata: Reduce reserved space in spira structure X-BeenThere: skiboot@lists.ozlabs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Mailing list for skiboot development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Skiboot" As per spec we reserve 0x4c0 in spira structure for future use. But spira is being deprecated and we will be using new SPIRAH/SPIRAS strcture. Hence reduce reserved space in spira to 0xc0 so that we can use remaining 1K space for new SPIRAH structure. Signed-off-by: Vasant Hegde --- hdata/spira.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hdata/spira.h b/hdata/spira.h index 064aa86..1047a0d 100644 --- a/hdata/spira.h +++ b/hdata/spira.h @@ -75,7 +75,7 @@ struct spira { struct HDIF_idata_ptr ntuples_ptr; __be64 pad; struct spira_ntuples ntuples; - u8 reserved[0x4c0]; + u8 reserved[0xc0]; } __packed __align(0x100); extern struct spira spira;