Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp1044653imu; Fri, 16 Nov 2018 14:51:17 -0800 (PST) X-Google-Smtp-Source: AJdET5eW1iCofzgvlN86nDkAxDbKtQknhU/cwQKUsRLjH6Th11r9niP9S1tWK7vVeBMOMoCwC2H2 X-Received: by 2002:a62:8c11:: with SMTP id m17mr5617056pfd.224.1542408676929; Fri, 16 Nov 2018 14:51:16 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1542408676; cv=none; d=google.com; s=arc-20160816; b=g5XRYpIN2GN3zTMVOoTacdMMZMiYMNlPzoiKnIjtjhJHOCzSJ4V1Lew1VbzjX8lo4u NaKcIZ/pHyUb4kdyD1osvS70q1asyj6GSBPzr/aoCZOM7JM0tLG6kojTtyz6ZcyjO36F l6lIX0Se3LOaqKmiadoTCyHyEDP80Hu/xNbZ8PEi4E21Z5+/zOzmjj7V2XWsSDWtD+8s Z5ihI2NMj3yx2i3fam+YT3JpZAOXIFoof5FrlD05pSuZlSVinBYVefcUfP9uq9rll4mA 7gbCq7RpJTxVdN0SZYIrm77AmZltQCEcgje41lEeDgLOmaHGu38PKtiV0lqXdPlZs9Ej Bl8Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:message-id :in-reply-to:subject:cc:to:from:date; bh=2w4+Jqj9kMyuMaXRkq2yM6/zYFzQRUGXzxAhIrYIj/Q=; b=LHxwd9k2FGB0+5ps3ogsXADvfD74T4gsT7U2xwi/+2AJbb8bx90dDTFmCOHOAJI9In cIOKtUaDnbyYrVSz6ztoG+v56llO51Dq4QEM7jyqgtb+wiYLA0XgkTjAJnzTHz2wqSFa uldrBtiwqA0268UuqYrApCkjub5XHZadkKsVfKkV1EDTCFIM9nECQrsJCTcMbWyWsdfY /Xj0wc6QoBtOVd1oXCGT+aYzQpmwUHBbO7LBWYh18USsl3h3xTaLNi+DpsKLgGZWjJUo ClIhsrJyal+6NzHCya9yWzsmJYlTGFiEiLzjXG1uxi+BAwaPN/hPCOJg9TLV7wbc6V5x WOoA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id h3-v6si34721497pfd.228.2018.11.16.14.51.02; Fri, 16 Nov 2018 14:51:16 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729721AbeKQJEF (ORCPT + 99 others); Sat, 17 Nov 2018 04:04:05 -0500 Received: from kvm5.telegraphics.com.au ([98.124.60.144]:40520 "EHLO kvm5.telegraphics.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725995AbeKQJEF (ORCPT ); Sat, 17 Nov 2018 04:04:05 -0500 Received: from localhost (localhost.localdomain [127.0.0.1]) by kvm5.telegraphics.com.au (Postfix) with ESMTP id E399328CDA; Fri, 16 Nov 2018 17:49:45 -0500 (EST) Date: Sat, 17 Nov 2018 09:49:48 +1100 (AEDT) From: Finn Thain To: Russell King - ARM Linux cc: Christoph Hellwig , Geert Uytterhoeven , Arnd Bergmann , Stephen N Chivers , Thomas Gleixner , Daniel Lezcano , John Stultz , linux-m68k@lists.linux-m68k.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [RFC PATCH 01/13] arm: Fix mutual exclusion in arch_gettimeoffset In-Reply-To: <20181116174705.GY30658@n2100.armlinux.org.uk> Message-ID: References: <20181112083422.GA19695@infradead.org> <20181113092012.GI30658@n2100.armlinux.org.uk> <20181113234336.GP30658@n2100.armlinux.org.uk> <20181114141632.GT30658@n2100.armlinux.org.uk> <20181116174705.GY30658@n2100.armlinux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 16 Nov 2018, Russell King - ARM Linux wrote: > > The EBSA110 is probably in a similar boat - I don't remember whether it > had 16MB or 32MB as the maximal amount of memory, but memory was getting > tight with some kernels even running a minimalist userspace. > > So, it's probably time to say goodbyte to the kernel support for these > platforms. > Your call. Note that removing code from mainline won't help users obtain older, smaller, -stable kernel releases, free from the bug we were discussing. (The bug appeared in Linux v2.6.32.) BTW, if you did want to boot Linux on a 16 MB system, you do have some options. https://lwn.net/Articles/741494/ https://lwn.net/Articles/608945/ https://tiny.wiki.kernel.org/ Contributing to this kind of effort probably has value for IoT deployments. I suspect it also cuts a small amount of bloat from a large number of other Linux systems. --