From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DC6B65C613; Fri, 12 Jun 2026 17:03:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781283822; cv=none; b=tRfTVc3Y3JHA/g8UNotq2XENK5cU9rDdxGGaAyAxguhk/TbBqHd8GTkD1SXlTWn2ARB2tWQQN3XGBXzJ5VuVoWPE2Qw5a+WoPz9vUdCDWqLwEkPD+KeV7xpOMv5GUm1OM8qbjkn2BDC14Ag93X0BE8XnhvLFRK6HVOy4B95v2/k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781283822; c=relaxed/simple; bh=ocg+rYhU9qZGv1rkfibdEQveWLBUUpVYmeREplBrKMU=; h=Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References: Mime-Version:Content-Type; b=gl/Mdhz5tLDIoDh3ckVz2Dk/2/g3B/RtVAGibgJWzEoZS/IkY8vWBMT7/7hZcDPzZLNlyYavx96EaBfbfAZ0ZLlZSroyvbRNripRCxVktzCuu6WfTvn3Fo6vskDSGM25FgANdf0CcEoZnyZGNY+19hBqbB8TSnfYSVBnKHWzUDI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=itH55TE3; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="itH55TE3" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2C16D1F000E9; Fri, 12 Jun 2026 17:03:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux-foundation.org; s=korg; t=1781283821; bh=cwPb00goa9neMhnO3uK2pLz1hA0oe5oy8FoictjDQao=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=itH55TE31Vw9PM1BjU2oosGYS40FegVM1Q8hy1iOodrFz0/baAP75jQaixwzd49Mn 9Q6twOCs9iJePz4HwIOqKdefPFGIX4RbG1gV7hna9jCbfMoh88KnIbgwEtiNJ1qbkf b0nZlLaXtQaLjoaCi6q9VqEcSgYJhO8sOFO+fAl4= Date: Fri, 12 Jun 2026 10:03:40 -0700 From: Andrew Morton To: Shardul Deshpande Cc: SeongJae Park , David Hildenbrand , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , Jonathan Corbet , Shuah Khan , damon@lists.linux.dev, linux-mm@kvack.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Docs/mm/damon/design: fix a typo in the Address Unit section Message-Id: <20260612100340.1243b191c643f288e1ce211c@linux-foundation.org> In-Reply-To: <20260612154054.720363-1-iamsharduld@gmail.com> References: <20260612154054.720363-1-iamsharduld@gmail.com> X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Fri, 12 Jun 2026 21:10:54 +0530 Shardul Deshpande wrote: > The "Address Unit" section misspelled the C type that the DAMON core > layer uses for monitoring target address ranges. Correct it to read > "unsigned long". > > ... > > --- a/Documentation/mm/damon/design.rst > +++ b/Documentation/mm/damon/design.rst > @@ -140,7 +140,7 @@ as Idle page tracking does. > Address Unit > ------------ > > -DAMON core layer uses ``unsinged long`` type for monitoring target address > +DAMON core layer uses ``unsigned long`` type for monitoring target address > ranges. In some cases, the address space for a given operations set could be > too large to be handled with the type. ARM (32-bit) with large physical > address extension is an example. For such cases, a per-operations set Well we don't want our longs to be singed. `grep -ri singed .' shows quite a few typos. "assinged" is popular. Perhaps you could prepare a patch which fixes them all and adds "assinged" to scripts/spelling.txt?