drm/udl: rip out set_need_resched

This very much looks like copypasta from drm/i915's fault handler.
It was used there to duct-tape over issues around gpu reset handling.

Since that can't ever happen for udl and there's seemingly no other
reason for this just drop it.

Reported-by: Peter Zijlstra <peterz@infradead.org>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>

authored by Daniel Vetter and committed by Dave Airlie d2aebe33 42e169be

-1
-1
drivers/gpu/drm/udl/udl_gem.c
··· 97 97 ret = vm_insert_page(vma, (unsigned long)vmf->virtual_address, page); 98 98 switch (ret) { 99 99 case -EAGAIN: 100 - set_need_resched(); 101 100 case 0: 102 101 case -ERESTARTSYS: 103 102 return VM_FAULT_NOPAGE;