Deleted Added
full compact
30c30
< /* $FreeBSD: head/sys/dev/drm2/ttm/ttm_bo_driver.h 254861 2013-08-25 14:39:51Z dumbbell $ */
---
> /* $FreeBSD: head/sys/dev/drm2/ttm/ttm_bo_driver.h 254863 2013-08-25 14:47:22Z dumbbell $ */
824a825,840
> /**
> * ttm_bo_reserve_slowpath_nolru:
> * @bo: A pointer to a struct ttm_buffer_object.
> * @interruptible: Sleep interruptible if waiting.
> * @sequence: Set (@bo)->sequence to this value after lock
> *
> * This is called after ttm_bo_reserve returns -EAGAIN and we backed off
> * from all our other reservations. Because there are no other reservations
> * held by us, this function cannot deadlock any more.
> *
> * Will not remove reserved buffers from the lru lists.
> * Otherwise identical to ttm_bo_reserve_slowpath.
> */
> extern int ttm_bo_reserve_slowpath_nolru(struct ttm_buffer_object *bo,
> bool interruptible,
> uint32_t sequence);
825a842
>
826a844,856
> * ttm_bo_reserve_slowpath:
> * @bo: A pointer to a struct ttm_buffer_object.
> * @interruptible: Sleep interruptible if waiting.
> * @sequence: Set (@bo)->sequence to this value after lock
> *
> * This is called after ttm_bo_reserve returns -EAGAIN and we backed off
> * from all our other reservations. Because there are no other reservations
> * held by us, this function cannot deadlock any more.
> */
> extern int ttm_bo_reserve_slowpath(struct ttm_buffer_object *bo,
> bool interruptible, uint32_t sequence);
>
> /**