From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id ED83A2D594A for ; Sun, 28 Sep 2025 12:53:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759064009; cv=none; b=qWjdTXGcAKsoWNDvSZND2rAMRDBCSwJsChILTuPM3XAjd9KSNceiR0TxFlz2dmIwtJpMCZIoH241IhDyi+SRdLNek16gBr1onD+U6XA1UqPOr7vag1JgndJIPHF+HBeG678V5hMkjNbm/JmuTMdMPSDTSO4nbbGZ4ws4+Rie7Ig= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759064009; c=relaxed/simple; bh=WRMuH8FjcGi3m2sUC+ywTerdReat98QUnEtjEjKvkr8=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=Z0g6hoRlvgmYXXhyeg8g1IU1Wdrak1M5qB4tlvIUrA3gp7BfDLlMutf2D9e4eiPrRyARhHW8ps7huohoN6YxSoLYRTi3Ygs7Ig0mAASeuwuYboC0ovqtFj8rCX+AI0B9jkfcGNDSQlgDM9/Rmd2J57kuc/BcIjtFS5rm3RHkSeQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id C7006150C; Sun, 28 Sep 2025 05:53:12 -0700 (PDT) Received: from [10.163.64.48] (unknown [10.163.64.48]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 120893F694; Sun, 28 Sep 2025 05:53:09 -0700 (PDT) Message-ID: <3c3f9032-18ac-4229-b010-b8b95a11d2a4@arm.com> Date: Sun, 28 Sep 2025 18:23:06 +0530 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] mm: Fix some typos in mm module To: "jianyun.gao" , linux-mm@kvack.org Cc: SeongJae Park , Andrew Morton , David Hildenbrand , Jason Gunthorpe , John Hubbard , Peter Xu , Alexander Potapenko , Marco Elver , Dmitry Vyukov , Xu Xin , Chengming Zhou , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , Christoph Lameter , David Rientjes , Roman Gushchin , Harry Yoo , Kemeng Shi , Kairui Song , Nhat Pham , Baoquan He , Barry Song , Chris Li , Jann Horn , Pedro Falcato , "open list:DATA ACCESS MONITOR" , open list , "open list:KMSAN" References: <20250927080635.1502997-1-jianyungao89@gmail.com> Content-Language: en-US From: Dev Jain In-Reply-To: <20250927080635.1502997-1-jianyungao89@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 27/09/25 1:36 pm, jianyun.gao wrote: > Below are some typos in the code comments: > > intevals ==> intervals > addesses ==> addresses > unavaliable ==> unavailable > facor ==> factor > droping ==> dropping > exlusive ==> exclusive > decription ==> description > confict ==> conflict > desriptions ==> descriptions > otherwize ==> otherwise > vlaue ==> value > cheching ==> checking > exisitng ==> existing > modifed ==> modified > > Just fix it. > > Signed-off-by: jianyun.gao > --- > Reviewed-by: Dev Jain