Commit 0333ec88 authored by Bernard Zhao's avatar Bernard Zhao Committed by Daniel Vetter
Browse files

drm/i915: Use might_alloc()



This maybe uses lockdep through the fs_reclaim annotations.

Signed-off-by: default avatarBernard Zhao <bernard@vivo.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20210429021327.57944-1-bernard@vivo.com
parent 73552e00
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);