Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753859Ab3I0VJT (ORCPT ); Fri, 27 Sep 2013 17:09:19 -0400 Received: from mail-ea0-f169.google.com ([209.85.215.169]:47546 "EHLO mail-ea0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753307Ab3I0VJQ (ORCPT ); Fri, 27 Sep 2013 17:09:16 -0400 Message-ID: <5245F3F9.5040004@gmail.com> Date: Fri, 27 Sep 2013 23:09:13 +0200 From: Vojtech Bocek User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.12) Gecko/20130116 Icedove/10.0.12 MIME-Version: 1.0 To: Russell King - ARM Linux CC: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: About atags_proc buffer size References: <5245E9C9.9030509@gmail.com> <20130927204743.GK12758@n2100.arm.linux.org.uk> In-Reply-To: <20130927204743.GK12758@n2100.arm.linux.org.uk> X-Enigmail-Version: 1.4.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2567 Lines: 51 It only needs to survive until init_atags_procfs is called, because it is copied to another buffer for procfs entry. Can I be sure it survives until that? My guess is that it is likely to survive, but not certain. I suppose it is possible to somehow protect that bit of ram until it is read by init_atags_procfs, but I wonder if you even want to do that in mainline - if majority of devices doesn't use such big tag lists, then it is probably that device's vendor problem. I've met this problem on two devices so far though, both of them Android phones, one is the HTC One (that is MSM APQ8064 SoC) and I unfortunately can't remember the first one - I discarded it as usual Android kernel's mess. On 27.9.2013 22:47, Russell King - ARM Linux wrote: > On Fri, Sep 27, 2013 at 10:25:45PM +0200, Vojtech Bocek wrote: >> I want to ask something about atags_proc.c implementation. Currently, >> it uses a buffer to temporarily store atags. The buffer size is set to >> 1.5kb for some reason, but as far as I know, atag list's size is not >> limited in any way. I've got a device (HTC One) which uses about 12kb >> of tags, that means it panics during boot if CONFIG_ATAGS_PROC is >> enabled, because the buffer contains only part of the tag list without >> an end tag. > > The tags are supposed to be a short-lived structure which gets used to > pass barest minimum of details to the kernel, and the data stored in > them almost certainly gets overwritten before the kernels memory > allocators are up and running. > > So, we need to statically allocate some space to save these things - > it can't be done dynamically. > > The problem is this: for the vast majority of platforms, they pass no > more than 1.5kB (lower case b is *bits* not *bytes*) to the kernel in > their tagged list. Having a static allocation of 12k would be wasteful > for the majority of users. > >> I don't know much about the way ARM boot process works, but I tried to >> store just the pointer to atag list, and it works fine (quick patch >> attached). Do atags get erased later in boot process on some platforms, >> is that the reason why buffer had to be used? > > This may appear to work, but check it after you've been running for > some time and have exercised the memory systems. You'll probably find > that your tags have vanished! -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/