[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20170911191438.3221e95e@alans-desktop>
Date: Mon, 11 Sep 2017 19:14:38 +0100
From: Alan Cox <gnomes@...rguk.ukuu.org.uk>
To: Rob Landley <rob@...dley.net>
Cc: Geert Uytterhoeven <geert@...ux-m68k.org>,
Linux Embedded <linux-embedded@...r.kernel.org>,
Oleg Nesterov <oleg@...hat.com>, dalias@...c.org,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: execve(NULL, argv, envp) for nommu?
> It's not the performance cost, it's rewriting all the pointers.
Which you don't need to do
> Without address translation, copying the existing mappings to a new
> range requires finding and adjusting every pointer to the old data,
No it doesn't. See Minix.
When you fork() rather than vfork you stick a copy of any non-relocatable
elements (typically DATA copy + BSS + stack with a sane CPU and compiler)
into a buffer and you swap them over with the real copy when you task
switch to the one in the wrong place. If you start the child first you
usually only take one copy.
I've always been amused that Linux NOMMU hasn't managed to grow a feature
that people successfully implemented on 68000 long long ago, and I
believe some other processors back to v6/v7 days.
Alan
Powered by blists - more mailing lists