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 95EFFC07545 for ; Tue, 24 Oct 2023 03:18:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232067AbjJXDSa (ORCPT ); Mon, 23 Oct 2023 23:18:30 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50740 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229688AbjJXDS2 (ORCPT ); Mon, 23 Oct 2023 23:18:28 -0400 Received: from out-191.mta1.migadu.com (out-191.mta1.migadu.com [IPv6:2001:41d0:203:375::bf]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BF021BC for ; Mon, 23 Oct 2023 20:18:26 -0700 (PDT) Content-Type: text/plain; charset=us-ascii DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1698117505; 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:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=jv5wXdaC3y/S8EnSqXGexSgMX0Jo/OO/p9IJYjDjWjI=; b=pb/4pTPTJob6cVNmJP/eiunXtJq5Nj5DXabg0FA+SZ0gGWycYhyNiaXuLeIh0yf97FmDjH Xtfe+JhVp+2N3C9rq1xwxHzYD83Fx4ULAFI81ZFrlSfuGfP6x8WWWJHaQDSzMK7ukhvm4/ qqyf3b8qDHbLy6ZMi5pXfoSAt/UxikY= Mime-Version: 1.0 Subject: Re: [PATCH] mm: hugetlb_vmemmap: fix reference to nonexistent file X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Muchun Song In-Reply-To: <20231022185619.919397-1-vegard.nossum@oracle.com> Date: Tue, 24 Oct 2023 11:17:43 +0800 Cc: Mike Kravetz , Andrew Morton , Linux-MM , Linux Doc Mailing List , LKML , Mike Rapoport , Matthew Wilcox , Ira Weiny , Jonathan Corbet , Wu XiangCheng Content-Transfer-Encoding: 7bit Message-Id: <3D383A26-5F91-43E7-8969-C2A3E380D2AA@linux.dev> References: <20231022185619.919397-1-vegard.nossum@oracle.com> To: Vegard Nossum X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > On Oct 23, 2023, at 02:56, Vegard Nossum wrote: > > The directory this file is in was renamed but the reference didn't > get updated. Fix it. > > Fixes: ee65728e103b ("docs: rename Documentation/vm to Documentation/mm") > Cc: Mike Rapoport > Cc: Matthew Wilcox > Cc: Ira Weiny > Cc: Jonathan Corbet > Cc: Wu XiangCheng > Signed-off-by: Vegard Nossum Reviewed-by: Muchun Song Thanks.