Home
last modified time | relevance | path

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

/linux/net/hsr/
H A Dhsr_framereg.c754 unsigned long tdiff; in hsr_get_node_data() local
762 tdiff = jiffies - node->time_in[HSR_PT_SLAVE_A]; in hsr_get_node_data()
766 else if (tdiff > msecs_to_jiffies(INT_MAX)) in hsr_get_node_data()
770 *if1_age = jiffies_to_msecs(tdiff); in hsr_get_node_data()
772 tdiff = jiffies - node->time_in[HSR_PT_SLAVE_B]; in hsr_get_node_data()
776 else if (tdiff > msecs_to_jiffies(INT_MAX)) in hsr_get_node_data()
780 *if2_age = jiffies_to_msecs(tdiff); in hsr_get_node_data()
/linux/Documentation/translations/zh_CN/filesystems/
H A Dgfs2-glocks.rst208 tdiff 该请求的耗时
/linux/drivers/gpu/drm/tilcdc/
H A Dtilcdc_crtc.c620 s64 tdiff; in tilcdc_crtc_update_fb() local
626 tdiff = ktime_to_us(ktime_sub(next_vblank, ktime_get())); in tilcdc_crtc_update_fb()
628 if (tdiff < TILCDC_VBLANK_SAFETY_THRESHOLD_US) in tilcdc_crtc_update_fb()
/linux/tools/testing/selftests/filesystems/epoll/
H A Depoll_wakeup_test.c3424 unsigned long long tdiff; in TEST() local
3441 tdiff = msecs(); in TEST()
3443 tdiff = msecs() - tdiff; in TEST()
3445 EXPECT_GE(tdiff, cfg_delay_ms); in TEST()