From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D2B71C49ED7 for ; Mon, 16 Sep 2019 21:14:39 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 9CC6C2067B for ; Mon, 16 Sep 2019 21:14:39 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=linuxsystems.it header.i=@linuxsystems.it header.b="OGFgF6yp" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9CC6C2067B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linuxsystems.it Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:40038 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i9yKU-00075J-Ou for qemu-devel@archiver.kernel.org; Mon, 16 Sep 2019 17:14:38 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:59030) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i9yJF-0006ck-Rc for qemu-devel@nongnu.org; Mon, 16 Sep 2019 17:13:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i9yJE-0000TR-OR for qemu-devel@nongnu.org; Mon, 16 Sep 2019 17:13:21 -0400 Received: from mail.linuxsystems.it ([79.7.78.67]:48139) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i9yJE-0008Hq-Bf for qemu-devel@nongnu.org; Mon, 16 Sep 2019 17:13:20 -0400 Received: by mail.linuxsystems.it (Postfix, from userid 33) id 983EE20BBB5; Mon, 16 Sep 2019 23:06:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxsystems.it; s=linuxsystems.it; t=1568667982; bh=NeVXrl+B8ZDmWPvv6LpfU/CXoUWrHcygcjhMmMMdDBc=; h=To:Subject:Date:From:From; b=OGFgF6ypA10cG+gEvQqvuqEPB68rgpbL/W2ntsbgU5gBBKQ4eZqeG/Tla28nKknYi QUTKyb75Nc16kx/iV95j7Joim2vySUI6JHJp2Jc/0lSkJvV2zl2WFUM4/0jyFuQ1py kZ7gD1U6p1KlK/X96VY7o7cjZzt+NE0BF2fSI9+g= To: qemu-devel@nongnu.org X-PHP-Originating-Script: 0:rcube.php MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Mon, 16 Sep 2019 23:06:22 +0200 From: =?UTF-8?Q?Niccol=C3=B2_Belli?= Message-ID: <83f649c6482bf363c38e7f3778d866f4@linuxsystems.it> X-Sender: darkbasic@linuxsystems.it User-Agent: Roundcube Webmail/1.1.5 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 79.7.78.67 Subject: [Qemu-devel] ELF load command alignment not page-aligned X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" Hi, I'm trying to use qemu-user-static to chroot into a foreign amd64 environment from my ppc64le host. The host has a 64k page size, while x86_64 uses 4k. I get those errors while loading shared libraries: "ELF load command alignment not page-aligned" Is there any way to fix this? I cannot simply switch to 4k page size because my btrfs filesystem won't mount anymore (it requires the sectorsize to be equal to the page size). Bests, Niccolo'