From patchwork Mon Sep 23 08:07:33 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: George Guo X-Patchwork-Id: 13809378 X-Patchwork-Delegate: paul@paul-moore.com Received: from out-176.mta1.migadu.com (out-176.mta1.migadu.com [95.215.58.176]) (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 40EB3DDA8 for ; Mon, 23 Sep 2024 08:08:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.176 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727078886; cv=none; b=Bt5tK5f2rdSsUuDJmcdNsnlsnIwkVmGQDezBR6Ho4OqYxZDs00G9t1MYA19oFyTs2RZt1GY7yPZOGmmfNpudlVtfdb7Jc3cO1Dz46UAxm93Xv5WYxdhxQrweOpFdnsnKGo23vrLHNwz3CL3phqAVszAhkbog6nm/MaCpuYLaY9s= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727078886; c=relaxed/simple; bh=GYTKW8AR6kJETWDLmU3RwLAkZzS9wj4woVPeGpF5vr4=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=ojSq6IcyD0S/p0h1vCewXvjIaOq2XyxJMsnj9GPaEI9TYJrhDsFaNQ1fJhhNw97U9NGUh3AR4dHyJvBdjmshRJssh8FMvy8sSqvZQ1gOunXquAco+ukGk6201Jg8Ox59FiSeJbL/aU9x0Z86HhMXHUxzVVMFMPC5a52PGNY/LtI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=qENTfuPf; arc=none smtp.client-ip=95.215.58.176 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="qENTfuPf" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1727078882; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=6BJIqE0qSpciuGWzdnF6o/Z2xAKQwtHlYnbvWaPa6KI=; b=qENTfuPfMJurs6xmfNTYf9DqN8OvWg1BSUf9tlI3s1Lj3Od1DdPP2K4ZbDGalt3wuXhdse 7U6a57+ltXbAnqj4B2ub2V9dZhG3qZwDuvragkvmQOCMqMFlV/VxXvD9cCWUfrj5+DupZy Y1aUVe0134iZnn5edYjyYQEMrgO4mZs= From: George Guo To: paul@paul-moore.com, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com Cc: netdev@vger.kernel.org, linux-security-module@vger.kernel.org, linux-kernel@vger.kernel.org, George Guo Subject: [PATCH 1/1] netlabel: Add missing comment to struct field Date: Mon, 23 Sep 2024 16:07:33 +0800 Message-Id: <20240923080733.2914087-1-dongtai.guo@linux.dev> Precedence: bulk X-Mailing-List: linux-security-module@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT From: George Guo add a comment to doi_remove in struct netlbl_calipso_ops. Flagged by ./scripts/kernel-doc -none. Signed-off-by: George Guo Acked-by: Paul Moore --- include/net/netlabel.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/net/netlabel.h b/include/net/netlabel.h index 529160f76cac..4afd934b1238 100644 --- a/include/net/netlabel.h +++ b/include/net/netlabel.h @@ -208,6 +208,7 @@ struct netlbl_lsm_secattr { * struct netlbl_calipso_ops - NetLabel CALIPSO operations * @doi_add: add a CALIPSO DOI * @doi_free: free a CALIPSO DOI + * @doi_remove: remove a CALIPSO DOI * @doi_getdef: returns a reference to a DOI * @doi_putdef: releases a reference of a DOI * @doi_walk: enumerate the DOI list