/linux-4.4.14/net/rds/ |
D | iw_ring.c | 157 u32 rds_iw_ring_completed(struct rds_iw_work_ring *ring, u32 wr_id, u32 oldest) in rds_iw_ring_completed() argument 161 if (oldest <= (unsigned long long)wr_id) in rds_iw_ring_completed() 162 ret = (unsigned long long)wr_id - oldest + 1; in rds_iw_ring_completed() 164 ret = ring->w_nr - oldest + (unsigned long long)wr_id + 1; in rds_iw_ring_completed() 167 wr_id, oldest); in rds_iw_ring_completed()
|
D | ib_ring.c | 156 u32 rds_ib_ring_completed(struct rds_ib_work_ring *ring, u32 wr_id, u32 oldest) in rds_ib_ring_completed() argument 160 if (oldest <= (unsigned long long)wr_id) in rds_ib_ring_completed() 161 ret = (unsigned long long)wr_id - oldest + 1; in rds_ib_ring_completed() 163 ret = ring->w_nr - oldest + (unsigned long long)wr_id + 1; in rds_ib_ring_completed() 166 wr_id, oldest); in rds_ib_ring_completed()
|
D | iw_send.c | 195 u32 oldest; in rds_iw_send_cq_comp_handler() local 233 oldest = rds_iw_ring_oldest(&ic->i_send_ring); in rds_iw_send_cq_comp_handler() 235 completed = rds_iw_ring_completed(&ic->i_send_ring, wc.wr_id, oldest); in rds_iw_send_cq_comp_handler() 238 send = &ic->i_sends[oldest]; in rds_iw_send_cq_comp_handler() 277 oldest = (oldest + 1) % ic->i_send_ring.w_nr; in rds_iw_send_cq_comp_handler()
|
D | ib_send.c | 246 u32 oldest; in rds_ib_send_cqe_handler() local 264 oldest = rds_ib_ring_oldest(&ic->i_send_ring); in rds_ib_send_cqe_handler() 268 oldest); in rds_ib_send_cqe_handler() 271 send = &ic->i_sends[oldest]; in rds_ib_send_cqe_handler() 291 oldest = (oldest + 1) % ic->i_send_ring.w_nr; in rds_ib_send_cqe_handler()
|
D | iw.h | 350 u32 rds_iw_ring_completed(struct rds_iw_work_ring *ring, u32 wr_id, u32 oldest);
|
D | ib.h | 392 u32 rds_ib_ring_completed(struct rds_ib_work_ring *ring, u32 wr_id, u32 oldest);
|
/linux-4.4.14/drivers/input/ |
D | input-mt.c | 197 struct input_mt_slot *oldest; in input_mt_report_pointer_emulation() local 203 oldest = NULL; in input_mt_report_pointer_emulation() 214 oldest = ps; in input_mt_report_pointer_emulation() 224 if (oldest) { in input_mt_report_pointer_emulation() 225 int x = input_mt_get_value(oldest, ABS_MT_POSITION_X); in input_mt_report_pointer_emulation() 226 int y = input_mt_get_value(oldest, ABS_MT_POSITION_Y); in input_mt_report_pointer_emulation() 232 int p = input_mt_get_value(oldest, ABS_MT_PRESSURE); in input_mt_report_pointer_emulation()
|
/linux-4.4.14/fs/ceph/ |
D | addr.c | 481 struct ceph_snap_context *snapc, *oldest; in writepage_nounlock() local 506 oldest = get_oldest_context(inode, &snap_size); in writepage_nounlock() 507 if (snapc->seq > oldest->seq) { in writepage_nounlock() 512 ceph_put_snap_context(oldest); in writepage_nounlock() 515 ceph_put_snap_context(oldest); in writepage_nounlock() 1030 struct ceph_snap_context *oldest = get_oldest_context(inode, NULL); in context_is_writeable_or_written() local 1031 int ret = !oldest || snapc->seq <= oldest->seq; in context_is_writeable_or_written() 1033 ceph_put_snap_context(oldest); in context_is_writeable_or_written() 1056 struct ceph_snap_context *snapc, *oldest; in ceph_update_writeable_page() local 1068 oldest = get_oldest_context(inode, NULL); in ceph_update_writeable_page() [all …]
|
/linux-4.4.14/net/netfilter/ |
D | nf_conntrack_ftp.c | 364 unsigned int i, oldest; in update_nl_seq() local 376 oldest = 0; in update_nl_seq() 378 oldest = 1; in update_nl_seq() 380 if (after(nl_seq, info->seq_aft_nl[dir][oldest])) in update_nl_seq() 381 info->seq_aft_nl[dir][oldest] = nl_seq; in update_nl_seq()
|
/linux-4.4.14/drivers/staging/rtl8723au/core/ |
D | rtw_mlme.c | 334 struct wlan_network *oldest = NULL; in rtw_get_oldest_wlan_network23a() local 342 if (!oldest || time_after(oldest->last_scanned, in rtw_get_oldest_wlan_network23a() 344 oldest = pwlan; in rtw_get_oldest_wlan_network23a() 348 return oldest; in rtw_get_oldest_wlan_network23a() 441 struct wlan_network *oldest = NULL; in rtw_update_scanned_network() local 456 if (!oldest || time_after(oldest->last_scanned, in rtw_update_scanned_network() 458 oldest = pnetwork; in rtw_update_scanned_network() 466 if (!oldest) { in rtw_update_scanned_network() 471 pnetwork = oldest; in rtw_update_scanned_network()
|
/linux-4.4.14/drivers/staging/rtl8712/ |
D | rtl871x_mlme.c | 307 struct wlan_network *oldest = NULL; in r8712_get_oldest_wlan_network() local 316 if (oldest == NULL || in r8712_get_oldest_wlan_network() 317 time_after((unsigned long)oldest->last_scanned, in r8712_get_oldest_wlan_network() 319 oldest = pwlan; in r8712_get_oldest_wlan_network() 323 return oldest; in r8712_get_oldest_wlan_network() 391 struct wlan_network *oldest = NULL; in update_scanned_network() local 403 if ((oldest == ((struct wlan_network *)0)) || in update_scanned_network() 404 time_after((unsigned long)oldest->last_scanned, in update_scanned_network() 406 oldest = pnetwork; in update_scanned_network() 417 pnetwork = oldest; in update_scanned_network()
|
/linux-4.4.14/net/ipv4/ |
D | tcp_metrics.c | 177 struct tcp_metrics_block *oldest; in tcpm_new() local 179 oldest = deref_locked(tcp_metrics_hash[hash].chain); in tcpm_new() 180 for (tm = deref_locked(oldest->tcpm_next); tm; in tcpm_new() 182 if (time_before(tm->tcpm_stamp, oldest->tcpm_stamp)) in tcpm_new() 183 oldest = tm; in tcpm_new() 185 tm = oldest; in tcpm_new()
|
D | route.c | 587 struct fib_nh_exception *fnhe, *oldest; in fnhe_oldest() local 589 oldest = rcu_dereference(hash->chain); in fnhe_oldest() 590 for (fnhe = rcu_dereference(oldest->fnhe_next); fnhe; in fnhe_oldest() 592 if (time_before(fnhe->fnhe_stamp, oldest->fnhe_stamp)) in fnhe_oldest() 593 oldest = fnhe; in fnhe_oldest() 595 fnhe_flush_routes(oldest); in fnhe_oldest() 596 return oldest; in fnhe_oldest()
|
/linux-4.4.14/Documentation/devicetree/bindings/c6x/ |
D | emifa.txt | 22 of the oldest command in the command FIFO. Setting this field to 255
|
/linux-4.4.14/drivers/staging/rtl8188eu/core/ |
D | rtw_mlme.c | 364 struct wlan_network *oldest = NULL; in rtw_get_oldest_wlan_network() local 377 if (oldest == NULL || time_after(oldest->last_scanned, pwlan->last_scanned)) in rtw_get_oldest_wlan_network() 378 oldest = pwlan; in rtw_get_oldest_wlan_network() 383 return oldest; in rtw_get_oldest_wlan_network() 449 struct wlan_network *oldest = NULL; in rtw_update_scanned_network() local 460 if ((oldest == ((struct wlan_network *)0)) || in rtw_update_scanned_network() 461 time_after(oldest->last_scanned, pnetwork->last_scanned)) in rtw_update_scanned_network() 462 oldest = pnetwork; in rtw_update_scanned_network() 470 pnetwork = oldest; in rtw_update_scanned_network()
|
/linux-4.4.14/drivers/net/wireless/ipw2x00/ |
D | libipw_rx.c | 1539 struct libipw_network *oldest = NULL; in libipw_process_probe_response() local 1590 if ((oldest == NULL) || in libipw_process_probe_response() 1591 time_before(target->last_scanned, oldest->last_scanned)) in libipw_process_probe_response() 1592 oldest = target; in libipw_process_probe_response() 1600 list_del(&oldest->list); in libipw_process_probe_response() 1601 target = oldest; in libipw_process_probe_response()
|
D | ipw2100.c | 2841 e = txq->oldest; in __ipw2100_tx_process() 2848 e = txq->oldest + frag_num; in __ipw2100_tx_process() 2902 i = txq->oldest; in __ipw2100_tx_process() 2923 if (txq->drv[txq->oldest].status.info.fields.txType != 0) in __ipw2100_tx_process() 2927 priv->net_dev->name, txq->oldest, packet->index); in __ipw2100_tx_process() 2960 if (txq->drv[txq->oldest].status.info.fields.txType != 1) in __ipw2100_tx_process() 2964 priv->net_dev->name, txq->oldest, packet->index); in __ipw2100_tx_process() 2983 txq->oldest = (e + 1) % txq->entries; in __ipw2100_tx_process() 4405 write_register(priv->net_dev, r, q->oldest); in bd_queue_initialize() 4516 priv->tx_queue.oldest = 0; in ipw2100_tx_initialize() [all …]
|
D | ipw2100.h | 197 u32 oldest; member
|
D | ipw2200.c | 7604 struct libipw_network *oldest = NULL; in ipw_associate() local 7608 if ((oldest == NULL) || in ipw_associate() 7609 (target->last_scanned < oldest->last_scanned)) in ipw_associate() 7610 oldest = target; in ipw_associate() 7614 list_del(&oldest->list); in ipw_associate() 7615 target = oldest; in ipw_associate()
|
/linux-4.4.14/Documentation/i2c/busses/ |
D | i2c-viapro | 68 Except for the oldest chips (VT82C596A/B, VT82C686A and most probably
|
/linux-4.4.14/Documentation/usb/ |
D | anchors.txt | 76 Returns the oldest anchored URB of an anchor. The URB is unanchored
|
/linux-4.4.14/drivers/net/ethernet/toshiba/ |
D | ps3_gelic_wireless.c | 1515 struct gelic_wl_scan_info *oldest = NULL; in gelic_wl_scan_complete_event() local 1588 oldest = NULL; in gelic_wl_scan_complete_event() 1597 if (!oldest || in gelic_wl_scan_complete_event() 1598 (target->last_scanned < oldest->last_scanned)) in gelic_wl_scan_complete_event() 1599 oldest = target; in gelic_wl_scan_complete_event() 1606 target = oldest; in gelic_wl_scan_complete_event()
|
/linux-4.4.14/drivers/staging/rtl8192u/ieee80211/ |
D | ieee80211_rx.c | 2391 struct ieee80211_network *oldest = NULL; in ieee80211_process_probe_response() local 2520 if ((oldest == NULL) || in ieee80211_process_probe_response() 2521 (target->last_scanned < oldest->last_scanned)) in ieee80211_process_probe_response() 2522 oldest = target; in ieee80211_process_probe_response() 2530 list_del(&oldest->list); in ieee80211_process_probe_response() 2531 target = oldest; in ieee80211_process_probe_response()
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | rtllib_rx.c | 2587 struct rtllib_network *oldest = NULL; in rtllib_process_probe_response() local 2673 if ((oldest == NULL) || in rtllib_process_probe_response() 2674 (target->last_scanned < oldest->last_scanned)) in rtllib_process_probe_response() 2675 oldest = target; in rtllib_process_probe_response() 2684 list_del(&oldest->list); in rtllib_process_probe_response() 2685 target = oldest; in rtllib_process_probe_response()
|
/linux-4.4.14/Documentation/hwmon/ |
D | adm1021 | 62 the oldest; it has the problem that it is not very well detectable. The
|
/linux-4.4.14/Documentation/vm/ |
D | zswap.txt | 68 cannot evict the oldest page, it can only reject new pages.
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | arm-boards | 3 ARM's oldest Linux-supported platform with connectors for different core
|
/linux-4.4.14/Documentation/ |
D | eisa.txt | 14 most EISA drivers are among the oldest Linux drivers so, as you can
|
/linux-4.4.14/Documentation/video4linux/ |
D | omap3isp.txt | 251 Send to user space the oldest data available in the internal buffer queue and
|
D | v4l2-framework.txt | 1055 reserved, then the oldest event will be dropped and the new one added. 1063 allocated. The merge() callback allows you to merge the oldest event payload 1064 into that of the second-oldest event payload. It is called when there are two
|
D | vivid.txt | 299 visible. For 50 Hz standards the top field is the oldest and the bottom field 301 is the oldest and the top field is the newest in time.
|
/linux-4.4.14/Documentation/trace/ |
D | ftrace.txt | 485 oldest event ts: The oldest timestamp in the buffer 812 the trace is reported, it shows the oldest events first, 814 oldest events). When the annotate option is set, it will 874 full. If "1" (default), the oldest events are 1711 entries. The newest data may overwrite the oldest data.
|
D | ring-buffer-design.txt | 61 overwrite the older data. This will lose the oldest events.
|
/linux-4.4.14/Documentation/locking/ |
D | ww-mutex-design.txt | 31 the oldest task) wins, and the one with the higher reservation id (i.e. the
|
/linux-4.4.14/Documentation/sound/oss/ |
D | README.OSS | 835 Spea and Reveal (note that Reveal makes other cards also). The oldest 1301 The oldest (Sierra Aria based) sound cards made by Diamond are not supported
|
/linux-4.4.14/Documentation/scsi/ |
D | ncr53c8xx.txt | 101 - sym53c8xx enhanced driver (a.k.a. 896 drivers) that drops support of oldest
|
/linux-4.4.14/Documentation/networking/ |
D | ip-sysctl.txt | 762 causes the oldest entry in the bucket to be removed to make room.
|