From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 87E24C433F5 for ; Tue, 19 Oct 2021 05:06:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 678EA6128B for ; Tue, 19 Oct 2021 05:06:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232568AbhJSFIv (ORCPT ); Tue, 19 Oct 2021 01:08:51 -0400 Received: from wtarreau.pck.nerim.net ([62.212.114.60]:44382 "EHLO 1wt.eu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229649AbhJSFIv (ORCPT ); Tue, 19 Oct 2021 01:08:51 -0400 Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 19J567TL024208; Tue, 19 Oct 2021 07:06:07 +0200 Date: Tue, 19 Oct 2021 07:06:07 +0200 From: Willy Tarreau To: Mark Brown Cc: Catalin Marinas , Will Deacon , Shuah Khan , Shuah Khan , Alan Hayward , Luis Machado , Salil Akerkar , Basant Kumar Dwivedi , Szabolcs Nagy , linux-arm-kernel@lists.infradead.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH v2 14/42] tools/nolibc: Implement gettid() Message-ID: <20211019050607.GA23992@1wt.eu> References: <20211018190858.2119209-1-broonie@kernel.org> <20211018190858.2119209-15-broonie@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211018190858.2119209-15-broonie@kernel.org> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org On Mon, Oct 18, 2021 at 08:08:30PM +0100, Mark Brown wrote: > Allow test programs to determine their thread ID. Now queue, thank you Mark! Willy From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2AED1C433F5 for ; Tue, 19 Oct 2021 05:07:52 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id E7D446128B for ; Tue, 19 Oct 2021 05:07:51 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org E7D446128B Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=1wt.eu Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=5/VXOtXi1Ki0eN9JA46mxGDcgpTHA5a2rkKCvShpzHw=; b=s1udciOI1tq9r9 h23FOGL2MbWJlpu6TzrpEoFXC3kUZTPYnBPH7/ekFS3/GUMCHve7zusp88wt+xK643xUECT4bV2R8 /lc+6qfafLjMB11Ht0KdJgU1/O8DjvnolpVG59p36HcRmOah+LenN22Xbp2CW9EL92qYhccWLqtR+ ZDRtBi+lAvtLruhk1J0WeGXeRUKhIO0pUzQw/CxjxjEigr62M8qZmbihxDNhUljLn2DGmVw3GXDH5 JMFTDypqcX2MHgk8DB5lfUcovfGs43upePMx6cJsmp0Ji9N0+ClOaspRclLgi43RVdC7/dsctvNnT BXEIWR4hnDOzvFjkZKxQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mchKi-0009Pk-NY; Tue, 19 Oct 2021 05:06:40 +0000 Received: from wtarreau.pck.nerim.net ([62.212.114.60] helo=1wt.eu) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mchKe-0009LP-26 for linux-arm-kernel@lists.infradead.org; Tue, 19 Oct 2021 05:06:37 +0000 Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 19J567TL024208; Tue, 19 Oct 2021 07:06:07 +0200 Date: Tue, 19 Oct 2021 07:06:07 +0200 From: Willy Tarreau To: Mark Brown Cc: Catalin Marinas , Will Deacon , Shuah Khan , Shuah Khan , Alan Hayward , Luis Machado , Salil Akerkar , Basant Kumar Dwivedi , Szabolcs Nagy , linux-arm-kernel@lists.infradead.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH v2 14/42] tools/nolibc: Implement gettid() Message-ID: <20211019050607.GA23992@1wt.eu> References: <20211018190858.2119209-1-broonie@kernel.org> <20211018190858.2119209-15-broonie@kernel.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20211018190858.2119209-15-broonie@kernel.org> User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211018_220636_476717_DF2B5308 X-CRM114-Status: UNSURE ( 6.09 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, Oct 18, 2021 at 08:08:30PM +0100, Mark Brown wrote: > Allow test programs to determine their thread ID. Now queue, thank you Mark! Willy _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel