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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3BC55CCA479 for ; Wed, 13 Jul 2022 23:56:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231928AbiGMX4Z (ORCPT ); Wed, 13 Jul 2022 19:56:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33868 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231419AbiGMX4X (ORCPT ); Wed, 13 Jul 2022 19:56:23 -0400 Received: from mail-io1-xd30.google.com (mail-io1-xd30.google.com [IPv6:2607:f8b0:4864:20::d30]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E6BC753D3B for ; Wed, 13 Jul 2022 16:56:22 -0700 (PDT) Received: by mail-io1-xd30.google.com with SMTP id v185so67113ioe.11 for ; Wed, 13 Jul 2022 16:56:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=google; h=subject:to:cc:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-language:content-transfer-encoding; bh=rarUSimJ/mF7K9bs7wxGLHGhk7WrwOrmEcUJgpe0So4=; b=Xjafh2rCMqjqvg4Flqn/y5Es1fMG2tQTw6i/+6MTtWaHLJtknbNcB6olg2AjMN2ogy mhMd67IzAnbVqX4ZjklB8FvehIWINsuuLSgU1xXnnglK3Ah6YYTKPZoFIb2UqzUZnRw5 LCXv41FJtN3tjoCeTTCi6ttIM5jaT7OuqmIe0= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=rarUSimJ/mF7K9bs7wxGLHGhk7WrwOrmEcUJgpe0So4=; b=JYIMS4m36UtAjG2wpQRJ0V8e1XdrNsM6t3dJG5VilqfloiPxN810w5AV29qH88WZeA pTy1ibxEhTorGb+k5cb9NXtsshHO2nxdaX3SM+GkM2/s8tSXh80XD4F5HDxrVLApqOjJ 605Ko/koUZMQ7zVKrVAZA5nmXD7FPymZgVBl3earLnafzPKpwnGbQOJavJ0Zh0FRx/DW SCueS4Thk/xM3j/xU7gMrbkmVlWwzhkCf5WzJznPngZtNagJtD85NR59cASlPxyJucYZ Kwjv/eaSRK41pnvSAvbG7abjfLYJucAHpbLDqrMpnlw0xqwB3ZL/TiHYKcSTsUMIsTeW OjGw== X-Gm-Message-State: AJIora9K3a5nW0K8VF/b+vJ3rrO1hVubFc5B0GwmELRnJalCOIE3Xhum xh1SjP3ulrrX+HuQNPZN3nkWiA== X-Google-Smtp-Source: AGRyM1vG6hbHN5JsMKBeeBd/CGfxpiHFcReOPVuojm+Qcl6rCFmIIiHk7QZc55gzMegVelUiiW4yxw== X-Received: by 2002:a05:6638:d0f:b0:33c:cab4:e9c2 with SMTP id q15-20020a0566380d0f00b0033ccab4e9c2mr3452706jaj.226.1657756582162; Wed, 13 Jul 2022 16:56:22 -0700 (PDT) Received: from [192.168.1.128] ([38.15.45.1]) by smtp.gmail.com with ESMTPSA id x6-20020a056638034600b0033ea1d9858bsm79328jap.36.2022.07.13.16.56.21 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 13 Jul 2022 16:56:21 -0700 (PDT) Subject: Re: [PATCH 0/9] selftests: timers: fixes and improvements To: John Stultz , Wolfram Sang Cc: linux-renesas-soc@vger.kernel.org, LKML , "open list:KERNEL SELFTEST FRAMEWORK" , Shuah Khan , Shuah Khan References: <20220713204623.5443-1-wsa+renesas@sang-engineering.com> From: Shuah Khan Message-ID: Date: Wed, 13 Jul 2022 17:56:21 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kselftest@vger.kernel.org On 7/13/22 3:02 PM, John Stultz wrote: > On Wed, Jul 13, 2022 at 1:46 PM Wolfram Sang > wrote: >> >> The timer selftests are quite useful for me when enabling timers on new >> SoCs, e.g. like now with the CMT timer on a Renesas R-Car S4-8. During >> development, I needed these fixes and additions to make full use of >> the tests. I think they make all sense upstream, so here they are. >> >> Patches are based on v5.19-rc1. Looking forward to comments. >> > > Hey! > Thanks so much I really appreciate the effort to make and send out > these cleanups. From the initial skim it all looks great (though, some > are slightly embarrassing :), and I think some of the extra config > args will be quite nice for others to use as well. > > Acked-by: John Stultz > > Thanks so much for submitting these. > -john > Thank you both. I can queue these for 5.20-rc1 Wolfram, are you going to send v2 to address John's comment on 8/9? thanks, -- Shuah