From nobody Sat Apr 18 12:54:22 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 1B78133A6F7 for ; Sat, 28 Feb 2026 07:17:12 +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=1772263037; cv=none; b=j3zV6G5Ly2EzH98nAOStGt2tqTcPc5uJVuOq5xOQ8z1p0GuiuY41WUqN/zjDxHzScQ8pi0ulbdPM93Fhrc/JfUrCjvTV07sBswYloNJfIPN5MuyGzzp+wm1QRyls6LVdbEc2f0iSekcl+ZQHoo4LDLwgbGEZbOMDlGRT4bURFSU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772263037; c=relaxed/simple; bh=msmVYDKubAL84vz6hTcTshjN5rZDe4E5wkW3OXyiPGk=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=FWaiZhPZcCZJTAkVESK4Ci71A06BXP3oM/ilbmCJ8dHQ0oan3vQ3zvcGNHHt7HG9Z7xCiMb5/Gijp4V1Rk3om2sD3UlWrpqrM1zJQXWLl+z60r/XzOyjHQg+73TkQNFX0pHqvPBDDPrnHrMMIjrSLEjbpcsLqyuZyltsAUfZhQs= 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=v7Ubura/; 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=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="v7Ubura/" 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=b/cLzNnhIbgBR6IVDRYcdSQtlFPnyrpOQTCELZ0RddQ=; b=v7Ubura/ACDFSdvjxj5kz3hd5G 240nK3iHuu2ggn4LFYHc90LHUWAtkM5vmDL2ioSlhjQutrUItjq50Qxz4I1kkdBPo9RAgrIvi0iux nAWO2xU+vOTCrRj5uTAQB9dfDrOdDuTEje0eDBrzEerLjimpuT0XaKsnYy19oXFArWBGiqSwpXkAX iwaYosrZGWtOij9Y2bx0V1rcGx2wm89g4PKkj/t73JPWn0k/mdXYiSVVzRI+qaQXcNJYTDoORj/5a z/zC1fP2Cc8rqrFBcGWq86qJEsbBRIVaFT6+O096k0/d43VqJntVG/tbxH0JZd4cv7Zq5I80Xw8/F KFXmlfVA==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.98.2 #2 (Red Hat Linux)) id 1vwEZb-00000009bfG-2wO8; Sat, 28 Feb 2026 07:17:11 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Andy Lutomirski , Thomas Gleixner , Vincenzo Frascino Subject: [PATCH] vdso/datapage: correct struct member kernel-doc Date: Fri, 27 Feb 2026 23:17:11 -0800 Message-ID: <20260228071711.2663851-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.53.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" Remove the "[]" array indicators from the struct member descriptions to avoid kernel-doc warnings. Warning: include/vdso/datapage.h:107 struct member 'basetime' not described in 'vdso_clock' Warning: include/vdso/datapage.h:107 struct member 'offset' not described in 'vdso_clock' Signed-off-by: Randy Dunlap --- Cc: Andy Lutomirski Cc: Thomas Gleixner Cc: Vincenzo Frascino include/vdso/datapage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20260205.orig/include/vdso/datapage.h +++ linux-next-20260205/include/vdso/datapage.h @@ -80,8 +80,8 @@ struct vdso_timestamp { * @mask: clocksource mask * @mult: clocksource multiplier * @shift: clocksource shift - * @basetime[clock_id]: basetime per clock_id - * @offset[clock_id]: time namespace offset per clock_id + * @basetime: basetime per clock_id + * @offset: time namespace offset per clock_id * * See also struct vdso_time_data for basic access and ordering informatio= n as * struct vdso_clock is used there.