From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1gRjhE-0003Vl-C0 for mharc-grub-devel@gnu.org; Tue, 27 Nov 2018 15:11:00 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49182) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gRjhC-0003Ve-BS for grub-devel@gnu.org; Tue, 27 Nov 2018 15:10:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gRjh8-00074m-Bz for grub-devel@gnu.org; Tue, 27 Nov 2018 15:10:58 -0500 Received: from userp2130.oracle.com ([156.151.31.86]:47146) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gRjh8-00074Q-3X for grub-devel@gnu.org; Tue, 27 Nov 2018 15:10:54 -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 wARK9j2L101342; Tue, 27 Nov 2018 20:10:49 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=ssyc3pxgefDXIpC4bG+THjGA+vdNrT9hbi+jtapTuTU=; b=wYToI6KqFrQL06JQWmPN5AviXZUfEYNcBLhcxe+glqzyBFKuhwCIojuunQCqJfqflcLe eceuPKwtjxrNIx28pFUYABJgR40ckl0kmQuRtL0Iw+T2MFmiagTV3Fcqky+R8cYRVHdk k0XCEzoMu1BcJc4uJ+OhiYEBvJo4WiHnAY4Sgs80MPk8UKdhrphnQr52H6qMOghWO8Kq 63+HBiXaQwnQSGCazKMsm5Atw3SO+JmJAcuCsfF9brg1qe/T/qoOQcBFiMl7RVtxt67n 8+Cp4Lta2qIfb1eCHdIf3yFfoXEKU1W281c0aUXvA2SWIypTcMJPN9aRGwDNatT4Gry/ AA== Received: from userv0022.oracle.com (userv0022.oracle.com [156.151.31.74]) by userp2130.oracle.com with ESMTP id 2nxx2u6bmk-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Tue, 27 Nov 2018 20:10:49 +0000 Received: from userv0122.oracle.com (userv0122.oracle.com [156.151.31.75]) by userv0022.oracle.com (8.14.4/8.14.4) with ESMTP id wARKAm9J023705 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Tue, 27 Nov 2018 20:10:48 GMT Received: from abhmp0016.oracle.com (abhmp0016.oracle.com [141.146.116.22]) by userv0122.oracle.com (8.14.4/8.14.4) with ESMTP id wARKAlHs016974; Tue, 27 Nov 2018 20:10:47 GMT Received: from tomti.i.net-space.pl (/10.175.171.161) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 27 Nov 2018 12:10:47 -0800 Date: Tue, 27 Nov 2018 21:10:43 +0100 From: Daniel Kiper To: Juergen Gross Cc: grub-devel@gnu.org, xen-devel@lists.xen.org, phcoder@gmail.com, roger.pau@citrix.com, hans@knorrie.org Subject: Re: [PATCH v5 09/20] xen: add basic hooks for PVH in current code Message-ID: <20181127201043.jxfb3gvssxfo3hyj@tomti.i.net-space.pl> References: <20181121142855.13537-1-jgross@suse.com> <20181121142855.13537-10-jgross@suse.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181121142855.13537-10-jgross@suse.com> User-Agent: NeoMutt/20170113 (1.7.2) X-Proofpoint-Virus-Version: vendor=nai engine=5900 definitions=9090 signatures=668685 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=0 malwarescore=0 phishscore=0 bulkscore=0 spamscore=0 mlxscore=0 mlxlogscore=864 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1810050000 definitions=main-1811270172 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [generic] [fuzzy] 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: Tue, 27 Nov 2018 20:10:59 -0000 On Wed, Nov 21, 2018 at 03:28:44PM +0100, Juergen Gross wrote: > Add the hooks to current code needed for Xen PVH. They will be filled > with code later when the related functionality is being added. > > loader/i386/linux.c needs to include machine/kernel.h now as it needs > to get GRUB_KERNEL_USE_RSDP_ADDR from there. > > Signed-off-by: Juergen Gross Reviewed-by: Daniel Kiper Daniel