Commit b51cd7c8 authored by Andrew Lunn's avatar Andrew Lunn Committed by David S. Miller

net: ipv6: kerneldoc fixes

Simple fixes which require no deep knowledge of the code.

Cc: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Cc: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3628e3cb
...@@ -1232,7 +1232,6 @@ static void ipv6_renew_option(int renewtype, ...@@ -1232,7 +1232,6 @@ static void ipv6_renew_option(int renewtype,
* @opt: original options * @opt: original options
* @newtype: option type to replace in @opt * @newtype: option type to replace in @opt
* @newopt: new option of type @newtype to replace (user-mem) * @newopt: new option of type @newtype to replace (user-mem)
* @newoptlen: length of @newopt
* *
* Returns a new set of options which is a copy of @opt with the * Returns a new set of options which is a copy of @opt with the
* option type @newtype replaced with @newopt. * option type @newtype replaced with @newopt.
......
...@@ -1118,6 +1118,7 @@ static int ip6_dst_lookup_tail(struct net *net, const struct sock *sk, ...@@ -1118,6 +1118,7 @@ static int ip6_dst_lookup_tail(struct net *net, const struct sock *sk,
/** /**
* ip6_dst_lookup - perform route lookup on flow * ip6_dst_lookup - perform route lookup on flow
* @net: Network namespace to perform lookup in
* @sk: socket which provides route info * @sk: socket which provides route info
* @dst: pointer to dst_entry * for result * @dst: pointer to dst_entry * for result
* @fl6: flow to lookup * @fl6: flow to lookup
...@@ -1136,6 +1137,7 @@ EXPORT_SYMBOL_GPL(ip6_dst_lookup); ...@@ -1136,6 +1137,7 @@ EXPORT_SYMBOL_GPL(ip6_dst_lookup);
/** /**
* ip6_dst_lookup_flow - perform route lookup on flow with ipsec * ip6_dst_lookup_flow - perform route lookup on flow with ipsec
* @net: Network namespace to perform lookup in
* @sk: socket which provides route info * @sk: socket which provides route info
* @fl6: flow to lookup * @fl6: flow to lookup
* @final_dst: final destination address for ipsec lookup * @final_dst: final destination address for ipsec lookup
...@@ -1202,11 +1204,11 @@ EXPORT_SYMBOL_GPL(ip6_sk_dst_lookup_flow); ...@@ -1202,11 +1204,11 @@ EXPORT_SYMBOL_GPL(ip6_sk_dst_lookup_flow);
* @skb: Packet for which lookup is done * @skb: Packet for which lookup is done
* @dev: Tunnel device * @dev: Tunnel device
* @net: Network namespace of tunnel device * @net: Network namespace of tunnel device
* @sk: Socket which provides route info * @sock: Socket which provides route info
* @saddr: Memory to store the src ip address * @saddr: Memory to store the src ip address
* @info: Tunnel information * @info: Tunnel information
* @protocol: IP protocol * @protocol: IP protocol
* @use_cahce: Flag to enable cache usage * @use_cache: Flag to enable cache usage
* This function performs a route lookup on a tunnel * This function performs a route lookup on a tunnel
* *
* It returns a valid dst pointer and stores src address to be used in * It returns a valid dst pointer and stores src address to be used in
......
...@@ -124,8 +124,12 @@ static struct net_device_stats *ip6_get_stats(struct net_device *dev) ...@@ -124,8 +124,12 @@ static struct net_device_stats *ip6_get_stats(struct net_device *dev)
return &dev->stats; return &dev->stats;
} }
#define for_each_ip6_tunnel_rcu(start) \
for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
/** /**
* ip6_tnl_lookup - fetch tunnel matching the end-point addresses * ip6_tnl_lookup - fetch tunnel matching the end-point addresses
* @net: network namespace
* @link: ifindex of underlying interface * @link: ifindex of underlying interface
* @remote: the address of the tunnel exit-point * @remote: the address of the tunnel exit-point
* @local: the address of the tunnel entry-point * @local: the address of the tunnel entry-point
...@@ -136,9 +140,6 @@ static struct net_device_stats *ip6_get_stats(struct net_device *dev) ...@@ -136,9 +140,6 @@ static struct net_device_stats *ip6_get_stats(struct net_device *dev)
* else %NULL * else %NULL
**/ **/
#define for_each_ip6_tunnel_rcu(start) \
for (t = rcu_dereference(start); t; t = rcu_dereference(t->next))
static struct ip6_tnl * static struct ip6_tnl *
ip6_tnl_lookup(struct net *net, int link, ip6_tnl_lookup(struct net *net, int link,
const struct in6_addr *remote, const struct in6_addr *local) const struct in6_addr *remote, const struct in6_addr *local)
...@@ -302,8 +303,8 @@ static int ip6_tnl_create2(struct net_device *dev) ...@@ -302,8 +303,8 @@ static int ip6_tnl_create2(struct net_device *dev)
/** /**
* ip6_tnl_create - create a new tunnel * ip6_tnl_create - create a new tunnel
* @net: network namespace
* @p: tunnel parameters * @p: tunnel parameters
* @pt: pointer to new tunnel
* *
* Description: * Description:
* Create tunnel matching given parameters. * Create tunnel matching given parameters.
...@@ -351,6 +352,7 @@ static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p) ...@@ -351,6 +352,7 @@ static struct ip6_tnl *ip6_tnl_create(struct net *net, struct __ip6_tnl_parm *p)
/** /**
* ip6_tnl_locate - find or create tunnel matching given parameters * ip6_tnl_locate - find or create tunnel matching given parameters
* @net: network namespace
* @p: tunnel parameters * @p: tunnel parameters
* @create: != 0 if allowed to create new tunnel if no match found * @create: != 0 if allowed to create new tunnel if no match found
* *
......
...@@ -1059,6 +1059,9 @@ static int udpv6_pre_connect(struct sock *sk, struct sockaddr *uaddr, ...@@ -1059,6 +1059,9 @@ static int udpv6_pre_connect(struct sock *sk, struct sockaddr *uaddr,
* @sk: socket we are sending on * @sk: socket we are sending on
* @skb: sk_buff containing the filled-in UDP header * @skb: sk_buff containing the filled-in UDP header
* (checksum field must be zeroed out) * (checksum field must be zeroed out)
* @saddr: source address
* @daddr: destination address
* @len: length of packet
*/ */
static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb, static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
const struct in6_addr *saddr, const struct in6_addr *saddr,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment