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

net: datagram: fix some kernel-doc markups

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>

authored by

Mauro Carvalho Chehab and committed by
Jakub Kicinski
c1639be9 69280228

+9 -8
+1 -1
net/core/datagram.c
··· 709 709 EXPORT_SYMBOL(zerocopy_sg_from_iter); 710 710 711 711 /** 712 - * skb_copy_and_csum_datagram_iter - Copy datagram to an iovec iterator 712 + * skb_copy_and_csum_datagram - Copy datagram to an iovec iterator 713 713 * and update a checksum. 714 714 * @skb: buffer to copy 715 715 * @offset: offset in the buffer to start copying from
+2 -2
net/core/dev.c
··· 6919 6919 EXPORT_SYMBOL(netdev_has_upper_dev); 6920 6920 6921 6921 /** 6922 - * netdev_has_upper_dev_all - Check if device is linked to an upper device 6922 + * netdev_has_upper_dev_all_rcu - Check if device is linked to an upper device 6923 6923 * @dev: device 6924 6924 * @upper_dev: upper device to check 6925 6925 * ··· 8157 8157 8158 8158 8159 8159 /** 8160 - * netdev_lower_change - Dispatch event about lower device state change 8160 + * netdev_lower_state_changed - Dispatch event about lower device state change 8161 8161 * @lower_dev: device 8162 8162 * @lower_state_info: state to dispatch 8163 8163 *
+1 -1
net/core/skbuff.c
··· 842 842 #endif 843 843 844 844 /** 845 - * consume_stateless_skb - free an skbuff, assuming it is stateless 845 + * __consume_stateless_skb - free an skbuff, assuming it is stateless 846 846 * @skb: buffer to free 847 847 * 848 848 * Alike consume_skb(), but this variant assumes that this is the last
+3 -3
net/ethernet/eth.c
··· 272 272 EXPORT_SYMBOL(eth_header_cache_update); 273 273 274 274 /** 275 - * eth_header_parser_protocol - extract protocol from L2 header 275 + * eth_header_parse_protocol - extract protocol from L2 header 276 276 * @skb: packet to extract protocol from 277 277 */ 278 278 __be16 eth_header_parse_protocol(const struct sk_buff *skb) ··· 523 523 EXPORT_SYMBOL(eth_platform_get_mac_address); 524 524 525 525 /** 526 - * Obtain the MAC address from an nvmem cell named 'mac-address' associated 527 - * with given device. 526 + * nvmem_get_mac_address - Obtain the MAC address from an nvmem cell named 527 + * 'mac-address' associated with given device. 528 528 * 529 529 * @dev: Device with which the mac-address cell is associated. 530 530 * @addrbuf: Buffer to which the MAC address will be copied on success.
+2 -1
net/sunrpc/rpc_pipe.c
··· 781 781 } 782 782 783 783 /** 784 - * rpc_mkpipe - make an rpc_pipefs file for kernel<->userspace communication 784 + * rpc_mkpipe_dentry - make an rpc_pipefs file for kernel<->userspace 785 + * communication 785 786 * @parent: dentry of directory to create new "pipe" in 786 787 * @name: name of pipe 787 788 * @private: private data to associate with the pipe, for the caller's use