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=-6.5 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no 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 50ECEC433E7 for ; Tue, 20 Oct 2020 09:32:32 +0000 (UTC) Received: from ml01.01.org (ml01.01.org [198.145.21.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 6231B222C8 for ; Tue, 20 Oct 2020 09:32:30 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=alien8.de header.i=@alien8.de header.b="Twmzew3g" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6231B222C8 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=alien8.de Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-nvdimm-bounces@lists.01.org Received: from ml01.vlan13.01.org (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 70F3215F569EB; Tue, 20 Oct 2020 02:32:30 -0700 (PDT) Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=5.9.137.197; helo=mail.skyhub.de; envelope-from=bp@alien8.de; receiver= Received: from mail.skyhub.de (mail.skyhub.de [5.9.137.197]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 9175715F569E0 for ; Tue, 20 Oct 2020 02:32:27 -0700 (PDT) Received: from zn.tnic (p200300ec2f106600748f54fac26d0739.dip0.t-ipconnect.de [IPv6:2003:ec:2f10:6600:748f:54fa:c26d:739]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.skyhub.de (SuperMail on ZX Spectrum 128k) with ESMTPSA id 9D9461EC0258; Tue, 20 Oct 2020 11:32:24 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alien8.de; s=dkim; t=1603186344; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:in-reply-to:in-reply-to: references:references; bh=zQSMKQsleLY8ITX+I3NDELePsK4U9vilbjl6nMGkcG0=; b=Twmzew3gMfZQf974h+00fcxkBGK02qITCu1dbq4+6sIRwMxg+NG5g/b2+IjO+EKlJ24pEZ Blcv3j1fxc0ONI/gL0EyXliGFM3f39FXy1GhatGCc1KcHg+ySke+IPFkYEBg1+BhYvgdhS X2IRvVOu+e7lMTXNFdoYKiS/c0n2GwE= Date: Tue, 20 Oct 2020 11:32:14 +0200 From: Borislav Petkov To: Dan Williams Subject: Re: [PATCH] x86, libnvdimm/test: Remove COPY_MC_TEST Message-ID: <20201020093214.GB11583@zn.tnic> References: <160316688322.3374697.8648308115165836243.stgit@dwillia2-desk3.amr.corp.intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <160316688322.3374697.8648308115165836243.stgit@dwillia2-desk3.amr.corp.intel.com> Message-ID-Hash: IL72RMD72TU7ZSOARGPOS2NGQIGEDBXL X-Message-ID-Hash: IL72RMD72TU7ZSOARGPOS2NGQIGEDBXL X-MailFrom: bp@alien8.de X-Mailman-Rule-Hits: nonmember-moderation X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation CC: linux-nvdimm@lists.01.org, Thomas Gleixner , Ingo Molnar , x86@kernel.org, "H. Peter Anvin" , linux-kernel@vger.kernel.org X-Mailman-Version: 3.1.1 Precedence: list List-Id: "Linux-nvdimm developer list." Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On Mon, Oct 19, 2020 at 09:08:03PM -0700, Dan Williams wrote: > The COPY_MC_TEST facility has served its purpose for validating the > early termination conditions of the copy_mc_fragile() implementation. > Remove it and the EXPORT_SYMBOL_GPL of copy_mc_fragile(). > > Reported-by: Borislav Petkov > Cc: Thomas Gleixner > Cc: Ingo Molnar > Cc: x86@kernel.org > Cc: "H. Peter Anvin" > Cc: Vishal Verma > Cc: Dave Jiang > Cc: Ira Weiny > Signed-off-by: Dan Williams > --- > arch/x86/Kconfig.debug | 3 - > arch/x86/include/asm/copy_mc_test.h | 75 ------------------------- > arch/x86/lib/copy_mc.c | 4 - > arch/x86/lib/copy_mc_64.S | 10 --- > tools/testing/nvdimm/test/nfit.c | 103 ----------------------------------- > 5 files changed, 195 deletions(-) > delete mode 100644 arch/x86/include/asm/copy_mc_test.h I love patches removing code. ACK. I'll take this through tip after -rc1. Thx. -- Regards/Gruss, Boris. https://people.kernel.org/tglx/notes-about-netiquette _______________________________________________ Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org To unsubscribe send an email to linux-nvdimm-leave@lists.01.org