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=-2.3 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS,USER_AGENT_MUTT 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 5CE07C43441 for ; Sun, 25 Nov 2018 00:47:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1ABFB2086B for ; Sun, 25 Nov 2018 00:47:44 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="MgjE05kw" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1ABFB2086B Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726752AbeKYLh1 (ORCPT ); Sun, 25 Nov 2018 06:37:27 -0500 Received: from bombadil.infradead.org ([198.137.202.133]:54602 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726399AbeKYLh1 (ORCPT ); Sun, 25 Nov 2018 06:37:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=598dWhQLDj4kTiUIisH1NcRJM02W+S1E8dcGuIpqTaQ=; b=MgjE05kwy4LuWpDMNJ4cOYcQE ScQOqyf8wsUvZED7mDJRoc8+BZJxuz2HeIFXXxpg9xGKYkm8QOkxoNT7NVhgJm8KuELQsq1/FIxfD ezH4tg/SQR3XevaC2H6sCAF1XuMuneipmXYqZ/w32wYzAwwfVfFjOAVgce3TiMVsmLIFed18GUDlf noOkyLiPxTv0FiuYFr8abEh5A4td0g4RqcsB6BCbHNAipglLRROfBw2p3HKrlN7QbHegL56TB3NGl 1kh6IW91PzTxoDPxeCyYkEPxxlgSwZ1gaqKus5QMKEtvE/cJB+sc9DeYQ/+BLZgoP0Mw7M2tl16OI 15kSdK0Hg==; Received: from willy by bombadil.infradead.org with local (Exim 4.90_1 #2 (Red Hat Linux)) id 1gQiaG-00044l-T1; Sun, 25 Nov 2018 00:47:36 +0000 Date: Sat, 24 Nov 2018 16:47:36 -0800 From: Matthew Wilcox To: Andrew Morton Cc: Joel Fernandes , Andy Lutomirski , Stephen Rothwell , LKML , Hugh Dickins , Jann Horn , Khalid Aziz , Linux API , "open list:KERNEL SELFTEST FRAMEWORK" , Linux-MM , marcandre.lureau@redhat.com, Mike Kravetz , Shuah Khan Subject: Re: [PATCH -next 1/2] mm/memfd: make F_SEAL_FUTURE_WRITE seal more robust Message-ID: <20181125004736.GA3065@bombadil.infradead.org> References: <20181120183926.GA124387@google.com> <20181121070658.011d576d@canb.auug.org.au> <469B80CB-D982-4802-A81D-95AC493D7E87@amacapital.net> <20181120204710.GB22801@google.com> <20181120211335.GC22801@google.com> <20181121182701.0d8a775fda6af1f8d2be8f25@linux-foundation.org> <20181122230906.GA198127@google.com> <20181124164229.89c670b6e7a3530ef7b0a40c@linux-foundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181124164229.89c670b6e7a3530ef7b0a40c@linux-foundation.org> User-Agent: Mutt/1.9.2 (2017-12-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Nov 24, 2018 at 04:42:29PM -0800, Andrew Morton wrote: > This changelog doesn't have the nifty test case code which was in > earlier versions? Why do we put regression tests in the changelogs anyway? We have tools/testing/selftests/vm/ already, perhaps they should go there?