From patchwork Fri Oct 25 07:02:29 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: George Guo X-Patchwork-Id: 13850139 X-Patchwork-Delegate: kuba@kernel.org Received: from out-187.mta0.migadu.com (out-187.mta0.migadu.com [91.218.175.187]) (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 E10DD18DF8F for ; Fri, 25 Oct 2024 07:02:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.187 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729839768; cv=none; b=EZhgxFc2GdO8++rd2dzgUINhcrgCvQdWoYDQSoEMX45rMK/NG3c8SmN03ScTF24xP5xAylM18BoKvr7tD9jDBIK3J59uxSrK9x5/Cm+TGLyGtB8CfJmkNhC1WMfwJa7HWNFypC6EhvVE3PRwIYs5/b6fkA2QRz3C23CkHfdkzaE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729839768; c=relaxed/simple; bh=GYTKW8AR6kJETWDLmU3RwLAkZzS9wj4woVPeGpF5vr4=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=j28mdYRpYPHam4il9sVUJnDxx98SE1aW8aX3M30vxdmLefHX5jMhkIqGXC9duezU9MAbz9kPHbEIT4Hv7OCCdX9k1oh7v6jrf72a7mLPhsS70cpMcNc3tYEglxMYz1X2UzCQ0Fu4hIBd46cym2kdrsrkqQd1VOopuqJ9AhvLuJk= 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=RQ7meULe; arc=none smtp.client-ip=91.218.175.187 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="RQ7meULe" 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=1729839764; 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: in-reply-to:in-reply-to:references:references; bh=6BJIqE0qSpciuGWzdnF6o/Z2xAKQwtHlYnbvWaPa6KI=; b=RQ7meULegmHYP1ijBo9675lMljUuAoc/gbOxFT0BmKODVHyGvOy9Fxe4Xr9SiK/3Nf3xv8 62L3Rd9PMm4IsPlkshOpEJSlt70CfFLreb6a5DcTKbQfhkiGxG1t238CDoGhaWZcggEjJA iiiRNnLlpbVLmhJ725F2w6kzfV7qPx4= From: George Guo To: pabeni@redhat.com Cc: davem@davemloft.net, dongtai.guo@linux.dev, edumazet@google.com, guodongtai@kylinos.cn, kuba@kernel.org, linux-kernel@vger.kernel.org, linux-security-module@vger.kernel.org, netdev@vger.kernel.org, paul@paul-moore.com Subject: [PATCH 1/1] netlabel: Add missing comment to struct field Date: Fri, 25 Oct 2024 15:02:29 +0800 Message-Id: <20241025070229.1006241-1-dongtai.guo@linux.dev> In-Reply-To: <0667f18b-2228-4201-9da7-0e3536bae321@redhat.com> References: <0667f18b-2228-4201-9da7-0e3536bae321@redhat.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Migadu-Flow: FLOW_OUT X-Patchwork-Delegate: kuba@kernel.org 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 --- 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