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 6628AC433FE for ; Thu, 16 Dec 2021 10:54:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236302AbhLPKy0 (ORCPT ); Thu, 16 Dec 2021 05:54:26 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48580 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233592AbhLPKyY (ORCPT ); Thu, 16 Dec 2021 05:54:24 -0500 Received: from mail-qk1-x731.google.com (mail-qk1-x731.google.com [IPv6:2607:f8b0:4864:20::731]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3CB7FC061574 for ; Thu, 16 Dec 2021 02:54:24 -0800 (PST) Received: by mail-qk1-x731.google.com with SMTP id t6so22942931qkg.1 for ; Thu, 16 Dec 2021 02:54:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=qaq4AYvHrkraOXjSh4Dxq1xnyiNdkNmydNNcRNrMS9I=; b=lGKx4K34K4qKgeXT42r8Nb+V18P8JGzB3MdQXTLKhdw66EZvcrPDljJZLXJs9ATtXj KZMS080jGNTpU3woWA2HWimhhfBDFiXAyMDC+zxVKACLV8pPIqrhpyx0K2NEadjKmcqV UEbWzx/78zna4JHaP4uxj+xYdpdpwkn7zBl/41+oV6r748yW40yvZOlsP8RA//9w7OnO VmGMKo90ljMFaATgGLh++ap/3b/aONOQPZF7GyWFZ5LgigVwpzjPbCZQXs8D+qCH1g2p ieoXWrhz1YPCFyFqc+yTgUf01WgNCdMUvi3QTlskt5d//YzEGkAy9E49XqbbgmwMLXPb pWrw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=qaq4AYvHrkraOXjSh4Dxq1xnyiNdkNmydNNcRNrMS9I=; b=qe5sGSGbaGTn74VXtvPZ7rhugQqOPj/iBxLxH8xyVYXJPrDOsgWMnumC1D9wDgi0qd Fbazo0iswlepj8YQgJBIj1oGjSFA1X29j8uWGS/M3U05XKCkoJyaSBnogPFZI7itUCCY uD/WYD76dIAY8e0Uq6scFx4YBf15UkQwCmEQ3NxOk9tI3qX8owM3Jfr8h0YPx8b087Tg yLnq9JDzq/RGDMPRqx6AGUCF6H1FD3ukGAPdBXEzCENZbsz7wB/QmOWvclKgjKzthuvS SBWkGt42c86SQD6giJ2bNdeoxsdLfZ4YD9c0TXjKL9dR+jdcq7Zj3gsqN7apKd3HOtQa pUdw== X-Gm-Message-State: AOAM5313N0SrqnP+QOnB/FQG+PcITBSigYcpneQNFTnA0Hf0nmpKk3rM 0FrVb57SLvazXODv8FeFuZwafZPYPhC0ugruLPPpkg== X-Google-Smtp-Source: ABdhPJy17wdiKVVEIPJ+n3Z+Q3CsCQsY10H85F/nbSMhs3J4ZdEuCw6iLuHDkDexT3DqYVledVijbVrmrl+gBnJM8VI= X-Received: by 2002:a05:620a:28d2:: with SMTP id l18mr6008731qkp.355.1639652063228; Thu, 16 Dec 2021 02:54:23 -0800 (PST) MIME-Version: 1.0 References: <678a2184509f5622d4a068f762691eb3ef5897af.1639432170.git.andreyknvl@google.com> In-Reply-To: <678a2184509f5622d4a068f762691eb3ef5897af.1639432170.git.andreyknvl@google.com> From: Alexander Potapenko Date: Thu, 16 Dec 2021 11:53:47 +0100 Message-ID: Subject: Re: [PATCH mm v3 18/38] kasan, vmalloc: drop outdated VM_KASAN comment To: andrey.konovalov@linux.dev Cc: Marco Elver , Andrew Morton , Andrey Konovalov , Dmitry Vyukov , Andrey Ryabinin , kasan-dev@googlegroups.com, linux-mm@kvack.org, Vincenzo Frascino , Catalin Marinas , Will Deacon , Mark Rutland , linux-arm-kernel@lists.infradead.org, Peter Collingbourne , Evgenii Stepanov , linux-kernel@vger.kernel.org, Andrey Konovalov Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Dec 13, 2021 at 10:53 PM wrote: > > From: Andrey Konovalov > > The comment about VM_KASAN in include/linux/vmalloc.c is outdated. > VM_KASAN is currently only used to mark vm_areas allocated for > kernel modules when CONFIG_KASAN_VMALLOC is disabled. > > Drop the comment. > > Signed-off-by: Andrey Konovalov Reviewed-by: Alexander Potapenko 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 89306C433EF for ; Thu, 16 Dec 2021 10:56:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:Cc:To:Subject:Message-ID:Date:From: In-Reply-To:References:MIME-Version:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=lwnszYCrKgIepFPwvQnX2podKSrIxd9T3zKrZr6aRl0=; b=3/9i4fyIGsGdUv Fewa6qLpTBzD+yZsghKjKd7I0eHSjurpzG/PgXPmgj8bqztgcQSxIeRpeiYY+F1vtVxWrOZq3Nh7G Afr9F4vxYtjZkkyO7bxtpzw74mZscFqkbH5R7phVg7wrjyA0g8AiM2xDs78+60wwQigmmrLVtahvI e+BA7TivijAP1Vsfx4FODIJRIoYDeh88cs03AU50THdLa3x65uwGk0HgsVdcrIix58tim7f1k8avg xDjLnicpHBOj7TqUlluO0QDDTONtBuYI6qRCqeyop71ZMlAO+WnBUE51BP7YrZOAXIdemSAxx7xCp AXUA3mrr5o/ZZYEyTcSA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mxoPA-004xWM-Aq; Thu, 16 Dec 2021 10:54:33 +0000 Received: from mail-qk1-x72a.google.com ([2607:f8b0:4864:20::72a]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mxoP2-004xTE-EZ for linux-arm-kernel@lists.infradead.org; Thu, 16 Dec 2021 10:54:25 +0000 Received: by mail-qk1-x72a.google.com with SMTP id b67so22917888qkg.6 for ; Thu, 16 Dec 2021 02:54:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=qaq4AYvHrkraOXjSh4Dxq1xnyiNdkNmydNNcRNrMS9I=; b=lGKx4K34K4qKgeXT42r8Nb+V18P8JGzB3MdQXTLKhdw66EZvcrPDljJZLXJs9ATtXj KZMS080jGNTpU3woWA2HWimhhfBDFiXAyMDC+zxVKACLV8pPIqrhpyx0K2NEadjKmcqV UEbWzx/78zna4JHaP4uxj+xYdpdpwkn7zBl/41+oV6r748yW40yvZOlsP8RA//9w7OnO VmGMKo90ljMFaATgGLh++ap/3b/aONOQPZF7GyWFZ5LgigVwpzjPbCZQXs8D+qCH1g2p ieoXWrhz1YPCFyFqc+yTgUf01WgNCdMUvi3QTlskt5d//YzEGkAy9E49XqbbgmwMLXPb pWrw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=qaq4AYvHrkraOXjSh4Dxq1xnyiNdkNmydNNcRNrMS9I=; b=dK2ZG2kZ2oJTA7JR0m5pOxA3oFzpfpisk1lccf6Pp5dQ0dbliB7Hd34VBMSBxOGD4O 6ziPk65c2B90vAJYNOiRivzg7jCFAtwxsGTYmBzazeDUS5Nau9LgLVac6F4RWmaiovnp z4A5O/2lQ61guHXhf4gVM6mmncw0mXm3oUVl29SkYIUWUR9foZmdKtmzyPp/psmVVtEq 2jv3FsqNhv8FeiT1CYMiWtGzYdOqiw0Xwrn9UuPimcSJlv0jzKogfeo11x/j/Rj+sr8W 0DEEbKFiUhXMPzS+MmmE0anIb1rDiLUZVJZZGlju5B4GRyoa/QsbqQnroXCL9Kwv5Q5/ SlFA== X-Gm-Message-State: AOAM532DXRE47qaBRhHUASNMIbu0fM/sLx5Yu13iyYxBXkAHyEsFHZbM 2Liv2o31ANYfndR8Alxjsr+Li8Sv1bqggSskxlqRaQ== X-Google-Smtp-Source: ABdhPJy17wdiKVVEIPJ+n3Z+Q3CsCQsY10H85F/nbSMhs3J4ZdEuCw6iLuHDkDexT3DqYVledVijbVrmrl+gBnJM8VI= X-Received: by 2002:a05:620a:28d2:: with SMTP id l18mr6008731qkp.355.1639652063228; Thu, 16 Dec 2021 02:54:23 -0800 (PST) MIME-Version: 1.0 References: <678a2184509f5622d4a068f762691eb3ef5897af.1639432170.git.andreyknvl@google.com> In-Reply-To: <678a2184509f5622d4a068f762691eb3ef5897af.1639432170.git.andreyknvl@google.com> From: Alexander Potapenko Date: Thu, 16 Dec 2021 11:53:47 +0100 Message-ID: Subject: Re: [PATCH mm v3 18/38] kasan, vmalloc: drop outdated VM_KASAN comment To: andrey.konovalov@linux.dev Cc: Marco Elver , Andrew Morton , Andrey Konovalov , Dmitry Vyukov , Andrey Ryabinin , kasan-dev@googlegroups.com, linux-mm@kvack.org, Vincenzo Frascino , Catalin Marinas , Will Deacon , Mark Rutland , linux-arm-kernel@lists.infradead.org, Peter Collingbourne , Evgenii Stepanov , linux-kernel@vger.kernel.org, Andrey Konovalov X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211216_025424_527034_7BB64010 X-CRM114-Status: GOOD ( 10.20 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, Dec 13, 2021 at 10:53 PM wrote: > > From: Andrey Konovalov > > The comment about VM_KASAN in include/linux/vmalloc.c is outdated. > VM_KASAN is currently only used to mark vm_areas allocated for > kernel modules when CONFIG_KASAN_VMALLOC is disabled. > > Drop the comment. > > Signed-off-by: Andrey Konovalov Reviewed-by: Alexander Potapenko _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel