aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ackvec.h
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2012-07-10 06:55:09 -0400
committerDavid S. Miller <davem@davemloft.net>2012-07-11 02:13:45 -0400
commit2c53040f018b6c36a46eec75b9b937aaa5f78e6d (patch)
treef77d987c380f78daf40838688a5f49bb4ab065ee /net/dccp/ackvec.h
parenta55b138b1da3d25c04f66f8df03d659dfd46c950 (diff)
net: Fix (nearly-)kernel-doc comments for various functions
Fix incorrect start markers, wrapped summary lines, missing section breaks, incorrect separators, and some name mismatches. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ackvec.h')
-rw-r--r--net/dccp/ackvec.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/net/dccp/ackvec.h b/net/dccp/ackvec.h
index e2ab0627a5ff..a269aa7f7923 100644
--- a/net/dccp/ackvec.h
+++ b/net/dccp/ackvec.h
@@ -50,7 +50,8 @@ static inline u8 dccp_ackvec_state(const u8 *cell)
50 return *cell & ~DCCPAV_MAX_RUNLEN; 50 return *cell & ~DCCPAV_MAX_RUNLEN;
51} 51}
52 52
53/** struct dccp_ackvec - Ack Vector main data structure 53/**
54 * struct dccp_ackvec - Ack Vector main data structure
54 * 55 *
55 * This implements a fixed-size circular buffer within an array and is largely 56 * This implements a fixed-size circular buffer within an array and is largely
56 * based on Appendix A of RFC 4340. 57 * based on Appendix A of RFC 4340.
@@ -76,7 +77,8 @@ struct dccp_ackvec {
76 struct list_head av_records; 77 struct list_head av_records;
77}; 78};
78 79
79/** struct dccp_ackvec_record - Records information about sent Ack Vectors 80/**
81 * struct dccp_ackvec_record - Records information about sent Ack Vectors
80 * 82 *
81 * These list entries define the additional information which the HC-Receiver 83 * These list entries define the additional information which the HC-Receiver
82 * keeps about recently-sent Ack Vectors; again refer to RFC 4340, Appendix A. 84 * keeps about recently-sent Ack Vectors; again refer to RFC 4340, Appendix A.
@@ -121,6 +123,7 @@ static inline bool dccp_ackvec_is_empty(const struct dccp_ackvec *av)
121 * @len: length of @vec 123 * @len: length of @vec
122 * @nonce: whether @vec had an ECN nonce of 0 or 1 124 * @nonce: whether @vec had an ECN nonce of 0 or 1
123 * @node: FIFO - arranged in descending order of ack_ackno 125 * @node: FIFO - arranged in descending order of ack_ackno
126 *
124 * This structure is used by CCIDs to access Ack Vectors in a received skb. 127 * This structure is used by CCIDs to access Ack Vectors in a received skb.
125 */ 128 */
126struct dccp_ackvec_parsed { 129struct dccp_ackvec_parsed {