From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) (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 0420B30BB84 for ; Thu, 15 Jan 2026 20:08:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=90.155.50.34 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768507738; cv=none; b=aSt3mdzlkpp0Gsh9tGX1bhvZEurW8Mx3fHeJjdL2sCAd9Seb+qyyinyLiOavFyteByojmJUORX1m/BXHKSFO+EMk9uiIz8Myg8JQk3g3LQoCh1qcT76DkVfo/29teeH3d3H2Y0JqqGakfOD6Zia+l3fCr+B4DJP8/J11cQRTl1g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768507738; c=relaxed/simple; bh=CpcZ01AOghjGeaLwyn84qH9jVj5LGN2Ssm7hC2lsYoc=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=n1GBXv5H7vtNM9ke0ee62vaefpruLO7F4bhHGsXYs49SIZAXgfjNYcAgVZvD1byU587xpOVY104Y8i2PmP2AbzPtlkl7QOrB83aH+7PUQbwS3O39z6CSQ7oQHdWn9FT2XW3DD8AKycp9h49BGgo6KgXUcxpGT46D2hb2kVR1fBQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=hoh/2tcz; arc=none smtp.client-ip=90.155.50.34 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="hoh/2tcz" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=CpcZ01AOghjGeaLwyn84qH9jVj5LGN2Ssm7hC2lsYoc=; b=hoh/2tcz2jPraqGGEY46dkSGUP z2s1G26gHd9gkuXFmx9lgJNzSHgmxpLWCRUHbmFyvAL1GO53T215xwEBbQ6bINIBBOIh8OqXorFvJ SUGMnhQ2kmkE5WfTKQ+57Lldej58aFN2GUk67xtDqtTpMfxQ3idzgVnD83YRJ5CQUp9luSkCN0h77 tWmlgru51ElN22k001F3F8bEghn0ousWSGqXEzXRU2e3Ykvj50pwNLe00H3tlH+6gkIEg2m1HPIql 3o1V+4dwRuX42wm3xiUlV99ZKDfREuy25HJVUifmo0HY2TN/zwT/c82l5RJGc7otfeTndoWcZHilE 0mjisBaA==; Received: from willy by casper.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1vgTeG-00000008OJj-1vjs; Thu, 15 Jan 2026 20:08:52 +0000 Date: Thu, 15 Jan 2026 20:08:52 +0000 From: Matthew Wilcox To: Manish Kumar Cc: akpm@linux-foundation.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm: prefer 'unsigned int' over bare 'unsigned' in page_alloc.c Message-ID: References: <20260115194845.118064-1-manish1588@gmail.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260115194845.118064-1-manish1588@gmail.com> On Fri, Jan 16, 2026 at 01:18:45AM +0530, Manish Kumar wrote: > Change the declaration of 'seq' from 'unsigned' to 'unsigned int' > to follow kernel coding style. No functional change. Please don't send these kind of unnecessary cleanup patches to mm.