diff options
author | Andrew Lunn <andrew@lunn.ch> | 2020-07-13 01:15:00 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-13 17:20:39 -0700 |
commit | d0b1101bb5c1224881bb58460311d458ff1350d0 (patch) | |
tree | 9d838cbb97db513476bc82ca43aeb6d4feb3c0ed /net/dccp/options.c | |
parent | 8842500dd056b8ef9da77ba2bfc3275fd7e0a98f (diff) | |
download | linux-d0b1101bb5c1224881bb58460311d458ff1350d0.tar.gz linux-d0b1101bb5c1224881bb58460311d458ff1350d0.tar.bz2 linux-d0b1101bb5c1224881bb58460311d458ff1350d0.zip |
net: dccp: kerneldoc fixes
Simple fixes which require no deep knowledge of the code.
Cc: Gerrit Renker <gerrit@erg.abdn.ac.uk>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/options.c')
-rw-r--r-- | net/dccp/options.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/dccp/options.c b/net/dccp/options.c index 3b42f5c6a63d..daa9eed92646 100644 --- a/net/dccp/options.c +++ b/net/dccp/options.c @@ -43,6 +43,7 @@ u64 dccp_decode_value_var(const u8 *bf, const u8 len) * dccp_parse_options - Parse DCCP options present in @skb * @sk: client|server|listening dccp socket (when @dreq != NULL) * @dreq: request socket to use during connection setup, or NULL + * @skb: frame to parse */ int dccp_parse_options(struct sock *sk, struct dccp_request_sock *dreq, struct sk_buff *skb) @@ -471,6 +472,8 @@ static int dccp_insert_option_ackvec(struct sock *sk, struct sk_buff *skb) /** * dccp_insert_option_mandatory - Mandatory option (5.8.2) + * @skb: frame into which to insert option + * * Note that since we are using skb_push, this function needs to be called * _after_ inserting the option it is supposed to influence (stack order). */ @@ -486,6 +489,7 @@ int dccp_insert_option_mandatory(struct sk_buff *skb) /** * dccp_insert_fn_opt - Insert single Feature-Negotiation option into @skb + * @skb: frame to insert feature negotiation option into * @type: %DCCPO_CHANGE_L, %DCCPO_CHANGE_R, %DCCPO_CONFIRM_L, %DCCPO_CONFIRM_R * @feat: one out of %dccp_feature_numbers * @val: NN value or SP array (preferred element first) to copy |