From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DDE9BC4332F for ; Mon, 3 Oct 2022 07:01:30 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 14EF810E211; Mon, 3 Oct 2022 07:01:30 +0000 (UTC) Received: from emeril.freedesktop.org (emeril.freedesktop.org [131.252.210.167]) by gabe.freedesktop.org (Postfix) with ESMTP id 6AECF10E211; Mon, 3 Oct 2022 07:01:26 +0000 (UTC) Received: from emeril.freedesktop.org (localhost [127.0.0.1]) by emeril.freedesktop.org (Postfix) with ESMTP id 611BCAADDC; Mon, 3 Oct 2022 07:01:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Patchwork To: "Niranjana Vishwanathapura" Date: Mon, 03 Oct 2022 07:01:26 -0000 Message-ID: <166478048636.6046.8445257564213297311@emeril.freedesktop.org> X-Patchwork-Hint: ignore References: <20221003061245.12716-1-niranjana.vishwanathapura@intel.com> In-Reply-To: <20221003061245.12716-1-niranjana.vishwanathapura@intel.com> Subject: [Intel-gfx] =?utf-8?b?4pyXIEZpLkNJLkNIRUNLUEFUQ0g6IHdhcm5pbmcg?= =?utf-8?q?for_drm/i915/vm=5Fbind=3A_Add_VM=5FBIND_functionality_=28rev5?= =?utf-8?q?=29?= X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: intel-gfx@lists.freedesktop.org Cc: intel-gfx@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" == Series Details == Series: drm/i915/vm_bind: Add VM_BIND functionality (rev5) URL : https://patchwork.freedesktop.org/series/105879/ State : warning == Summary == Error: dim checkpatch failed 09e6e3a66907 drm/i915/vm_bind: Expose vm lookup function bda985316d2b drm/i915/vm_bind: Add __i915_sw_fence_await_reservation() 8a6c9f5ab17a drm/i915/vm_bind: Expose i915_gem_object_max_page_size() a19169d38fae drm/i915/vm_bind: Add support to create persistent vma c550e5c8852e drm/i915/vm_bind: Implement bind and unbind of object Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in import git ModuleNotFoundError: No module named 'git' Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in import git ModuleNotFoundError: No module named 'git' -:50: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #50: new file mode 100644 -:560: WARNING:LONG_LINE: line length of 118 exceeds 100 columns #560: 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) -:561: WARNING:LONG_LINE: line length of 122 exceeds 100 columns #561: 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, 3 warnings, 0 checks, 599 lines checked 27cf884efe6d drm/i915/vm_bind: Support for VM private BOs 22509d2e1245 drm/i915/vm_bind: Add support to handle object evictions c55459c0e865 drm/i915/vm_bind: Support persistent vma activeness tracking 48428d3bd8c4 drm/i915/vm_bind: Add out fence support c33e8c03cfd7 drm/i915/vm_bind: Abstract out common execbuf functions Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in import git ModuleNotFoundError: No module named 'git' Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in import git ModuleNotFoundError: No module named 'git' -:27: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #27: new file mode 100644 total: 0 errors, 1 warnings, 0 checks, 747 lines checked 978329fbdbfd drm/i915/vm_bind: Use common execbuf functions in execbuf path 5d65e23674f3 drm/i915/vm_bind: Implement I915_GEM_EXECBUFFER3 ioctl Traceback (most recent call last): File "scripts/spdxcheck.py", line 11, in import git ModuleNotFoundError: No module named 'git' -:34: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #34: new file mode 100644 -:655: WARNING:LONG_LINE: line length of 126 exceeds 100 columns #655: 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, 2 warnings, 0 checks, 676 lines checked 975f39a09435 drm/i915/vm_bind: Update i915_vma_verify_bind_complete() 577d3d2c526f drm/i915/vm_bind: Expose i915_request_await_bind() 7ebc1481af5f drm/i915/vm_bind: Handle persistent vmas in execbuf3 56dd595ef6ab drm/i915/vm_bind: userptr dma-resv changes f0b5b2351378 drm/i915/vm_bind: Add uapi for user to enable vm_bind_mode