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 E0DE82C3247 for ; Fri, 28 Nov 2025 10:09:27 +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=1764324570; cv=none; b=DmH1SmvYU2zMbbOnrzf2qpYXVpRYHgbGkxZQvlr6ejOSdBY54d/IxUCFNy1XtKJjyRSJnnlzwH8usmPnL4bykkNnKd3MZLpGF9YXg0ALNEAsaQfPrVIj/vRDoUSqXVu5JPex0vYN0/wg1SWt1YEv6O3ekbJo1MC399AdWYmEyek= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764324570; c=relaxed/simple; bh=fpmFAqRgRUUdyBM9j3DjeCo9b5l+y8E7HVONtOJ2TDQ=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=c3nDp26a//4rk61AGcfZtEqjIDQybWDKkkEyaT7xFJHdK9n1/V642pFeTTNN96Ts/DnT0zEYUOBZNs1LBJSmwCjHKLhse3fcXrCMgcid6WoNzbmOsTcPZzAcCYeR1F3y0upzNnawUW0sOS09NkQszGa2G7W4vKL8DMfjRa0Krm4= 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=LccxYKVm; 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="LccxYKVm" 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=ZOrLeRsxXqRUJ6gehZ66R9YVLXpaEjUsUblOHhnv5e0=; b=LccxYKVmBmszDC91o5SVKRV0og UocEreEF/ChiPaVtW74IZnrODdu37ArPSTh9wK3OfNwq58KtJwnNclsC3ZRZk/x5IB6uwgSyuhuPx jC5IdTt1I1aqFzTwhslQtIoeLyYnFL6Tj1ovod4qpQnou35OLAE2Z4D71J2Rpi2BssT7WoVnz6SIS baK4Zhu5f6ZynM1xUQi7P1BfItuZwpAnWwE8UhLmZTfTGRRheqhNY6vDguLTuECzuZ22vZKzuVK/O jJSQMsZk+hADg6el8bKUaOvuePn0f0MmR0QXPu3KeePxcYUwDDNAzyFNDE7yoK0qq6l8g1aMC4d04 SiPbqpQQ==; Received: from 77-249-17-252.cable.dynamic.v4.ziggo.nl ([77.249.17.252] helo=noisy.programming.kicks-ass.net) by casper.infradead.org with esmtpsa (Exim 4.98.2 #2 (Red Hat Linux)) id 1vOvPo-0000000D2v4-1EgM; Fri, 28 Nov 2025 10:09:24 +0000 Received: by noisy.programming.kicks-ass.net (Postfix, from userid 1000) id C764C300230; Fri, 28 Nov 2025 11:09:23 +0100 (CET) Date: Fri, 28 Nov 2025 11:09:23 +0100 From: Peter Zijlstra To: Randy Dunlap Cc: linux-kernel@vger.kernel.org, Andrew Morton , Thomas Gleixner , Ingo Molnar , Will Deacon , Waiman Long Subject: Re: [PATCH] local_lock: fix all kernel-doc warnings Message-ID: <20251128100923.GH3245006@noisy.programming.kicks-ass.net> References: <20251128065925.917917-1-rdunlap@infradead.org> 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: <20251128065925.917917-1-rdunlap@infradead.org> On Thu, Nov 27, 2025 at 10:59:25PM -0800, Randy Dunlap wrote: > Modify kernel-doc comments in local_lock.h to prevent warnings: > > Warning: include/linux/local_lock.h:9 function parameter 'lock' not > described in 'local_lock_init' > Warning: include/linux/local_lock.h:56 function parameter 'lock' not > described in 'local_trylock_init' > Warning: include/linux/local_lock.h:56 expecting prototype for > local_lock_init(). Prototype was for local_trylock_init() instead > > Signed-off-by: Randy Dunlap Thanks!