Lines Matching refs:guard
424 __i915_vma_size(vma), vma->size, vma->guard);
683 vma->guard < (flags & PIN_OFFSET_MASK))
759 unsigned long color, guard;
779 guard = vma->guard; /* retain guard across rebinds */
782 guard = max_t(u32, guard, flags & PIN_OFFSET_MASK);
786 * node.start + guard, the easiest way to make that work is
787 * to make the guard a multiple of the alignment size.
789 guard = ALIGN(guard, alignment);
808 if (size > end - 2 * guard) {
826 * The caller knows not of the guard added by others and
829 * of the vma->node due to the guard pages.
831 if (offset < guard || offset + size > end - guard)
835 size + 2 * guard,
836 offset - guard,
841 size += 2 * guard;
889 vma->guard = guard;