From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Brauner Date: Thu, 14 May 2020 10:32:59 +0000 Subject: Re: [PATCH] ia64: enable HAVE_COPY_THREAD_TLS, switch to kernel_clone_args Message-Id: <20200514103259.tdfjc5ds4igpmoxj@wittgenstein> List-Id: References: <3908561D78D1C84285E8C5FCA982C28F7F6266E0@ORSMSX115.amr.corp.intel.com> <79e58d9b-5a39-390c-2f0c-0d87b63442b4@physik.fu-berlin.de> <20200514074606.vkc35syhdep23rzh@wittgenstein> <6b298416-1e64-eee7-0bb4-3b1f7f67adc6@physik.fu-berlin.de> <20200514100459.pt7dxq2faghdds2c@wittgenstein> <2e22b0d2-b9ce-420d-48a0-0d9134108a5c@physik.fu-berlin.de> <20200514101540.25hvle74w63t66fs@wittgenstein> <20200514101914.fu7xhgaxtb5fy2ky@wittgenstein> <4aad9ad5-b0e9-12b0-0ad2-ac23fceae87b@physik.fu-berlin.de> In-Reply-To: <4aad9ad5-b0e9-12b0-0ad2-ac23fceae87b@physik.fu-berlin.de> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: John Paul Adrian Glaubitz Cc: "Luck, Tony" , "Yu, Fenghua" , "linux-ia64@vger.kernel.org" , Al Viro , Arnd Bergmann , Thomas Gleixner , Ingo Molnar , Sebastian Andrzej Siewior , "Peter Zijlstra (Intel)" , Qais Yousef , "linux-kernel@vger.kernel.org" On Thu, May 14, 2020 at 12:21:13PM +0200, John Paul Adrian Glaubitz wrote: > On 5/14/20 12:19 PM, Christian Brauner wrote: > > Scratch that. It's even worse. On ia64 it is _invalid_ to pass a NULL > > stack. That's at least what the glibc assembly assumes: > > > > cmp.eq p6,p0=0,in0 > > cmp.eq p7,p0=0,in1 > > mov r8=EINVAL > > mov out0=in3 /* Flags are first syscall argument. */ > > mov out1=in1 /* Stack address. */ > > (p6) br.cond.spnt.many __syscall_error /* no NULL function pointers */ > > (p7) br.cond.spnt.many __syscall_error /* no NULL stack pointers */ > > ;; > > mov out2=in2 /* Stack size. */ > > > > so newer systemd just works by accident on ia64 if at all correctly > > afaict. > > Hmm, interesting. I really wasn't aware of that. Thanks for the heads-up. > > I'll ask Michael whether he can come up for a solution for that problem. > > Maybe that's also why systemd crashes. Do you have a very minimalistic ia64 userspace preferably without systemd where you could simply test. That should give us an idea whether things work: #define _GNU_SOURCE #include #include #include #include #include #include #include #include #define STACK_SIZE (8 * 1024 * 1024) /* standard stack size for threads in glibc */ int main(int argc, char *argv[]) { char *stack; pid_t pid; stack = mmap(NULL, STACK_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_STACK, -1, 0); if (stack = MAP_FAILED) exit(EXIT_FAILURE); /* * Note that legacy clone() has different argument ordering on * different architectures so this won't work everywhere. */ pid = syscall(189 /* __NR_clone2 */, SIGCHLD, stack, STACK_SIZE, NULL, NULL); if (pid < 0) exit(EXIT_FAILURE); if (pid = 0) exit(EXIT_SUCCESS); if (wait(NULL) != pid) exit(EXIT_FAILURE); exit(EXIT_SUCCESS); }