From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 75A7B2D948A; Tue, 6 Jan 2026 17:33:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767720794; cv=none; b=ciykY4EbLg4SUHzJlhYVYAps7vstKGjPJWNCYSRE4DyAnq80Fm+HB6x8dyVQ7FuQJqIU5iNxhoNVRQmMHqrPX6Sb+QetV1py4dITOluep6xMSANSqx7KGQD2FpmlaWU6T89+BtBzu3BiYOswsc53sWDOdJmmShizKEcp31Q7TNE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767720794; c=relaxed/simple; bh=cijmrRb8TJXO93/5TUX+59GG+Gwuit++chylVjNdK9U=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Jdy22hjGzIzATdsL9/snP3Jrv4wRUJpXX3VOtnLNHQnEKFnCXyBA4C/NYhbxB1RmDTcqZ17kUOtrDFsPTrSldHnPkGKglcnnry6Ol1sDCLph+Rm260psP6VL4owBSSsK+ib5F7oY3uS0aJixqSuL5zULTNcxqLSwCezAJYyF2Gk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=vXf9Lo01; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="vXf9Lo01" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D7C51C116C6; Tue, 6 Jan 2026 17:33:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1767720794; bh=cijmrRb8TJXO93/5TUX+59GG+Gwuit++chylVjNdK9U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=vXf9Lo01Q1djjZkTVarstolvump/Qt7PvGuEaZSZKO7kiMODOuD3VIrfnYhNHKkSg at1bo/yvJgpIlSRoFxvhici/y/qhKLvoU8rcyVNRcNifTbAykmmCgQuIJxu/EqJAj2 aVSkHrFcFFcqRCNAzNBb1Tt6FNuy4xAqu8XXWOBw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Stephen Rothwell , Randy Dunlap , Alexey Skidanov , Andrew Morton , Sasha Levin Subject: [PATCH 6.12 316/567] genalloc.h: fix htmldocs warning Date: Tue, 6 Jan 2026 18:01:38 +0100 Message-ID: <20260106170503.017804002@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260106170451.332875001@linuxfoundation.org> References: <20260106170451.332875001@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Andrew Morton [ Upstream commit 5393802c94e0ab1295c04c94c57bcb00222d4674 ] WARNING: include/linux/genalloc.h:52 function parameter 'start_addr' not described in 'genpool_algo_t' Fixes: 52fbf1134d47 ("lib/genalloc.c: fix allocation of aligned buffer from non-aligned chunk") Reported-by: Stephen Rothwell Closes: https://lkml.kernel.org/r/20251127130624.563597e3@canb.auug.org.au Acked-by: Randy Dunlap Tested-by: Randy Dunlap Cc: Alexey Skidanov Signed-off-by: Andrew Morton Signed-off-by: Sasha Levin --- include/linux/genalloc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/genalloc.h b/include/linux/genalloc.h index 0bd581003cd5..60de63e46b33 100644 --- a/include/linux/genalloc.h +++ b/include/linux/genalloc.h @@ -44,6 +44,7 @@ struct gen_pool; * @nr: The number of zeroed bits we're looking for * @data: optional additional data used by the callback * @pool: the pool being allocated from + * @start_addr: start address of memory chunk */ typedef unsigned long (*genpool_algo_t)(unsigned long *map, unsigned long size, -- 2.51.0