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 1D6A8335BCD; Fri, 9 Jan 2026 12:43:01 +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=1767962581; cv=none; b=ZlSV4I0mYCJRUlw/p1F2ghnbacPC/tVJADdhFkaPH/RrpVaHpTiqFj5UfCx+XmdKbn325MQImz+s+Tr0LRt58I6g9DcxtDXA0pJT8EGr1b7HYF7WocsxsJUyS/sJ5GE5CoWZ+YomLwr+rvApbbXQNXvl8oWPAbF1MXrkzGyEhUs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767962581; c=relaxed/simple; bh=fNobD8/AtjEEt2xECuxh987BTiC9gzQ/E5oslr5GyN8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=AJXgFXznFLEkiNtd8nIYejy5a/SwcPD4vvszNjHl4p11MTGP8JNJI7ESWtiCLLW0fTVz6crxB/HB7BRivbqoEnq2wJ3CRn6Rmr1JRB31Si8BZfLRqxMStM7pgG4fbwO98FQwDZaJiBkTYrRJE+/8jHH/8l/WCCH3s1CxnqcRe+o= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=QyWrcGg8; 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="QyWrcGg8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9EB5EC4CEF1; Fri, 9 Jan 2026 12:43:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1767962581; bh=fNobD8/AtjEEt2xECuxh987BTiC9gzQ/E5oslr5GyN8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QyWrcGg8omBJ6s+ILBfplkSuom8dFykvTPkpLwvxix+FNb81p6z8oNm7sukoD++xp kzwIKUJmxX68282Fo5wH71LMHiwdTUFQOEIywvfYNkhEWHWar5ajgS6vbHP9Wo6Hum DMTA0nHaeutRWDAhUyYF756xUu0ikhIrRR63ruQc= 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.1 414/634] genalloc.h: fix htmldocs warning Date: Fri, 9 Jan 2026 12:41:32 +0100 Message-ID: <20260109112133.113944770@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260109112117.407257400@linuxfoundation.org> References: <20260109112117.407257400@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.1-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