== Series Details == Series: drm/i915/vm_bind: Add VM_BIND functionality (rev10) URL : https://patchwork.freedesktop.org/series/105879/ State : warning == Summary == Error: dim checkpatch failed 4ddbe0656811 drm/i915/vm_bind: Expose vm lookup function 2b76804a6d1a drm/i915/vm_bind: Add __i915_sw_fence_await_reservation() 66f162af13b7 drm/i915/vm_bind: Expose i915_gem_object_max_page_size() 58ecf3a37364 drm/i915/vm_bind: Add support to create persistent vma -:61: WARNING:AVOID_BUG: Do not crash the kernel unless it is absolutely unavoidable--use WARN_ON_ONCE() plus recovery code (if feasible) instead of BUG() or variants #61: FILE: drivers/gpu/drm/i915/i915_vma.c:311: + GEM_BUG_ON(!IS_ERR(vma) && i915_vma_compare(vma, vm, view)); -:82: WARNING:AVOID_BUG: Do not crash the kernel unless it is absolutely unavoidable--use WARN_ON_ONCE() plus recovery code (if feasible) instead of BUG() or variants #82: FILE: drivers/gpu/drm/i915/i915_vma.c:332: + GEM_BUG_ON(!kref_read(&vm->ref)); -:127: WARNING:AVOID_BUG: Do not crash the kernel unless it is absolutely unavoidable--use WARN_ON_ONCE() plus recovery code (if feasible) instead of BUG() or variants #127: FILE: drivers/gpu/drm/i915/i915_vma.h:181: + GEM_BUG_ON(view && !(i915_is_ggtt_or_dpt(vm) || total: 0 errors, 3 warnings, 0 checks, 107 lines checked 3d973e6e1ab9 drm/i915/vm_bind: Implement bind and unbind of object Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in <module> import git ModuleNotFoundError: No module named 'git' Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in <module> import git ModuleNotFoundError: No module named 'git' -:83: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #83: new file mode 100644 -:465: WARNING:AVOID_BUG: Do not crash the kernel unless it is absolutely unavoidable--use WARN_ON_ONCE() plus recovery code (if feasible) instead of BUG() or variants #465: FILE: drivers/gpu/drm/i915/gt/intel_gtt.c:182: + GEM_BUG_ON(!RB_EMPTY_ROOT(&vm->va.rb_root)); -:586: WARNING:LONG_LINE: line length of 118 exceeds 100 columns #586: FILE: include/uapi/drm/i915_drm.h:539: +#define DRM_IOCTL_I915_GEM_VM_BIND DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_VM_BIND, struct drm_i915_gem_vm_bind) -:587: WARNING:LONG_LINE: line length of 122 exceeds 100 columns #587: FILE: include/uapi/drm/i915_drm.h:540: +#define DRM_IOCTL_I915_GEM_VM_UNBIND DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_VM_UNBIND, struct drm_i915_gem_vm_unbind) total: 0 errors, 4 warnings, 0 checks, 606 lines checked 641bb5d1cf2a drm/i915/vm_bind: Support for VM private BOs 1f1055cdf0a0 drm/i915/vm_bind: Add support to handle object evictions 21800dcc4258 drm/i915/vm_bind: Support persistent vma activeness tracking 8b8a29cf0d69 drm/i915/vm_bind: Add out fence support 08b4cf556eb6 drm/i915/vm_bind: Abstract out common execbuf functions Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in <module> import git ModuleNotFoundError: No module named 'git' Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in <module> import git ModuleNotFoundError: No module named 'git' -:30: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #30: new file mode 100644 -:174: WARNING:AVOID_BUG: Do not crash the kernel unless it is absolutely unavoidable--use WARN_ON_ONCE() plus recovery code (if feasible) instead of BUG() or variants #174: FILE: drivers/gpu/drm/i915/gem/i915_gem_execbuffer_common.c:140: + GEM_BUG_ON(err); /* perma-pinned should incr a counter */ -:249: WARNING:AVOID_BUG: Do not crash the kernel unless it is absolutely unavoidable--use WARN_ON_ONCE() plus recovery code (if feasible) instead of BUG() or variants #249: FILE: drivers/gpu/drm/i915/gem/i915_gem_execbuffer_common.c:215: + GEM_BUG_ON("Context not found"); -:607: WARNING:AVOID_BUG: Do not crash the kernel unless it is absolutely unavoidable--use WARN_ON_ONCE() plus recovery code (if feasible) instead of BUG() or variants #607: FILE: drivers/gpu/drm/i915/gem/i915_gem_execbuffer_common.c:573: + GEM_BUG_ON(!intel_context_is_parent(context)); total: 0 errors, 4 warnings, 0 checks, 754 lines checked e7d9ca5f6fbe drm/i915/vm_bind: Use common execbuf functions in execbuf path 4e41d7934f51 drm/i915/vm_bind: Implement I915_GEM_EXECBUFFER3 ioctl Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in <module> import git ModuleNotFoundError: No module named 'git' -:39: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #39: new file mode 100644 -:266: WARNING:AVOID_BUG: Do not crash the kernel unless it is absolutely unavoidable--use WARN_ON_ONCE() plus recovery code (if feasible) instead of BUG() or variants #266: FILE: drivers/gpu/drm/i915/gem/i915_gem_execbuffer3.c:223: + GEM_BUG_ON(eb->args->flags & __EXEC3_ENGINE_PINNED); -:664: WARNING:LONG_LINE: line length of 126 exceeds 100 columns #664: FILE: include/uapi/drm/i915_drm.h:542: +#define DRM_IOCTL_I915_GEM_EXECBUFFER3 DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER3, struct drm_i915_gem_execbuffer3) total: 0 errors, 3 warnings, 0 checks, 680 lines checked d3e977af992d drm/i915/vm_bind: Update i915_vma_verify_bind_complete() e1c7f5b5eb8b drm/i915/vm_bind: Expose i915_request_await_bind() db453b0cbf3c drm/i915/vm_bind: Handle persistent vmas in execbuf3 65c6faa06419 drm/i915/vm_bind: userptr dma-resv changes 409428003e73 drm/i915/vm_bind: Limit vm_bind mode to non-recoverable contexts a9078e75451e drm/i915/vm_bind: Add uapi for user to enable vm_bind_mode 954bdbfc3b60 drm/i915/vm_bind: Render VM_BIND documentation 4a7cf0a82b37 drm/i915/vm_bind: Async vm_unbind support