summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2023-06-12 10:14:04 -0400
committerChuck Lever <chuck.lever@oracle.com>2023-06-17 13:18:07 -0400
commit02cea33f56241819f72edbd8f470a45e720d9ca3 (patch)
tree639757c2de238a8cb1c200b9c3c50e0555264c88 /net
parentb55c63332e9a33833d3daedb83bc1fbbcfc00e1c (diff)
downloadlinux-stable-02cea33f56241819f72edbd8f470a45e720d9ca3.tar.gz
linux-stable-02cea33f56241819f72edbd8f470a45e720d9ca3.tar.bz2
linux-stable-02cea33f56241819f72edbd8f470a45e720d9ca3.zip
SUNRPC: Fix comments for transport class registration
The preceding block comment before svc_register_xprt_class() is not related to that function. While we're here, add proper documenting comments for these two publicly-visible functions. Reviewed-by: Jeff Layton <jlayton@kernel.org> Acked-by: Tom Talpey <tom@talpey.com> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/svc_xprt.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/net/sunrpc/svc_xprt.c b/net/sunrpc/svc_xprt.c
index 79b88889f073..5a3512bdfdce 100644
--- a/net/sunrpc/svc_xprt.c
+++ b/net/sunrpc/svc_xprt.c
@@ -74,6 +74,13 @@ static LIST_HEAD(svc_xprt_class_list);
* that no other thread will be using the transport or will
* try to set XPT_DEAD.
*/
+
+/**
+ * svc_reg_xprt_class - Register a server-side RPC transport class
+ * @xcl: New transport class to be registered
+ *
+ * Returns zero on success; otherwise a negative errno is returned.
+ */
int svc_reg_xprt_class(struct svc_xprt_class *xcl)
{
struct svc_xprt_class *cl;
@@ -96,6 +103,11 @@ out:
}
EXPORT_SYMBOL_GPL(svc_reg_xprt_class);
+/**
+ * svc_unreg_xprt_class - Unregister a server-side RPC transport class
+ * @xcl: Transport class to be unregistered
+ *
+ */
void svc_unreg_xprt_class(struct svc_xprt_class *xcl)
{
dprintk("svc: Removing svc transport class '%s'\n", xcl->xcl_name);