From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1gLCtk-000097-8k for mharc-grub-devel@gnu.org; Fri, 09 Nov 2018 14:56:56 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56823) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gLCti-0008Td-DV for grub-devel@gnu.org; Fri, 09 Nov 2018 14:56:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gLCtd-0000Ya-91 for grub-devel@gnu.org; Fri, 09 Nov 2018 14:56:54 -0500 Received: from userp2130.oracle.com ([156.151.31.86]:50056) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gLCtc-0000IZ-QW for grub-devel@gnu.org; Fri, 09 Nov 2018 14:56:49 -0500 Received: from pps.filterd (userp2130.oracle.com [127.0.0.1]) by userp2130.oracle.com (8.16.0.22/8.16.0.22) with SMTP id wA9JsArF066631; Fri, 9 Nov 2018 19:56:31 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.com; h=date : from : to : cc : subject : message-id : references : mime-version : content-type : in-reply-to; s=corp-2018-07-02; bh=80hBdWZWbXJzyzr/9QhX9Q03A0C80Vfa0kLRe1c4qGY=; b=PF5k73RwTefpjiSiDisN+NNNdEWDZCCRDAHK8uUXcKTwO/bH7VgxP6EJfU9LeLUld+7d 1lo6U6BTHvE8dyFTF/TDw6bfG9Od6XHlGkACOJNK5AjhWyKwzdEaHq7Sy17drQt264fW AR4YsyxmEqxZZ4bnCyxArRxKOjoz6XJ5B4AjQJS2fvcXUcpxEGFCkTSowxvs9ZXjdcK7 ZhllJtjcO0uwDJLSJycFO9SmQLw1he8wuSYtQSDoOqxWxExeKyg9idW+MKRjzKUKCho9 PDZ2uoB4Dah4Pnv/PKf7GTY9t7Uovw3ffRr3dcgp15WYYNWpxiEq00MoAnraFwKs7Drp 0w== Received: from aserv0022.oracle.com (aserv0022.oracle.com [141.146.126.234]) by userp2130.oracle.com with ESMTP id 2nh33ugydd-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 09 Nov 2018 19:56:31 +0000 Received: from userv0122.oracle.com (userv0122.oracle.com [156.151.31.75]) by aserv0022.oracle.com (8.14.4/8.14.4) with ESMTP id wA9JuTsm026238 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 9 Nov 2018 19:56:30 GMT Received: from abhmp0002.oracle.com (abhmp0002.oracle.com [141.146.116.8]) by userv0122.oracle.com (8.14.4/8.14.4) with ESMTP id wA9JuTQV013067; Fri, 9 Nov 2018 19:56:29 GMT Received: from olila.i.net-space.pl (/10.175.209.204) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Fri, 09 Nov 2018 11:56:28 -0800 Date: Fri, 9 Nov 2018 20:56:24 +0100 From: Daniel Kiper To: Juergen Gross Cc: grub-devel@gnu.org, xen-devel@lists.xen.org, phcoder@gmail.com, hans@knorrie.org Subject: Re: [PATCH v4 14/19] xen: init memory regions for PVH Message-ID: <20181109195624.GH4363@olila.i.net-space.pl> References: <20181102123738.16395-1-jgross@suse.com> <20181102123738.16395-15-jgross@suse.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181102123738.16395-15-jgross@suse.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Proofpoint-Virus-Version: vendor=nai engine=5900 definitions=9072 signatures=668683 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=0 malwarescore=0 phishscore=0 bulkscore=0 spamscore=0 mlxscore=0 mlxlogscore=653 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1807170000 definitions=main-1811090178 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] X-Received-From: 156.151.31.86 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Nov 2018 19:56:55 -0000 On Fri, Nov 02, 2018 at 01:37:33PM +0100, Juergen Gross wrote: > Add all usable memory regions to grub memory management and add the > needed mmap iterate code, which will be used by grub core (e.g. > grub-core/lib/relocator.c or grub-core/mmap/mmap.c). > > As we are running in 32-bit mode don't add memory above 4GB. > > Signed-off-by: Juergen Gross Reviewed-by: Daniel Kiper Daniel