Home
last modified time | relevance | path

Searched refs:no_wait (Results 1 - 20 of 20) sorted by relevance

/kernel/linux/linux-5.10/drivers/gpu/drm/qxl/
H A Dqxl_object.h62 bool no_wait) in qxl_bo_wait()
66 r = ttm_bo_reserve(&bo->tbo, true, no_wait, NULL); in qxl_bo_wait()
79 r = ttm_bo_wait(&bo->tbo, true, no_wait); in qxl_bo_wait()
61 qxl_bo_wait(struct qxl_bo *bo, u32 *mem_type, bool no_wait) qxl_bo_wait() argument
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/
H A Dttm_object.h313 bool no_wait) in ttm_bo_wait()
315 struct ttm_operation_ctx ctx = { intr, no_wait }; in ttm_bo_wait()
312 ttm_bo_wait(struct ttm_buffer_object *bo, bool intr, bool no_wait) ttm_bo_wait() argument
/kernel/linux/linux-5.10/include/drm/ttm/
H A Dttm_bo_driver.h414 * -EBUSY: No space available (only if no_wait == 1).
469 * @no_wait: Don't sleep while trying to reserve, rather return -EBUSY.
482 * -EBUSY: The function needed to sleep, but @no_wait was true
487 bool interruptible, bool no_wait, in ttm_bo_reserve()
492 if (no_wait) { in ttm_bo_reserve()
486 ttm_bo_reserve(struct ttm_buffer_object *bo, bool interruptible, bool no_wait, struct ww_acquire_ctx *ticket) ttm_bo_reserve() argument
H A Dttm_bo_api.h254 * @no_wait: Return immediately if buffer is busy.
260 * Returns -EBUSY if no_wait is true and the buffer is busy.
263 int ttm_bo_wait(struct ttm_buffer_object *bo, bool interruptible, bool no_wait);
289 * -EBUSY if no_wait is true and buffer busy.
/kernel/linux/linux-6.6/include/drm/ttm/
H A Dttm_bo.h221 * @no_wait: Don't sleep while trying to reserve, rather return -EBUSY.
234 * -EBUSY: The function needed to sleep, but @no_wait was true
239 bool interruptible, bool no_wait, in ttm_bo_reserve()
244 if (no_wait) { in ttm_bo_reserve()
238 ttm_bo_reserve(struct ttm_buffer_object *bo, bool interruptible, bool no_wait, struct ww_acquire_ctx *ticket) ttm_bo_reserve() argument
/kernel/linux/linux-6.6/fs/fscache/
H A Dvolume.c295 goto no_wait; /* We raced */ in fscache_create_volume()
298 goto no_wait; in fscache_create_volume()
311 no_wait: in fscache_create_volume()
/kernel/linux/linux-5.10/drivers/gpu/drm/radeon/
H A Dradeon_object.h137 bool no_wait);
H A Dradeon_object.c847 int radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type, bool no_wait) in radeon_bo_wait() argument
851 r = ttm_bo_reserve(&bo->tbo, true, no_wait, NULL); in radeon_bo_wait()
857 r = ttm_bo_wait(&bo->tbo, true, no_wait); in radeon_bo_wait()
/kernel/linux/linux-6.6/net/rxrpc/
H A Dsendmsg.c53 goto no_wait; in rxrpc_wait_to_be_connected()
83 no_wait: in rxrpc_wait_to_be_connected()
/kernel/linux/linux-5.10/fs/
H A Duserfaultfd.c987 static ssize_t userfaultfd_ctx_read(struct userfaultfd_ctx *ctx, int no_wait, in userfaultfd_ctx_read() argument
1086 if (no_wait) { in userfaultfd_ctx_read()
1158 int no_wait = file->f_flags & O_NONBLOCK; in userfaultfd_read() local
1166 _ret = userfaultfd_ctx_read(ctx, no_wait, &msg); in userfaultfd_read()
1178 no_wait = O_NONBLOCK; in userfaultfd_read()
/kernel/linux/linux-6.6/fs/
H A Duserfaultfd.c1046 static ssize_t userfaultfd_ctx_read(struct userfaultfd_ctx *ctx, int no_wait, in userfaultfd_ctx_read() argument
1145 if (no_wait) { in userfaultfd_ctx_read()
1217 int no_wait = file->f_flags & O_NONBLOCK; in userfaultfd_read() local
1226 _ret = userfaultfd_ctx_read(ctx, no_wait, &msg, inode); in userfaultfd_read()
1238 no_wait = O_NONBLOCK; in userfaultfd_read()
/kernel/linux/linux-6.6/drivers/md/
H A Ddm-bufio.c1700 int no_wait; member
1708 if (wc->no_wait && test_bit(B_WRITING, &b->state)) in write_one()
1715 static void __write_dirty_buffers_async(struct dm_bufio_client *c, int no_wait, in __write_dirty_buffers_async() argument
1718 struct write_context wc = {.no_wait = no_wait, .write_list = write_list}; in __write_dirty_buffers_async()
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/
H A Dnouveau_gem.c905 bool no_wait = !!(req->flags & NOUVEAU_GEM_CPU_PREP_NOWAIT); in nouveau_gem_ioctl_cpu_prep() local
916 no_wait ? 0 : 30 * HZ); in nouveau_gem_ioctl_cpu_prep()
/kernel/linux/linux-5.10/drivers/gpu/drm/ttm/
H A Dttm_bo.c1493 bool interruptible, bool no_wait) in ttm_bo_wait()
1497 if (no_wait) { in ttm_bo_wait()
1492 ttm_bo_wait(struct ttm_buffer_object *bo, bool interruptible, bool no_wait) ttm_bo_wait() argument
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/
H A Dnouveau_gem.c980 bool no_wait = !!(req->flags & NOUVEAU_GEM_CPU_PREP_NOWAIT); in nouveau_gem_ioctl_cpu_prep() local
992 no_wait ? 0 : 30 * HZ); in nouveau_gem_ioctl_cpu_prep()
/kernel/linux/linux-5.10/drivers/md/
H A Ddm-bufio.c947 static void __write_dirty_buffers_async(struct dm_bufio_client *c, int no_wait, in __write_dirty_buffers_async() argument
961 if (no_wait && test_bit(B_WRITING, &b->state)) in __write_dirty_buffers_async()
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/igc/
H A Digc_main.c4409 goto no_wait; in igc_watchdog_task()
4426 no_wait: in igc_watchdog_task()
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/igb/
H A Digb_main.c5520 goto no_wait; in igb_watchdog_task()
5537 no_wait: in igb_watchdog_task()
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/igb/
H A Digb_main.c5606 goto no_wait; in igb_watchdog_task()
5623 no_wait: in igb_watchdog_task()
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/igc/
H A Digc_main.c5643 goto no_wait; in igc_watchdog_task()
5660 no_wait: in igc_watchdog_task()

Completed in 58 milliseconds