Home
last modified time | relevance | path

Searched refs:ms (Results 1 – 4 of 4) sorted by relevance

/net/mac80211/
Drc80211_minstrel_ht_debugfs.c22 struct minstrel_debugfs_info *ms; in minstrel_stats_read() local
24 ms = file->private_data; in minstrel_stats_read()
25 return simple_read_from_buffer(buf, len, ppos, ms->buf, ms->len); in minstrel_stats_read()
148 struct minstrel_debugfs_info *ms; in minstrel_ht_stats_open() local
152 ms = kmalloc(32768, GFP_KERNEL); in minstrel_ht_stats_open()
153 if (!ms) in minstrel_ht_stats_open()
156 file->private_data = ms; in minstrel_ht_stats_open()
157 p = ms->buf; in minstrel_ht_stats_open()
179 ms->len = p - ms->buf; in minstrel_ht_stats_open()
180 WARN_ON(ms->len + sizeof(*ms) > 32768); in minstrel_ht_stats_open()
[all …]
Dmlme.c3763 u32 tu, ms; in ieee80211_rx_mgmt_assoc_resp() local
3765 ms = tu * 1024 / 1000; in ieee80211_rx_mgmt_assoc_resp()
3768 mgmt->sa, tu, ms); in ieee80211_rx_mgmt_assoc_resp()
3769 assoc_data->timeout = jiffies + msecs_to_jiffies(ms); in ieee80211_rx_mgmt_assoc_resp()
3771 if (ms > IEEE80211_ASSOC_TIMEOUT) in ieee80211_rx_mgmt_assoc_resp()
/net/netfilter/ipvs/
Dip_vs_sync.c304 sb_dequeue(struct netns_ipvs *ipvs, struct ipvs_master_sync_state *ms) in sb_dequeue() argument
309 if (list_empty(&ms->sync_queue)) { in sb_dequeue()
313 sb = list_entry(ms->sync_queue.next, struct ip_vs_sync_buff, in sb_dequeue()
316 ms->sync_queue_len--; in sb_dequeue()
317 if (!ms->sync_queue_len) in sb_dequeue()
318 ms->sync_queue_delay = 0; in sb_dequeue()
363 struct ipvs_master_sync_state *ms) in sb_queue_tail() argument
365 struct ip_vs_sync_buff *sb = ms->sync_buff; in sb_queue_tail()
369 ms->sync_queue_len < sysctl_sync_qlen_max(ipvs)) { in sb_queue_tail()
370 if (!ms->sync_queue_len) in sb_queue_tail()
[all …]
/net/netfilter/
Dnf_tables_api.c4111 u64 ms = be64_to_cpu(nla_get_be64(nla)); in nf_msecs_to_jiffies64() local
4115 if (ms >= max) in nf_msecs_to_jiffies64()
4118 ms *= NSEC_PER_MSEC; in nf_msecs_to_jiffies64()
4119 *result = nsecs_to_jiffies64(ms); in nf_msecs_to_jiffies64()