Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: Fix non-kernel-doc comments with kernel-doc start marker

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Ben Hutchings and committed by
David S. Miller
ae86b9e3 2c53040f

+8 -17
+4 -10
net/ceph/pagelist.c
··· 72 72 } 73 73 EXPORT_SYMBOL(ceph_pagelist_append); 74 74 75 - /** 76 - * Allocate enough pages for a pagelist to append the given amount 75 + /* Allocate enough pages for a pagelist to append the given amount 77 76 * of data without without allocating. 78 77 * Returns: 0 on success, -ENOMEM on error. 79 78 */ ··· 94 95 } 95 96 EXPORT_SYMBOL(ceph_pagelist_reserve); 96 97 97 - /** 98 - * Free any pages that have been preallocated. 99 - */ 98 + /* Free any pages that have been preallocated. */ 100 99 int ceph_pagelist_free_reserve(struct ceph_pagelist *pl) 101 100 { 102 101 while (!list_empty(&pl->free_list)) { ··· 109 112 } 110 113 EXPORT_SYMBOL(ceph_pagelist_free_reserve); 111 114 112 - /** 113 - * Create a truncation point. 114 - */ 115 + /* Create a truncation point. */ 115 116 void ceph_pagelist_set_cursor(struct ceph_pagelist *pl, 116 117 struct ceph_pagelist_cursor *c) 117 118 { ··· 119 124 } 120 125 EXPORT_SYMBOL(ceph_pagelist_set_cursor); 121 126 122 - /** 123 - * Truncate a pagelist to the given point. Move extra pages to reserve. 127 + /* Truncate a pagelist to the given point. Move extra pages to reserve. 124 128 * This won't sleep. 125 129 * Returns: 0 on success, 126 130 * -EINVAL if the pagelist doesn't match the trunc point pagelist
+1 -2
net/dcb/dcbnl.c
··· 28 28 #include <linux/module.h> 29 29 #include <net/sock.h> 30 30 31 - /** 32 - * Data Center Bridging (DCB) is a collection of Ethernet enhancements 31 + /* Data Center Bridging (DCB) is a collection of Ethernet enhancements 33 32 * intended to allow network traffic with differing requirements 34 33 * (highly reliable, no drops vs. best effort vs. low latency) to operate 35 34 * and co-exist on Ethernet. Current DCB features are:
+1 -2
net/ipv4/tcp.c
··· 3310 3310 3311 3311 #endif 3312 3312 3313 - /** 3314 - * Each Responder maintains up to two secret values concurrently for 3313 + /* Each Responder maintains up to two secret values concurrently for 3315 3314 * efficient secret rollover. Each secret value has 4 states: 3316 3315 * 3317 3316 * Generating. (tcp_secret_generating != tcp_secret_primary)
+2 -3
net/tipc/socket.c
··· 1699 1699 return put_user(sizeof(value), ol); 1700 1700 } 1701 1701 1702 - /** 1703 - * Protocol switches for the various types of TIPC sockets 1704 - */ 1702 + /* Protocol switches for the various types of TIPC sockets */ 1703 + 1705 1704 static const struct proto_ops msg_ops = { 1706 1705 .owner = THIS_MODULE, 1707 1706 .family = AF_TIPC,