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 X-Spam-Level: X-Spam-Status: No, score=-10.4 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 76F8EC4320A for ; Thu, 29 Jul 2021 16:52:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5B1AF60E76 for ; Thu, 29 Jul 2021 16:52:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229898AbhG2Qwc (ORCPT ); Thu, 29 Jul 2021 12:52:32 -0400 Received: from mail-pl1-f176.google.com ([209.85.214.176]:46982 "EHLO mail-pl1-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229565AbhG2Qwb (ORCPT ); Thu, 29 Jul 2021 12:52:31 -0400 Received: by mail-pl1-f176.google.com with SMTP id t21so7620307plr.13; Thu, 29 Jul 2021 09:52:27 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; 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=wwPUoRTaLbK4rgKgTlstegWdypx9v1mMPe8BKMA/iC8=; b=a8Cjq4ELz5yw6Msp4Xh3wZPkn9yKqrVx/0rDrdVLL2y0KgPTmlI2Fdra8sDs9ZnSuZ fDuEXE8sjKTpXGaUl/Ze422SfM04NsYRld00uZxF6T1hNZUu9q26Kn4zpmkmRSVqKECL 1Aa5/ql/kYKJ2mA2gufULb74hSMl7gonwzgksMRcJjcMlHK4DM5rjpBEKBcTrJlFjnNN OrWctnfIKlBar5TxKtW7r7MGvhNln7iA2NeaFxHaEhp+a19oX//JL4x/iF/6xRKZSWEc jaYowhjJjkHY6nD1YvCUGVyRxfXqjo2BHOFyfe3/FQ9EI9vIapSNh6+cdxiLRLLPl5Z8 NxSg== X-Gm-Message-State: AOAM533ffve/D46yhCGmkfmfcgJQhAv6wz4US6cW/Ov+vZW5GeDouCW6 dMD2h2+Qt18Me11wCqATDX8= X-Google-Smtp-Source: ABdhPJwMyDZB+8N+xgFObxmm6hS/y6HF7YhY7Lo6LBOmXdpj6ZGQowIiRMiuyz/fbu7J2/sKwjicxA== X-Received: by 2002:a17:90b:3704:: with SMTP id mg4mr15418493pjb.201.1627577546799; Thu, 29 Jul 2021 09:52:26 -0700 (PDT) Received: from bvanassche-linux.mtv.corp.google.com ([2620:15c:211:1:684a:6173:abee:6f13]) by smtp.gmail.com with ESMTPSA id m6sm4667358pgs.75.2021.07.29.09.52.25 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 29 Jul 2021 09:52:26 -0700 (PDT) Subject: Re: [PATCH v2 2/3] kunit: Add support for suite initialization and cleanup To: Greg KH Cc: Christoph Hellwig , Joel Becker , linux-kernel@vger.kernel.org, Brendan Higgins , David Gow , Shuah Khan , kunit-dev@googlegroups.com, linux-kselftest@vger.kernel.org, Bodo Stroesser , "Martin K . Petersen" , Yanko Kaneti References: <20210729044125.7435-1-bvanassche@acm.org> <20210729044125.7435-3-bvanassche@acm.org> From: Bart Van Assche Message-ID: <8ab0ea44-760a-61df-0b9a-8b314ca9a0fe@acm.org> Date: Thu, 29 Jul 2021 09:52:24 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.12.0 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/28/21 10:55 PM, Greg KH wrote: > On Wed, Jul 28, 2021 at 09:41:24PM -0700, Bart Van Assche wrote: >> Reviewed-by: Brendan Higgins >> Cc: David Gow >> Cc: Shuah Khan >> Cc: kunit-dev@googlegroups.com >> Cc: linux-kselftest@vger.kernel.org >> Cc: Bodo Stroesser >> Cc: Martin K. Petersen >> Cc: Yanko Kaneti >> Signed-off-by: Bart Van Assche >> --- > > I know I do not take patches without any changelog text. Maybe other > maintainers are more lax :( Almost every patch from me has an elaborate changelog. For this patch I chose not to add a changelog since I think that the subject is self-explanatory? Thanks, Bart.