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 17DC6C433EF for ; Wed, 13 Jul 2022 23:56:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231161AbiGMX40 (ORCPT ); Wed, 13 Jul 2022 19:56:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33906 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230505AbiGMX4X (ORCPT ); Wed, 13 Jul 2022 19:56:23 -0400 Received: from mail-io1-xd2d.google.com (mail-io1-xd2d.google.com [IPv6:2607:f8b0:4864:20::d2d]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E669153D35 for ; Wed, 13 Jul 2022 16:56:22 -0700 (PDT) Received: by mail-io1-xd2d.google.com with SMTP id u6so86687iop.5 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=gCe+uNpy1W7zrOWmiCUTUAz0B1UQ5fRkE0crsXZyZBSszRyPvVrHfTbjX7WoAlyv6R BY2Hn46Kcz/vMYiF1vHFLdCqP2XFo34Ok9gxggvHOZrUzoi6U2CxMPgUhdD39AlieX5/ SHa8vyqf9IBfDRme4JkvEzPGOQnRXSboWtNXZskPuD6uMPvzQe5ZDLKFTXcxTwB2kJyh R4M+h1LkqpPT30WBemM90xDs4xjnAYvfeEImqAfQ1tq+UtfjAo6vqdXeEWgmxUhNfaEV kRJM6STmsFjJvBHK/0MhYadVBiKeOdIwbLDZghMrgnKa9/b78g5La1FzEu1oE/pUkBNn qJKg== X-Gm-Message-State: AJIora+je3XFvdX1ECLj5gfprhnAPyHzmbzX9ZsQr0gV8URplt8DxF4B VS20oO+zO8bfNE8Wh3NNYXwwtWXsLlMtzQ== 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-kernel@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