From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1BD56358372 for ; Mon, 6 Jul 2026 05:23:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783315426; cv=none; b=dK8wEQXTXj8AiJ6GI3XF5LpIyL04QygWa4Zs3I7DYcJ+W2kDvVHqPwQIviTxNagmC9vaHsIUtWG8euYhAwjCW5h53u9WLbz5Qx4BVZ0bh4ky+NMwoNDPufDgpb825lgUC0SV8DnMwtMTp+7Y38v120ghPXS4BMSHWszdnXI5NdI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783315426; c=relaxed/simple; bh=moMQQbw+5DVOa0dAHwsf2s7KelDzlUOUtEOVI6PkFHQ=; h=Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References: Mime-Version:Content-Type; b=I7vwq5MlAA1yH0wzzCBUKtF9XMKVUctIqX9cBKfL+g1VbM4uzQN2ZF0veDl31MrknyVdMiEVMxvMp3jAU2kxlROFlQ+9k8rFLXBf3tBEla+QlLZjHeb8A+UaPHGgpWeOdMhJQ0xfHV/3bll2fk1huiSPn+0VXvg6mSKyVH1fkfQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=PCyLcZWj; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="PCyLcZWj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 564851F000E9; Mon, 6 Jul 2026 05:23:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux-foundation.org; s=korg; t=1783315424; bh=PSojfwaQMPYZzi0c0qcA2UvoigiUv2kyygMMHcgyNn0=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=PCyLcZWjVBueEkLUn9wEESmcgi4ep4pGNUTFj1YqTQXrbZkJpttzni87p1BVAX3vk wP1d3BhHZI/QdFTAY4pvJP8+hJ3ApLC/I4Hb+jOS0GXv9KTyr22/18x+Efaf0+rlXZ w7lu5srpgYYPcaHOlYYgVEesWd7+3vd2owdaDdp0= Date: Sun, 5 Jul 2026 22:23:43 -0700 From: Andrew Morton To: Matthew Wilcox Cc: Hajime Tazaki , liam@infradead.org, ljs@kernel.org, vbabka@kernel.org, jannh@google.com, pfalcato@suse.de, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Greg Ungerer Subject: Re: [PATCH] mm: nommu: point to the write iterator upon split_vma Message-Id: <20260705222343.5d5c78cbb54839c5efcaabf5@linux-foundation.org> In-Reply-To: References: <20260702012546.665383-1-thehajime@gmail.com> <20260705152708.582fd8d87561f600da23c0a7@linux-foundation.org> X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On Mon, 6 Jul 2026 04:58:28 +0100 Matthew Wilcox wrote: > On Sun, Jul 05, 2026 at 03:27:08PM -0700, Andrew Morton wrote: > > Thanks. Unfortunately we aren't very diligent about the nommu code > > (are we?). Perhaps appropriately - clearly this code doesn't get used a > > lot. > > Should we delete support for NOMMU? As you say, it doesn't get much > testing, or presumably usage. I have this quote from #m68k a couple of > years ago... Greg is busily developing kernel code. > : I looked at nommu very briefly when I had my 68000 board on the bench > : but didn’t get anywhere. Also didn’t try particularly hard. I think > : you are better off with fuzix or OS9 if you want something unixy. > > (i suspect Zephyr would also be good, but it doesn't support m68k, just > arc, arm, arm64, mips, openrisc, renesas rx, riscv, sparc, x86 and xtensa) Greg, how mush use is NOMMU Linux seeing nowadays? Thanks.