From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=5.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 28274 invoked from network); 9 Jun 2021 07:05:21 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 9 Jun 2021 07:05:21 -0000 Received: (qmail 3072 invoked by uid 550); 9 Jun 2021 07:05:18 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 2027 invoked from network); 9 Jun 2021 07:05:18 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1623222305; bh=YjlZs62n4NLx8ZvDrI4faj8p6oRkzoC06E4FIwBeluk=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=jQ7jlHI4Z4OOGUjQHk0M+ncKFNcrwetGK02g8GsbHZeHd0YqKsUggnYTXXh2Er8JG LUd4xlStgu4AFKw995I1c/oZ37v8YO3Hk5j8tMZAq/uRd3Ne2FnrrM/KJvqtEW4lle cLIGJLrYvqmnOSTMmvqb5RCYEk3+HtQTwV5qwPs3S3fILM+sJwQ+A5uBK2X43TmvPE TiFDo+ZjP0YEJoRcM6RlOGXd7RkTSeRAeJpV7LkBL8uVbilrwidH1+rzD0XCJRO1Yv yNyLj20ymyIEHj9rDkvBP35JFR6mEe+v+3b5kP7LbKNYVi1dSqR3diS/6un9FNYTrn kXP055+ZImH1A== X-Gm-Message-State: AOAM531lnEtqEj89WOLjoKhsZ38zmU97ByrPbXhnbQAwjakWeotPSSJk SpqrHUolsaIhUrtPscokYi46jHywLfCiMCDIBDc= X-Google-Smtp-Source: ABdhPJxpFJqrmuHP3X9VWx/zAGmg6OO6W4nV65YWEb1P7lHVC8XgXFebBjNJXqrla61qFDIC+88p4sP/st0wjdv8QT4= X-Received: by 2002:adf:fe4f:: with SMTP id m15mr27626812wrs.361.1623222304235; Wed, 09 Jun 2021 00:05:04 -0700 (PDT) MIME-Version: 1.0 References: <20210510185837.GD2031@voyager> <20210524220004.GD2546@brightrain.aerifal.cx> In-Reply-To: From: Arnd Bergmann Date: Wed, 9 Jun 2021 09:03:12 +0200 X-Gmail-Original-Message-ID: Message-ID: To: musl@lists.openwall.com Cc: Rich Felker , Markus Wichmann , Florian Weimer Content-Type: text/plain; charset="UTF-8" Subject: Re: [musl] Backwards kernel compatibility On Wed, Jun 2, 2021 at 1:52 PM Arnd Bergmann wrote: > On Wed, Jun 2, 2021 at 9:38 AM Martin Vajnar wrote: > > > > The main source of overhead comes from the kernel 4.4 which on arm64 > > produces stack traces when not implemented syscall is invoked: > > > > https://github.com/torvalds/linux/blob/afd2ff9b7e1b367172f18ba7f693dfb62bdcb2dc/arch/arm64/kernel/traps.c#L369 > > That is clearly a bug that was fixed in mainline and backported to linux-4.14 > but not 4.4 or 4.9. I've sent a manual backport for inclusion in those kernels > now. The backport is now merged into the stable kernel trees and should be part of 4.4.272/4.9.272. Arnd