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=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 26A2CC56202 for ; Fri, 20 Nov 2020 12:31:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BD1D92087D for ; Fri, 20 Nov 2020 12:31:21 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="1BZd4+5E" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727858AbgKTMbV (ORCPT ); Fri, 20 Nov 2020 07:31:21 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42008 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726559AbgKTMbU (ORCPT ); Fri, 20 Nov 2020 07:31:20 -0500 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 69A36C0613CF; Fri, 20 Nov 2020 04:31:20 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=In-Reply-To:Content-Transfer-Encoding: Content-Type:MIME-Version:References:Message-ID:Subject:Cc:To:From:Date: Sender:Reply-To:Content-ID:Content-Description; bh=K8UBxjP8yh0K1nEhdWupH2vnZSMF4nPrjni8IUXNzjo=; b=1BZd4+5EtF2GA93p1bG4pY3gB7 QhH2TPwCVpchRnmG9PDNkiLSA6L/UTtj82RQx2PGenurzrDMfp4tPnalO2QMM1ufTYCifJKan2cZJ mtSmlHNCm0PGKuAGSHedd8dD/J+O/iA9yP2AJLzHGtUp5pMk1Va72YNJUB2LcaDCIxE9uiKgkgQDT rEwi/yaKSzf81FAAPQ6lut44qdL0ZgEP7Hr3JRp75mPNnVO0/KjLCAzM7is3xEHLBKObY3JIOwFgV QImVjjf6GWYpCXf0OtpnXZwIqNWzKYN80NC1nYz0Ja7SFd7ALr+6qs8m7FN64cxGVhyUBfZHYeLTP 9Jdvc6Vg==; Received: from j217100.upc-j.chello.nl ([24.132.217.100] helo=noisy.programming.kicks-ass.net) by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1kg5Z9-0007Q4-NN; Fri, 20 Nov 2020 12:31:03 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id 3F2DD3012DC; Fri, 20 Nov 2020 13:31:01 +0100 (CET) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id 2844B25F09B24; Fri, 20 Nov 2020 13:31:01 +0100 (CET) Date: Fri, 20 Nov 2020 13:31:01 +0100 From: Peter Zijlstra To: Daniel Vetter Cc: DRI Development , Intel Graphics Development , linux-mm@kvack.org, linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org, LKML , Dave Chinner , Qian Cai , Thomas =?iso-8859-1?Q?Hellstr=F6m?= , Andrew Morton , Jason Gunthorpe , linux-rdma@vger.kernel.org, Maarten Lankhorst , Christian =?iso-8859-1?Q?K=F6nig?= , "Matthew Wilcox (Oracle)" , Daniel Vetter , Ingo Molnar , Will Deacon Subject: Re: [PATCH 3/3] locking/selftests: Add testcases for fs_reclaim Message-ID: <20201120123101.GH3021@hirez.programming.kicks-ass.net> References: <20201120095445.1195585-1-daniel.vetter@ffwll.ch> <20201120095445.1195585-4-daniel.vetter@ffwll.ch> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20201120095445.1195585-4-daniel.vetter@ffwll.ch> Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On Fri, Nov 20, 2020 at 10:54:44AM +0100, Daniel Vetter wrote: > Since I butchered this I figured better to make sure we have testcases > for this now. Since we only have a locking context for __GFP_FS that's > the only thing we're testing right now. > > Cc: linux-fsdevel@vger.kernel.org > Cc: Dave Chinner > Cc: Qian Cai > Cc: linux-xfs@vger.kernel.org > Cc: Thomas Hellström (Intel) > Cc: Andrew Morton > Cc: Jason Gunthorpe > Cc: linux-mm@kvack.org > Cc: linux-rdma@vger.kernel.org > Cc: Maarten Lankhorst > Cc: Christian König > Cc: "Matthew Wilcox (Oracle)" > Signed-off-by: Daniel Vetter > Cc: Peter Zijlstra > Cc: Ingo Molnar > Cc: Will Deacon > Cc: linux-kernel@vger.kernel.org > --- > lib/locking-selftest.c | 47 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 47 insertions(+) I have a few changes pending for this file, I don't think the conflicts will be bad, but.. In any case: Acked-by: Peter Zijlstra (Intel)