函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:include\net\udp.h Create Date:2022-07-27 20:45:37
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:udp_flow_src_port

函数原型:static inline __be16 udp_flow_src_port(struct net *net, struct sk_buff *skb, int min, int max, bool use_eth)

返回类型:__be16

参数:

类型参数名称
struct net *net
struct sk_buff *skb
intmin
intmax
booluse_eth
215  如果min大于等于max
217  inet_get_local_port_range(net, & min, & max)
220  hash等于skb_get_hash(skb)
221  如果此条件成立可能性小(为编译器优化)(!hash)则
222  如果use_eth
228  否则
232  hash等于udp_flow_hashrnd()
241  hash异或等于hash左移16位
243  返回:htons((((u64)hash * (max - min)) >> 32) + min)