Home
last modified time | relevance | path

Searched refs:deferred (Results 1 – 25 of 85) sorted by relevance

1234

/linux/drivers/nfc/nfcmrvl/
H A Dusb.c33 struct usb_anchor deferred; member
216 usb_scuttle_anchored_urbs(&drv_data->deferred); in nfcmrvl_usb_nci_close()
243 usb_anchor_urb(urb, &drv_data->deferred); in nfcmrvl_usb_nci_send()
330 init_usb_anchor(&drv_data->deferred); in nfcmrvl_probe()
390 while ((urb = usb_get_from_anchor(&drv_data->deferred))) { in nfcmrvl_play_deferred()
405 /* Cleanup the rest deferred urbs. */ in nfcmrvl_play_deferred()
406 while ((urb = usb_get_from_anchor(&drv_data->deferred))) { in nfcmrvl_play_deferred()
443 usb_scuttle_anchored_urbs(&drv_data->deferred); in nfcmrvl_resume()
/linux/drivers/watchdog/
H A Dwatchdog_core.c60 * The deferred registration infrastructure offer a way for the watchdog
70 list_add_tail(&wdd->deferred, in watchdog_deferred_registration_add()
81 deferred); in watchdog_deferred_registration_del()
83 list_del(&wdd_tmp->deferred); in watchdog_deferred_registration_del()
462 struct watchdog_device, deferred); in watchdog_deferred_registration()
463 list_del(&wdd->deferred); in watchdog_deferred_registration()
/linux/fs/xfs/scrub/
H A Dreap.c101 /* Number of deferred reaps attached to the current transaction. */
102 unsigned int deferred; member
107 /* Number of deferred reaps queued during the whole reap sequence. */
155 if (rs->deferred) in xreap_dirty()
176 if (rs->deferred > XREP_MAX_ITRUNCATE_EFIS) in xreap_want_roll()
185 rs->total_deferred += rs->deferred; in xreap_reset()
186 rs->deferred = 0; in xreap_reset()
194 * Decide if we want to finish the deferred ops that are attached to the scrub
195 * transaction. We don't want to queue huge chains of deferred ops because
197 * xfs_defer_finish if there are more than 2048 deferred rea
[all...]
/linux/drivers/scsi/libsas/
H A Dsas_event.c151 bool deferred = false; in sas_defer_event() local
158 deferred = true; in sas_defer_event()
161 return deferred; in sas_defer_event()
/linux/drivers/gpu/drm/xe/
H A Dxe_bo.h330 * @deferred: List to which to add the buffer object if we cannot put, or
340 * reaching zero, or adds it to the @deferred list if that was not possible.
351 xe_bo_put_deferred(struct xe_bo *bo, struct llist_head *deferred) in xe_bo_put_deferred() argument
353 if (!deferred) { in xe_bo_put_deferred()
361 return llist_add(&bo->freed, deferred); in xe_bo_put_deferred()
364 void xe_bo_put_commit(struct llist_head *deferred);
370 * Put BO async, the final put is deferred to a worker to exit an IRQ context.
H A Dxe_drm_client.c200 LLIST_HEAD(deferred); in show_meminfo()
249 xe_bo_put_deferred(bo, &deferred); in show_meminfo()
253 xe_bo_put_commit(&deferred); in show_meminfo()
H A Dxe_pt.h37 void xe_pt_destroy(struct xe_pt *pt, u32 flags, struct llist_head *deferred);
H A Dxe_pt_types.h95 /** @deferred: deferred list to destroy PT entries */
96 struct llist_head deferred; member
/linux/kernel/unwind/
H A DMakefile1 obj-$(CONFIG_UNWIND_USER) += user.o deferred.o
/linux/Documentation/arch/riscv/
H A Dcmodx.rst58 As an aside, "deferred" icache flushes can sometimes be triggered in the kernel.
60 and when the kernel uses copy_to_user_page(). These deferred flushes happen only
62 an icache flush, this deferred icache flush will be skipped as it is redundant.
/linux/net/switchdev/
H A Dswitchdev.c51 static LIST_HEAD(deferred);
70 if (list_empty(&deferred)) { in switchdev_deferred_dequeue()
74 dfitem = list_first_entry(&deferred, in switchdev_deferred_dequeue()
83 * switchdev_deferred_process - Process ops in deferred queue
85 * Called to flush the ops currently queued in deferred ops queue.
125 list_add_tail(&dfitem->list, &deferred); in switchdev_deferred_enqueue()
437 * Returns true if a deferred item is pending, which is
453 list_for_each_entry(dfitem, &deferred, list) { in switchdev_port_obj_act_is_deferred()
/linux/drivers/net/plip/
H A Dplip.c208 struct delayed_work deferred; member
310 INIT_DELAYED_WORK(&nl->deferred, plip_kick_bh); in plip_init_netdev()
325 container_of(work, struct net_local, deferred.work); in plip_kick_bh()
379 schedule_delayed_work(&nl->deferred, 1); in plip_bh()
614 schedule_delayed_work(&nl->deferred, 1); in plip_receive_packet()
867 schedule_delayed_work(&nl->deferred, 1); in plip_send_packet()
911 schedule_delayed_work(&nl->deferred, 1); in plip_error()
/linux/sound/firewire/
H A Dfcp.c257 deferred: in fcp_avc_transaction()
270 goto deferred; in fcp_avc_transaction()
/linux/Documentation/fb/
H A Ddeferred_io.rst11 - deferred IO and driver sets up fault and page_mkwrite handlers
62 2. Setup your deferred IO callback. Eg::
H A Dmetronomefb.rst36 Metronomefb uses the deferred IO interface so that it can provide a memory
/linux/Documentation/driver-api/cxl/allocation/
H A Dhugepages.rst13 CXL Memory deferred to the CXL Driver for configuration cannot have its
/linux/fs/smb/client/
H A Dmisc.c781 if (delayed_work_pending(&cfile->deferred)) { in cifs_close_deferred_file()
782 if (cancel_delayed_work(&cfile->deferred)) { in cifs_close_deferred_file()
813 if (delayed_work_pending(&cfile->deferred)) { in cifs_close_all_deferred_files()
814 if (cancel_delayed_work(&cfile->deferred)) { in cifs_close_all_deferred_files()
849 if (delayed_work_pending(&cfile->deferred)) { in cifs_close_deferred_file_under_dentry()
850 if (cancel_delayed_work(&cfile->deferred)) { in cifs_close_deferred_file_under_dentry()
/linux/net/openvswitch/
H A Dflow_table.h78 void ovs_flow_free(struct sw_flow *, bool deferred);
/linux/arch/arm/include/asm/
H A Dtls.h15 @ TLS register update is deferred until return to user space
/linux/include/linux/
H A Dwatchdog.h89 * @deferred: Entry in wtd_deferred_reg_list which is used to
125 struct list_head deferred; member
/linux/drivers/net/ethernet/3com/
H A D3c59x.c646 u16 deferred; /* Resend these interrupts when we member
1878 if (vp->deferred) in vortex_timer()
2275 status |= vp->deferred; in _vortex_interrupt()
2276 vp->deferred = 0; in _vortex_interrupt()
2341 vp->deferred |= status; in _vortex_interrupt()
2342 iowrite16(SetStatusEnb | (~vp->deferred & vp->status_enable), in _vortex_interrupt()
2344 iowrite16(AckIntr | (vp->deferred & 0x7ff), ioaddr + EL3_CMD); in _vortex_interrupt()
2399 status |= vp->deferred; in _boomerang_interrupt()
2400 vp->deferred = 0; in _boomerang_interrupt()
2477 vp->deferred | in _boomerang_interrupt()
[all...]
/linux/drivers/scsi/
H A Dst.h21 u8 deferred; member
/linux/Documentation/arch/arm64/
H A Dsme.rst110 length, the state of the PR_SME_VL_INHERIT flag, and the deferred vector
220 * Either the calling thread's vector length or the deferred vector length
227 * Any previously outstanding deferred vector length change in the calling
233 present in arg; otherwise, the reported vector length is the deferred
260 There is no way to determine whether there is an outstanding deferred
404 * a deferred vector length change is pending, established via the
/linux/drivers/md/
H A Ddm-core.h97 struct bio_list deferred; member
/linux/drivers/net/ethernet/pensando/ionic/
H A Dionic_bus_pci.c412 cancel_work_sync(&ionic->lif->deferred.work); in ionic_remove()
446 cancel_work_sync(&lif->deferred.work); in ionic_reset_prepare()

1234