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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/radeon/
H A Dradeon_object.h58 * @no_wait: don't sleep while trying to reserve (return -EBUSY)
61 * -EBUSY: buffer is busy and @no_wait is true
65 static inline int radeon_bo_reserve(struct radeon_bo *bo, bool no_wait) argument
69 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, 0);
122 bool no_wait)
126 r = ttm_bo_reserve(&bo->tbo, true, no_wait, false, 0);
133 r = ttm_bo_wait(&bo->tbo, true, true, no_wait);
121 radeon_bo_wait(struct radeon_bo *bo, u32 *mem_type, bool no_wait) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Deventfd.h38 ssize_t eventfd_ctx_read(struct eventfd_ctx *ctx, int no_wait, __u64 *cnt);
68 static inline ssize_t eventfd_ctx_read(struct eventfd_ctx *ctx, int no_wait, argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/drm/ttm/
H A Dttm_memory.h150 bool no_wait, bool interruptible);
155 bool no_wait, bool interruptible);
H A Dttm_bo_api.h324 * @no_wait: Return immediately if buffer is busy.
330 * Returns -EBUSY if no_wait is true and the buffer is busy.
334 bool interruptible, bool no_wait);
349 * -EBUSY if no_wait is true and buffer busy.
387 * @no_wait: Return immediately if buffer is busy.
393 * -EBUSY if the buffer is busy and no_wait is true.
398 ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait);
H A Dttm_bo_driver.h272 * @no_wait: whether this should give up and return -EBUSY
619 * -EBUSY: No space available (only if no_wait == 1).
633 * @no_wait: Don't sleep while waiting.
637 * -EBUSY: Buffer object was sync'ed for CPU access. (only if no_wait == 1).
641 extern int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait);
704 * @no_wait: Don't sleep while trying to reserve, rather return -EBUSY.
752 bool no_wait, bool use_sequence, uint32_t sequence);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/ttm/
H A Dttm_memory.c515 bool no_wait, bool interruptible)
523 if (no_wait)
534 bool no_wait, bool interruptible)
541 return ttm_mem_global_alloc_zone(glob, NULL, memory, no_wait,
548 bool no_wait, bool interruptible)
565 return ttm_mem_global_alloc_zone(glob, zone, PAGE_SIZE, no_wait,
512 ttm_mem_global_alloc_zone(struct ttm_mem_global *glob, struct ttm_mem_zone *single_zone, uint64_t memory, bool no_wait, bool interruptible) argument
533 ttm_mem_global_alloc(struct ttm_mem_global *glob, uint64_t memory, bool no_wait, bool interruptible) argument
546 ttm_mem_global_alloc_page(struct ttm_mem_global *glob, struct page *page, bool no_wait, bool interruptible) argument
H A Dttm_bo_vm.c306 bool no_wait = false; local
343 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
396 bool no_wait = false; local
412 ret = ttm_bo_reserve(bo, true, no_wait, false, 0);
H A Dttm_bo.c236 bool no_wait, bool use_sequence, uint32_t sequence)
247 if (no_wait)
276 bool no_wait, bool use_sequence, uint32_t sequence)
283 ret = ttm_bo_reserve_locked(bo, interruptible, no_wait, use_sequence,
1041 int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait) argument
1043 if ((atomic_read(&bo->cpu_writers) > 0) && no_wait)
1713 bool lazy, bool interruptible, bool no_wait)
1735 if (no_wait)
1769 int ttm_bo_synccpu_write_grab(struct ttm_buffer_object *bo, bool no_wait) argument
1777 ret = ttm_bo_reserve(bo, true, no_wait, fals
234 ttm_bo_reserve_locked(struct ttm_buffer_object *bo, bool interruptible, bool no_wait, bool use_sequence, uint32_t sequence) argument
274 ttm_bo_reserve(struct ttm_buffer_object *bo, bool interruptible, bool no_wait, bool use_sequence, uint32_t sequence) argument
1712 ttm_bo_wait(struct ttm_buffer_object *bo, bool lazy, bool interruptible, bool no_wait) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Deventfd.c177 * @no_wait: [in] Different from zero if the operation should not block.
182 * -EAGAIN : The operation would have blocked but @no_wait was nonzero.
185 * If @no_wait is zero, the function might sleep until the eventfd internal
188 ssize_t eventfd_ctx_read(struct eventfd_ctx *ctx, int no_wait, __u64 *cnt) argument
198 else if (!no_wait) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/nouveau/
H A Dnouveau_gem.c770 bool no_wait = !!(req->flags & NOUVEAU_GEM_CPU_PREP_NOWAIT); local
782 ret = ttm_bo_wait_cpu(&nvbo->bo, no_wait);
789 ret = ttm_bo_wait(&nvbo->bo, false, false, no_wait);
792 ret = ttm_bo_synccpu_write_grab(&nvbo->bo, no_wait);

Completed in 70 milliseconds