From nobody Fri Jul 24 04:50:43 2026 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 EE84038AC65 for ; Thu, 23 Jul 2026 16:51:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784825477; cv=none; b=tC29blWC5Etf2EQIoX5BpanfJY7GVleRUvbX1Sv535RCECg54YyEtVurWBANkOX5hKQ3QBucCU8OaS7Xq5BOsJ5aHu6025hDBEaCSn1k8p3xNQ5e1LUhR0pATrQ+RN2w9BoSt6+ejKOHPnA9gJIM44PIcWdaDKmcN2YM4EaoQtE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784825477; c=relaxed/simple; bh=iNTF+EGtuXRIux4ws0vUYbm8X1Kj6cX+HsUz2iBJNHE=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Yh5KfE53lm8xljwou1DX4M3Ua7ltlWBRnY8SaP7szh+eOvrXUwoganUk17wdaZ4U0wI4ad1wpf8Geph/cxV9oyVMQG4lcwa8L20jWUsktaB/nlMktzDnF7SiquRwViOJmUJel4m+IUrPJJbLGRQvxlm8CZa8TpOL/5ATRCHHff4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=NPya370G; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=pass 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="NPya370G" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=KHg0Zc51J8/TOewt9A1FopsnbguAQeZ9ujNt78iPqGw=; b=NPya370G0oYmBKTXdE76fcjowk 3Wi9+jn5lpFc3rHXPNjyuPTgN1o0fRSgjRVWtOdD4QlD+AToKYMKIvC29wLx/VzMKgGVuHANpUl+3 k+3z4VMxfgSOH/gwsHMd6GkhRXfrabXGHu8H9fuuoZBtNmwkpKcAnPTrIj7qH6E3rNQ1fTuQU+ybP T+wdyA0IiJwnyt6Z6fBJPkIR3HgJyXHlvBEmAHHezuxW9HRpGt77Z5m4VmqM9YYHe6ZtudCrPgY24 h0EA+RqXWLkRKezvnMGLTaeDB5bkqvZvS5u3sJofBglIJLrFvfKR2b2hEENeVcJ+nWdNiGT4sJdGt J7cPuYng==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1wmwde-0000000EkZ4-1QIW; Thu, 23 Jul 2026 16:51:14 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Andrew Morton Subject: [PATCH] llist: use correct function parameter name Date: Thu, 23 Jul 2026 09:51:13 -0700 Message-ID: <20260723165113.225098-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.55.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Correct the function parameter name to avoid kernel-doc warnings: Warning: ./include/linux/llist.h:71 function parameter 'list' not described= in 'init_llist_head' Warning: ./include/linux/llist.h:71 Excess function parameter 'head' descri= ption in 'init_llist_head' Signed-off-by: Randy Dunlap --- Cc: Andrew Morton include/linux/llist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-next-20260720.orig/include/linux/llist.h +++ linux-next-20260720/include/linux/llist.h @@ -66,7 +66,7 @@ struct llist_node { =20 /** * init_llist_head - initialize lock-less list head - * @head: the head for your lock-less list + * @list: the head for your lock-less list */ static inline void init_llist_head(struct llist_head *list) {