From patchwork Tue Feb 9 17:54:06 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Jones X-Patchwork-Id: 581011 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 6FE25140BC4 for ; Wed, 10 Feb 2016 04:54:22 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755044AbcBIRyQ (ORCPT ); Tue, 9 Feb 2016 12:54:16 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54977 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751802AbcBIRyN (ORCPT ); Tue, 9 Feb 2016 12:54:13 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id E34DA8E224; Tue, 9 Feb 2016 17:54:12 +0000 (UTC) Received: from hawk.localdomain.com (dhcp-1-158.brq.redhat.com [10.34.1.158]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u19HsA40023891; Tue, 9 Feb 2016 12:54:10 -0500 From: Andrew Jones To: kvm@vger.kernel.org, kvm-ppc@vger.kernel.org Cc: thuth@redhat.com, dgibson@redhat.com, david@gibson.dropbear.id.au, agraf@suse.de, lvivier@redhat.com, pbonzini@redhat.com Subject: [kvm-unit-tests PATCH] align toc to 256 bytes Date: Tue, 9 Feb 2016 18:54:06 +0100 Message-Id: <1455040446-18556-1-git-send-email-drjones@redhat.com> In-Reply-To: <1454957594-30601-6-git-send-email-drjones@redhat.com> References: <1454957594-30601-6-git-send-email-drjones@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 Sender: kvm-ppc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm-ppc@vger.kernel.org --- powerpc/flat.lds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerpc/flat.lds b/powerpc/flat.lds index 8a573d27346de..53221e8b4211c 100644 --- a/powerpc/flat.lds +++ b/powerpc/flat.lds @@ -24,7 +24,7 @@ SECTIONS .rodata : { *(.rodata) *(.rodata.*) } . = ALIGN(16); .bss : { *(.bss) } - . = ALIGN(16); + . = ALIGN(256); /* * tocptr is tocbase + 32K, allowing toc offsets to be +-32K */