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 09F643BA249; Wed, 1 Jul 2026 23:40:31 +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=1782949233; cv=none; b=TluDvkbxts/nd32LAOpAlZwkHvzd9Ttfpu043ErMPhEWCeFtCE2T+CPfVxsEjCFYxwRiXIsQxyXBKdvkP+Toz7qEW9kiIDjECUUFYyRebji27IzXpiXJX8HXP33T40stDTMJ6fStKaK1GSm6BCnrNDufxfPPonh1bl1YJ2ybNlU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782949233; c=relaxed/simple; bh=5yW0zUjhiMac8QG6Y5cF1snznsSu+8ZbO5nXVu64T7g=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=N9IhQwrspop6RH3OceZqFlHAvEK0dgMifhqsIiSCtqKdrjSmn+FLXOpNwuD3vbwPCriXNWK5ae30xrX/gPb4FFGyi369G9Yld459VC2urttfoPmnrSSqad7kD0lTK+IJMyK3aSQnfCVgA5YKkYYlpEL//G/pKFtoQ3M6A5jbs5E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Ig7VGz8s; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Ig7VGz8s" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 116031F000E9; Wed, 1 Jul 2026 23:40:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782949231; bh=+LXAnbfNg10BTks6zYdMXX5zaByxhhgaseK49BiW7Ww=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Ig7VGz8svalvd6KD6RGdcmcnMVWWJH+11TDo9WA/JM8QDjNXh4Qd7ji4F9Bs2N5cK geuOCIdC8z0S/eEe7hS9rs7kwYn9ETUMZIFYA+5PrwY2hlVQb//r5SFzi3F38pa5lT b+6wtX5WbZaQuYelFv8V6feHe1JIDW3KYOGpye/k5xujFkEJ43Ccw1OVkm9zzcaV88 hAsKIeN4EXj7qfqJMRnw1+7crP9GzH8bQikdYHPnMJ8pRNIpPi0HXzsSCWUqCJMHYZ Qq0keQwNdEDfPqO7KYPlMmuClbX6J1p+6eICrCEKJcWImMTussRT2QgiRd3s7MAfIk VmHs/o5k9/B3Q== From: SJ Park To: Johannes Weiner Cc: SJ Park , Andrew Morton , Gregory Price , Michal Hocko , Roman Gushchin , Shakeel Butt , Muchun Song , David Hildenbrand , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , cgroups@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm: gfp_types: fix __GFP_ACCOUNT, GFP_KERNEL_ACCOUNT documentation Date: Wed, 1 Jul 2026 16:40:23 -0700 Message-ID: <20260701234023.85590-1-sj@kernel.org> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260701182102.1586784-1-hannes@cmpxchg.org> References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit On Wed, 1 Jul 2026 14:21:02 -0400 Johannes Weiner wrote: > Gregory points out that these descriptions are cursed and confusing, > considering what these flags actually do. This is mostly due to > historic implementation choices and cgroup1 baggage. Improve the > description of their actual effects. > > Reported-by: Gregory Price FWIW, checkpatch.pl complains. WARNING: Reported-by: should be immediately followed by Closes: or Link: with a URL to the report I think it is completely fine to ignore, though. Hence FWIW. > Signed-off-by: Johannes Weiner Acked-by: SJ Park Thanks, SJ [...]