All of lore.kernel.org
 help / color / mirror / Atom feed
From: Patchwork <patchwork@emeril.freedesktop.org>
To: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Move LMEM (VRAM) management over to TTM (rev4)
Date: Wed, 26 May 2021 16:20:43 -0000	[thread overview]
Message-ID: <162204604349.13405.7854611755354086789@emeril.freedesktop.org> (raw)
In-Reply-To: <20210526113259.1661914-1-thomas.hellstrom@linux.intel.com>

== Series Details ==

Series: drm/i915: Move LMEM (VRAM) management over to TTM (rev4)
URL   : https://patchwork.freedesktop.org/series/90022/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
a8d995049a9a drm/i915: Untangle the vma pages_mutex
565669662415 drm/i915: Don't free shared locks while shared
34211cad1c61 drm/i915: Fix i915_sg_page_sizes to record dma segments rather than physical pages
9e94246f54ff drm/i915/ttm Initialize the ttm device and memory managers
-:480: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#480: 
deleted file mode 100644

total: 0 errors, 1 warnings, 0 checks, 1531 lines checked
8c9f9a941096 drm/i915/ttm: Embed a ttm buffer object in the i915 gem object
512ac8fd774b drm/ttm: Add a generic TTM memcpy move for page-based iomem
-:384: CHECK:ARCH_DEFINES: architecture specific defines should be avoided
#384: FILE: drivers/gpu/drm/ttm/ttm_module.c:56:
+#if defined(__i386__) || defined(__x86_64__)

-:727: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#727: 
new file mode 100644

total: 0 errors, 1 warnings, 1 checks, 840 lines checked
1a9c04facf2f drm, drm/i915: Move the memcpy_from_wc functionality to core drm
-:56: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#56: 
rename from drivers/gpu/drm/i915/i915_memcpy.c

total: 0 errors, 1 warnings, 0 checks, 431 lines checked
aa4e527660b2 drm/ttm: Use drm_memcpy_from_wc_dbm for TTM bo moves
a0467168f3dd drm/ttm: Document and optimize ttm_bo_pipeline_gutting()
4eb13de59af2 drm/ttm, drm/amdgpu: Allow the driver some control over swapping
d74440bb1681 drm/i915/ttm: Introduce a TTM i915 gem object backend
-:449: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating?
#449: 
new file mode 100644

total: 0 errors, 1 warnings, 0 checks, 1043 lines checked
078b4a721184 drm/i915/lmem: Verify checks for lmem residency
e1a4df82cfae drm/i915: Disable mmap ioctl for gen12+
89fe83848800 drm/vma: Add a driver_private member to vma_node.
7e57f71fdb25 drm/i915: Use ttm mmap handling for ttm bo's.
-:141: WARNING:LONG_LINE: line length of 117 exceeds 100 columns
#141: FILE: drivers/gpu/drm/i915/gem/i915_gem_mman.c:908:
+			obj = i915_gem_object_get_rcu(container_of(node, struct drm_i915_gem_object, base.vma_node));

-:357: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#357: FILE: drivers/gpu/drm/i915/gem/i915_gem_ttm.c:522:
+vm_access_ttm(struct vm_area_struct *area, unsigned long addr,
+	  void *buf, int len, int write)

-:386: CHECK:LINE_SPACING: Please don't use multiple blank lines
#386: FILE: drivers/gpu/drm/i915/gem/i915_gem_ttm.c:551:
+
+

-:702: WARNING:PRINTF_L: %Lx is non-standard C, use %llx
#702: FILE: drivers/gpu/drm/i915/selftests/igt_mmap.c:30:
+		pr_info("Failed to lookup %Lx\n", offset);

total: 0 errors, 2 warnings, 2 checks, 649 lines checked


_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2021-05-26 16:20 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-26 11:32 [PATCH v4 00/15] drm/i915: Move LMEM (VRAM) management over to TTM Thomas Hellström
2021-05-26 11:32 ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 01/15] drm/i915: Untangle the vma pages_mutex Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 02/15] drm/i915: Don't free shared locks while shared Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 03/15] drm/i915: Fix i915_sg_page_sizes to record dma segments rather than physical pages Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 04/15] drm/i915/ttm Initialize the ttm device and memory managers Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 05/15] drm/i915/ttm: Embed a ttm buffer object in the i915 gem object Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 06/15] drm/ttm: Add a generic TTM memcpy move for page-based iomem Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 07/15] drm, drm/i915: Move the memcpy_from_wc functionality to core drm Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 14:27   ` Christian König
2021-05-26 14:27     ` [Intel-gfx] " Christian König
2021-05-26 11:32 ` [PATCH v4 08/15] drm/ttm: Use drm_memcpy_from_wc_dbm for TTM bo moves Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 09/15] drm/ttm: Document and optimize ttm_bo_pipeline_gutting() Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 14:32   ` Christian König
2021-05-26 14:32     ` [Intel-gfx] " Christian König
2021-05-26 11:32 ` [PATCH v4 10/15] drm/ttm, drm/amdgpu: Allow the driver some control over swapping Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 13:26   ` Christian König
2021-05-26 13:26     ` [Intel-gfx] " Christian König
2021-05-27  7:33     ` Thomas Hellström (Intel)
2021-05-27  7:33       ` [Intel-gfx] " Thomas Hellström (Intel)
2021-05-27 12:36       ` Christian König
2021-05-27 12:36         ` [Intel-gfx] " Christian König
2021-05-27 13:52         ` Thomas Hellström
2021-05-27 13:52           ` [Intel-gfx] " Thomas Hellström
2021-05-27 14:21           ` Thomas Hellström
2021-05-27 14:21             ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 11/15] drm/i915/ttm: Introduce a TTM i915 gem object backend Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 12/15] drm/i915/lmem: Verify checks for lmem residency Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 11:32 ` [PATCH v4 13/15] drm/i915: Disable mmap ioctl for gen12+ Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 17:28   ` Thomas Hellström (Intel)
2021-05-26 17:28     ` [Intel-gfx] " Thomas Hellström (Intel)
2021-05-26 11:32 ` [PATCH v4 14/15] drm/vma: Add a driver_private member to vma_node Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-27  8:16   ` Thomas Hellström (Intel)
2021-05-27  8:16     ` [Intel-gfx] " Thomas Hellström (Intel)
2021-05-26 11:32 ` [PATCH v4 15/15] drm/i915: Use ttm mmap handling for ttm bo's Thomas Hellström
2021-05-26 11:32   ` [Intel-gfx] " Thomas Hellström
2021-05-26 17:40   ` Thomas Hellström
2021-05-26 17:40     ` [Intel-gfx] " Thomas Hellström
2021-05-27 11:11     ` Maarten Lankhorst
2021-05-27 11:11       ` [Intel-gfx] " Maarten Lankhorst
2021-05-26 16:20 ` Patchwork [this message]
2021-05-26 16:23 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: Move LMEM (VRAM) management over to TTM (rev4) Patchwork
2021-05-26 16:51 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-05-27  1:57 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=162204604349.13405.7854611755354086789@emeril.freedesktop.org \
    --to=patchwork@emeril.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=thomas.hellstrom@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.