From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47930) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1jzO-000342-RH for qemu-devel@nongnu.org; Tue, 23 Jul 2013 17:19:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V1jzL-0006BW-Ch for qemu-devel@nongnu.org; Tue, 23 Jul 2013 17:19:22 -0400 Date: Tue, 23 Jul 2013 16:19:04 -0500 From: Scott Wood References: <1374506897-41089-1-git-send-email-agraf@suse.de> <1374608328.15592.36@snotra> <7EA7921E-AF13-4485-94E5-B4068CEDAA9E@suse.de> In-Reply-To: <7EA7921E-AF13-4485-94E5-B4068CEDAA9E@suse.de> (from agraf@suse.de on Tue Jul 23 16:15:59 2013) Message-ID: <1374614344.15592.38@snotra> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; delsp=Yes; format=Flowed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] PPC: E500: Generate device tree on reset List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: "qemu-ppc@nongnu.org list:PowerPC" , qemu-devel Developers On 07/23/2013 04:15:59 PM, Alexander Graf wrote: >=20 > On 23.07.2013, at 21:38, Scott Wood wrote: >=20 > > On 07/22/2013 10:28:17 AM, Alexander Graf wrote: > >> Today we generate the device tree once on machine initialization =20 > and then > >> store the finalized blob in memory to reload it on reset. > >> This is bad for 2 reasons. First we potentially waste a bunch of =20 > RAM for no > >> good reason, as we have all information required to regenerate the =20 > device > >> tree available anyways. > >> The second reason is even more important. On machine init when we =20 > generate > >> the device tree for the first time, we don't have all of the =20 > devices fully > >> initialized yet. But the device tree needs to potentially walk =20 > devices to > >> put information about them into the device tree. > > > > If you can't produce the entire device tree at init time, how can =20 > you calculate its size with a dry run? > > > > Device trees are generally pretty small; couldn't we just set a =20 > maximum size and allocate that much space? >=20 > It's what we do, unless we load it from the disk. In that case we =20 > take the fdt size from disk. So why do we need the dry run stuff? -SCott=