net: datagram: fix some kernel-doc markups
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Mon, 16 Nov 2020 10:17:58 +0000 (11:17 +0100)
committerJakub Kicinski <kuba@kernel.org>
Tue, 17 Nov 2020 22:15:03 +0000 (14:15 -0800)
Some identifiers have different names between their prototypes
and the kernel-doc markup.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Reviewed-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/core/datagram.c
net/core/dev.c
net/core/skbuff.c
net/ethernet/eth.c
net/sunrpc/rpc_pipe.c

index 9fcaa54..81809fa 100644 (file)
@@ -709,7 +709,7 @@ int zerocopy_sg_from_iter(struct sk_buff *skb, struct iov_iter *from)
 EXPORT_SYMBOL(zerocopy_sg_from_iter);
 
 /**
- *     skb_copy_and_csum_datagram_iter - Copy datagram to an iovec iterator
+ *     skb_copy_and_csum_datagram - Copy datagram to an iovec iterator
  *          and update a checksum.
  *     @skb: buffer to copy
  *     @offset: offset in the buffer to start copying from
index 60d325b..4bfdcd6 100644 (file)
@@ -6919,7 +6919,7 @@ bool netdev_has_upper_dev(struct net_device *dev,
 EXPORT_SYMBOL(netdev_has_upper_dev);
 
 /**
- * netdev_has_upper_dev_all - Check if device is linked to an upper device
+ * netdev_has_upper_dev_all_rcu - Check if device is linked to an upper device
  * @dev: device
  * @upper_dev: upper device to check
  *
@@ -8157,7 +8157,7 @@ EXPORT_SYMBOL(netdev_lower_dev_get_private);
 
 
 /**
- * netdev_lower_change - Dispatch event about lower device state change
+ * netdev_lower_state_changed - Dispatch event about lower device state change
  * @lower_dev: device
  * @lower_state_info: state to dispatch
  *
index c9a5a3c..ffe3dcc 100644 (file)
@@ -842,7 +842,7 @@ EXPORT_SYMBOL(consume_skb);
 #endif
 
 /**
- *     consume_stateless_skb - free an skbuff, assuming it is stateless
+ *     __consume_stateless_skb - free an skbuff, assuming it is stateless
  *     @skb: buffer to free
  *
  *     Alike consume_skb(), but this variant assumes that this is the last
index dac6518..4106373 100644 (file)
@@ -272,7 +272,7 @@ void eth_header_cache_update(struct hh_cache *hh,
 EXPORT_SYMBOL(eth_header_cache_update);
 
 /**
- * eth_header_parser_protocol - extract protocol from L2 header
+ * eth_header_parse_protocol - extract protocol from L2 header
  * @skb: packet to extract protocol from
  */
 __be16 eth_header_parse_protocol(const struct sk_buff *skb)
@@ -523,8 +523,8 @@ int eth_platform_get_mac_address(struct device *dev, u8 *mac_addr)
 EXPORT_SYMBOL(eth_platform_get_mac_address);
 
 /**
- * Obtain the MAC address from an nvmem cell named 'mac-address' associated
- * with given device.
+ * nvmem_get_mac_address - Obtain the MAC address from an nvmem cell named
+ * 'mac-address' associated with given device.
  *
  * @dev:       Device with which the mac-address cell is associated.
  * @addrbuf:   Buffer to which the MAC address will be copied on success.
index eadc0ed..8241f5a 100644 (file)
@@ -781,7 +781,8 @@ static int rpc_rmdir_depopulate(struct dentry *dentry,
 }
 
 /**
- * rpc_mkpipe - make an rpc_pipefs file for kernel<->userspace communication
+ * rpc_mkpipe_dentry - make an rpc_pipefs file for kernel<->userspace
+ *                    communication
  * @parent: dentry of directory to create new "pipe" in
  * @name: name of pipe
  * @private: private data to associate with the pipe, for the caller's use