drm/i915: Use might_alloc()

This maybe uses lockdep through the fs_reclaim annotations.

Signed-off-by: Bernard Zhao <bernard@vivo.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210429021327.57944-1-bernard@vivo.com
This commit is contained in:
Bernard Zhao 2021-04-28 19:13:27 -07:00 committed by Daniel Vetter
parent 73552e008a
commit 0333ec8806

View file

@ -929,7 +929,7 @@ __i915_request_create(struct intel_context *ce, gfp_t gfp)
u32 seqno;
int ret;
might_sleep_if(gfpflags_allow_blocking(gfp));
might_alloc(gfp);
/* Check that the caller provided an already pinned context */
__intel_context_pin(ce);