All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@oracle.com>
To: kbuild@lists.01.org
Subject: Re: [PATCH v2 21/21] drm: Remove obsolete GEM and PRIME callbacks from struct drm_driver
Date: Mon, 21 Sep 2020 11:11:22 +0300	[thread overview]
Message-ID: <20200921081121.GZ4282@kadam> (raw)
In-Reply-To: <20200915145958.19993-22-tzimmermann@suse.de>

[-- Attachment #1: Type: text/plain, Size: 3589 bytes --]

Hi Thomas,

url:    https://github.com/0day-ci/linux/commits/Thomas-Zimmermann/Convert-all-remaining-drivers-to-GEM-object-functions/20200915-230157
base:    6b02addb1d1748d21dd1261e46029b264be4e5a0
config: i386-randconfig-m021-20200917 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>

New smatch warnings:
drivers/gpu/drm/drm_prime.c:389 export_and_register_object() error: uninitialized symbol 'dmabuf'.

Old smatch warnings:
drivers/gpu/drm/drm_prime.c:359 drm_gem_prime_fd_to_handle() warn: inconsistent returns 'dev->object_name_lock'.

# https://github.com/0day-ci/linux/commit/84300c9d089d60d5dc528a7bd6e2870090201f0e
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Thomas-Zimmermann/Convert-all-remaining-drivers-to-GEM-object-functions/20200915-230157
git checkout 84300c9d089d60d5dc528a7bd6e2870090201f0e
vim +/dmabuf +389 drivers/gpu/drm/drm_prime.c

319c933c71f3db Daniel Vetter  2013-08-15  375  static struct dma_buf *export_and_register_object(struct drm_device *dev,
319c933c71f3db Daniel Vetter  2013-08-15  376  						  struct drm_gem_object *obj,
319c933c71f3db Daniel Vetter  2013-08-15  377  						  uint32_t flags)
319c933c71f3db Daniel Vetter  2013-08-15  378  {
319c933c71f3db Daniel Vetter  2013-08-15  379  	struct dma_buf *dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  380  
319c933c71f3db Daniel Vetter  2013-08-15  381  	/* prevent races with concurrent gem_close. */
319c933c71f3db Daniel Vetter  2013-08-15  382  	if (obj->handle_count == 0) {
319c933c71f3db Daniel Vetter  2013-08-15  383  		dmabuf = ERR_PTR(-ENOENT);
319c933c71f3db Daniel Vetter  2013-08-15  384  		return dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  385  	}
319c933c71f3db Daniel Vetter  2013-08-15  386  
b39b5394fabc79 Noralf Trønnes 2018-11-10  387  	if (obj->funcs && obj->funcs->export)
b39b5394fabc79 Noralf Trønnes 2018-11-10  388  		dmabuf = obj->funcs->export(obj, flags);

dmabuf is not initialized on else path.

319c933c71f3db Daniel Vetter  2013-08-15 @389  	if (IS_ERR(dmabuf)) {
                                                    ^^^^^^^^^^^^^^
319c933c71f3db Daniel Vetter  2013-08-15  390  		/* normally the created dma-buf takes ownership of the ref,
319c933c71f3db Daniel Vetter  2013-08-15  391  		 * but if that fails then drop the ref
319c933c71f3db Daniel Vetter  2013-08-15  392  		 */
319c933c71f3db Daniel Vetter  2013-08-15  393  		return dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  394  	}
319c933c71f3db Daniel Vetter  2013-08-15  395  
319c933c71f3db Daniel Vetter  2013-08-15  396  	/*
319c933c71f3db Daniel Vetter  2013-08-15  397  	 * Note that callers do not need to clean up the export cache
319c933c71f3db Daniel Vetter  2013-08-15  398  	 * since the check for obj->handle_count guarantees that someone
319c933c71f3db Daniel Vetter  2013-08-15  399  	 * will clean it up.
319c933c71f3db Daniel Vetter  2013-08-15  400  	 */
319c933c71f3db Daniel Vetter  2013-08-15  401  	obj->dma_buf = dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  402  	get_dma_buf(obj->dma_buf);
319c933c71f3db Daniel Vetter  2013-08-15  403  
319c933c71f3db Daniel Vetter  2013-08-15  404  	return dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  405  }

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 34183 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Dan Carpenter <dan.carpenter@oracle.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v2 21/21] drm: Remove obsolete GEM and PRIME callbacks from struct drm_driver
Date: Mon, 21 Sep 2020 11:11:22 +0300	[thread overview]
Message-ID: <20200921081121.GZ4282@kadam> (raw)
In-Reply-To: <20200915145958.19993-22-tzimmermann@suse.de>

[-- Attachment #1: Type: text/plain, Size: 3589 bytes --]

Hi Thomas,

url:    https://github.com/0day-ci/linux/commits/Thomas-Zimmermann/Convert-all-remaining-drivers-to-GEM-object-functions/20200915-230157
base:    6b02addb1d1748d21dd1261e46029b264be4e5a0
config: i386-randconfig-m021-20200917 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>

New smatch warnings:
drivers/gpu/drm/drm_prime.c:389 export_and_register_object() error: uninitialized symbol 'dmabuf'.

Old smatch warnings:
drivers/gpu/drm/drm_prime.c:359 drm_gem_prime_fd_to_handle() warn: inconsistent returns 'dev->object_name_lock'.

# https://github.com/0day-ci/linux/commit/84300c9d089d60d5dc528a7bd6e2870090201f0e
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Thomas-Zimmermann/Convert-all-remaining-drivers-to-GEM-object-functions/20200915-230157
git checkout 84300c9d089d60d5dc528a7bd6e2870090201f0e
vim +/dmabuf +389 drivers/gpu/drm/drm_prime.c

319c933c71f3db Daniel Vetter  2013-08-15  375  static struct dma_buf *export_and_register_object(struct drm_device *dev,
319c933c71f3db Daniel Vetter  2013-08-15  376  						  struct drm_gem_object *obj,
319c933c71f3db Daniel Vetter  2013-08-15  377  						  uint32_t flags)
319c933c71f3db Daniel Vetter  2013-08-15  378  {
319c933c71f3db Daniel Vetter  2013-08-15  379  	struct dma_buf *dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  380  
319c933c71f3db Daniel Vetter  2013-08-15  381  	/* prevent races with concurrent gem_close. */
319c933c71f3db Daniel Vetter  2013-08-15  382  	if (obj->handle_count == 0) {
319c933c71f3db Daniel Vetter  2013-08-15  383  		dmabuf = ERR_PTR(-ENOENT);
319c933c71f3db Daniel Vetter  2013-08-15  384  		return dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  385  	}
319c933c71f3db Daniel Vetter  2013-08-15  386  
b39b5394fabc79 Noralf Trønnes 2018-11-10  387  	if (obj->funcs && obj->funcs->export)
b39b5394fabc79 Noralf Trønnes 2018-11-10  388  		dmabuf = obj->funcs->export(obj, flags);

dmabuf is not initialized on else path.

319c933c71f3db Daniel Vetter  2013-08-15 @389  	if (IS_ERR(dmabuf)) {
                                                    ^^^^^^^^^^^^^^
319c933c71f3db Daniel Vetter  2013-08-15  390  		/* normally the created dma-buf takes ownership of the ref,
319c933c71f3db Daniel Vetter  2013-08-15  391  		 * but if that fails then drop the ref
319c933c71f3db Daniel Vetter  2013-08-15  392  		 */
319c933c71f3db Daniel Vetter  2013-08-15  393  		return dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  394  	}
319c933c71f3db Daniel Vetter  2013-08-15  395  
319c933c71f3db Daniel Vetter  2013-08-15  396  	/*
319c933c71f3db Daniel Vetter  2013-08-15  397  	 * Note that callers do not need to clean up the export cache
319c933c71f3db Daniel Vetter  2013-08-15  398  	 * since the check for obj->handle_count guarantees that someone
319c933c71f3db Daniel Vetter  2013-08-15  399  	 * will clean it up.
319c933c71f3db Daniel Vetter  2013-08-15  400  	 */
319c933c71f3db Daniel Vetter  2013-08-15  401  	obj->dma_buf = dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  402  	get_dma_buf(obj->dma_buf);
319c933c71f3db Daniel Vetter  2013-08-15  403  
319c933c71f3db Daniel Vetter  2013-08-15  404  	return dmabuf;
319c933c71f3db Daniel Vetter  2013-08-15  405  }

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 34183 bytes --]

  parent reply	other threads:[~2020-09-21  8:11 UTC|newest]

Thread overview: 333+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-15 14:59 [PATCH v2 00/21] Convert all remaining drivers to GEM object functions Thomas Zimmermann
2020-09-15 14:59 ` Thomas Zimmermann
2020-09-15 14:59 ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59 ` Thomas Zimmermann
2020-09-15 14:59 ` Thomas Zimmermann
2020-09-15 14:59 ` Thomas Zimmermann
2020-09-15 14:59 ` Thomas Zimmermann
2020-09-15 14:59 ` [PATCH v2 01/21] drm/amdgpu: Introduce " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 15:05   ` Christian König
2020-09-15 15:05     ` Christian König
2020-09-15 15:05     ` [Intel-gfx] " Christian König
2020-09-15 15:05     ` Christian König
2020-09-15 15:05     ` Christian König
2020-09-15 15:05     ` Christian König
2020-09-15 15:05     ` Christian König
2020-09-17  7:40     ` Thomas Zimmermann
2020-09-17  7:40       ` Thomas Zimmermann
2020-09-17  7:40       ` [Intel-gfx] " Thomas Zimmermann
2020-09-17  7:40       ` Thomas Zimmermann
2020-09-17  7:40       ` Thomas Zimmermann
2020-09-17  7:40       ` Thomas Zimmermann
2020-09-17  7:40       ` Thomas Zimmermann
2020-09-15 14:59 ` [PATCH v2 02/21] drm/armada: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 15:07   ` Russell King - ARM Linux admin
2020-09-15 15:07     ` Russell King - ARM Linux admin
2020-09-15 15:07     ` [Intel-gfx] " Russell King - ARM Linux admin
2020-09-15 15:07     ` Russell King - ARM Linux admin
2020-09-15 15:07     ` Russell King - ARM Linux admin
2020-09-15 15:07     ` Russell King - ARM Linux admin
2020-09-15 15:07     ` Russell King - ARM Linux admin
2020-09-15 14:59 ` [PATCH v2 03/21] drm/etnaviv: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-16 11:21   ` Daniel Vetter
2020-09-16 11:21     ` Daniel Vetter
2020-09-16 11:21     ` [Intel-gfx] " Daniel Vetter
2020-09-16 11:21     ` Daniel Vetter
2020-09-16 11:21     ` Daniel Vetter
2020-09-16 11:21     ` Daniel Vetter
2020-09-16 11:21     ` Daniel Vetter
2020-09-15 14:59 ` [PATCH v2 04/21] drm/exynos: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-16 10:03   ` Daniel Vetter
2020-09-16 10:03     ` Daniel Vetter
2020-09-16 10:03     ` [Intel-gfx] " Daniel Vetter
2020-09-16 10:03     ` Daniel Vetter
2020-09-16 10:03     ` Daniel Vetter
2020-09-16 10:03     ` Daniel Vetter
2020-09-16 10:03     ` Daniel Vetter
2020-09-16 10:36     ` Thomas Zimmermann
2020-09-16 10:36       ` Thomas Zimmermann
2020-09-16 10:36       ` Thomas Zimmermann
2020-09-16 10:36       ` [Intel-gfx] " Thomas Zimmermann
2020-09-16 10:36       ` Thomas Zimmermann
2020-09-16 10:36       ` Thomas Zimmermann
2020-09-16 10:36       ` Thomas Zimmermann
2020-09-16 10:36       ` Thomas Zimmermann
2020-09-16 11:24       ` Daniel Vetter
2020-09-16 11:24         ` Daniel Vetter
2020-09-16 11:24         ` [Intel-gfx] " Daniel Vetter
2020-09-16 11:24         ` Daniel Vetter
2020-09-16 11:24         ` Daniel Vetter
2020-09-16 11:24         ` Daniel Vetter
2020-09-16 11:24         ` Daniel Vetter
2020-09-15 14:59 ` [PATCH v2 05/21] drm/gma500: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-16 11:31   ` Daniel Vetter
2020-09-16 11:31     ` Daniel Vetter
2020-09-16 11:31     ` [Intel-gfx] " Daniel Vetter
2020-09-16 11:31     ` Daniel Vetter
2020-09-16 11:31     ` Daniel Vetter
2020-09-16 11:31     ` Daniel Vetter
2020-09-16 11:31     ` Daniel Vetter
2020-09-15 14:59 ` [PATCH v2 06/21] drm/i915: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 16:14   ` Tvrtko Ursulin
2020-09-15 16:14     ` Tvrtko Ursulin
2020-09-15 16:14     ` [Intel-gfx] " Tvrtko Ursulin
2020-09-15 16:14     ` Tvrtko Ursulin
2020-09-15 16:14     ` Tvrtko Ursulin
2020-09-15 16:14     ` Tvrtko Ursulin
2020-09-15 16:14     ` Tvrtko Ursulin
2020-09-15 14:59 ` [PATCH v2 07/21] drm/mediatek: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-16 11:35   ` Daniel Vetter
2020-09-16 11:35     ` Daniel Vetter
2020-09-16 11:35     ` [Intel-gfx] " Daniel Vetter
2020-09-16 11:35     ` Daniel Vetter
2020-09-16 11:35     ` Daniel Vetter
2020-09-16 11:35     ` Daniel Vetter
2020-09-16 11:35     ` Daniel Vetter
2020-09-15 14:59 ` [PATCH v2 08/21] drm/msm: Introduce GEM object funcs Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-16 12:01   ` Daniel Vetter
2020-09-16 12:01     ` Daniel Vetter
2020-09-16 12:01     ` [Intel-gfx] " Daniel Vetter
2020-09-16 12:01     ` Daniel Vetter
2020-09-16 12:01     ` Daniel Vetter
2020-09-16 12:01     ` Daniel Vetter
2020-09-16 12:01     ` Daniel Vetter
2020-09-15 14:59 ` [PATCH v2 09/21] drm/nouveau: Introduce GEM object functions Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-16 12:04   ` Daniel Vetter
2020-09-16 12:04     ` Daniel Vetter
2020-09-16 12:04     ` [Intel-gfx] " Daniel Vetter
2020-09-16 12:04     ` Daniel Vetter
2020-09-16 12:04     ` Daniel Vetter
2020-09-16 12:04     ` Daniel Vetter
2020-09-16 12:04     ` Daniel Vetter
2020-09-15 14:59 ` [PATCH v2 10/21] drm/omapdrm: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59 ` [PATCH v2 11/21] drm/pl111: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59 ` [PATCH v2 12/21] drm/radeon: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 15:08   ` Christian König
2020-09-15 15:08     ` Christian König
2020-09-15 15:08     ` [Intel-gfx] " Christian König
2020-09-15 15:08     ` Christian König
2020-09-15 15:08     ` Christian König
2020-09-15 15:08     ` Christian König
2020-09-15 15:08     ` Christian König
2020-09-15 14:59 ` [PATCH v2 13/21] drm/rockchip: Convert to drm_gem_object_funcs Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-16  4:19   ` kernel test robot
2020-09-16 12:07   ` Daniel Vetter
2020-09-16 12:07     ` Daniel Vetter
2020-09-16 12:07     ` [Intel-gfx] " Daniel Vetter
2020-09-16 12:07     ` Daniel Vetter
2020-09-16 12:07     ` Daniel Vetter
2020-09-16 12:07     ` Daniel Vetter
2020-09-16 12:07     ` Daniel Vetter
2020-09-15 14:59 ` [PATCH v2 14/21] drm/tegra: Introduce GEM object functions Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-17 10:56   ` Thierry Reding
2020-09-17 10:56     ` Thierry Reding
2020-09-17 10:56     ` [Intel-gfx] " Thierry Reding
2020-09-17 10:56     ` Thierry Reding
2020-09-17 10:56     ` Thierry Reding
2020-09-17 10:56     ` Thierry Reding
2020-09-17 10:56     ` Thierry Reding
2020-09-15 14:59 ` [PATCH v2 15/21] drm/vc4: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59 ` [PATCH v2 16/21] drm/vgem: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-17 14:01   ` Melissa Wen
2020-09-17 14:01     ` Melissa Wen
2020-09-17 14:01     ` [Intel-gfx] " Melissa Wen
2020-09-17 14:01     ` Melissa Wen
2020-09-17 14:01     ` Melissa Wen
2020-09-17 14:01     ` Melissa Wen
2020-09-17 14:01     ` Melissa Wen
2020-09-15 14:59 ` [PATCH v2 17/21] drm/virtgpu: Set PRIME export function in struct drm_gem_object_funcs Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-16 12:09   ` Daniel Vetter
2020-09-16 12:09     ` Daniel Vetter
2020-09-16 12:09     ` [Intel-gfx] " Daniel Vetter
2020-09-16 12:09     ` Daniel Vetter
2020-09-16 12:09     ` Daniel Vetter
2020-09-16 12:09     ` Daniel Vetter
2020-09-16 12:09     ` Daniel Vetter
2020-09-15 14:59 ` [PATCH v2 18/21] drm/vkms: Introduce GEM object functions Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-17 11:31   ` Melissa Wen
2020-09-17 11:31     ` Melissa Wen
2020-09-17 11:31     ` [Intel-gfx] " Melissa Wen
2020-09-17 11:31     ` Melissa Wen
2020-09-17 11:31     ` Melissa Wen
2020-09-17 11:31     ` Melissa Wen
2020-09-17 11:31     ` Melissa Wen
2020-09-15 14:59 ` [PATCH v2 19/21] drm/xen: " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59 ` [PATCH v2 20/21] drm/xlnx: Initialize DRM driver instance with CMA helper macro Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 15:53   ` Laurent Pinchart
2020-09-15 15:53     ` Laurent Pinchart
2020-09-15 15:53     ` [Intel-gfx] " Laurent Pinchart
2020-09-15 15:53     ` Laurent Pinchart
2020-09-15 15:53     ` Laurent Pinchart
2020-09-15 15:53     ` Laurent Pinchart
2020-09-15 15:53     ` Laurent Pinchart
2020-09-15 18:39     ` Hyun Kwon
2020-09-15 18:39       ` Hyun Kwon
2020-09-15 18:39       ` Hyun Kwon
2020-09-15 18:39       ` [Intel-gfx] " Hyun Kwon
2020-09-15 18:39       ` Hyun Kwon
2020-09-15 18:39       ` Hyun Kwon
2020-09-15 18:39       ` Hyun Kwon
2020-09-15 18:39       ` Hyun Kwon
2020-09-15 14:59 ` [PATCH v2 21/21] drm: Remove obsolete GEM and PRIME callbacks from struct drm_driver Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` [Intel-gfx] " Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-15 14:59   ` Thomas Zimmermann
2020-09-16  8:01   ` kernel test robot
2020-09-16 10:16   ` kernel test robot
2020-09-16 12:12   ` Daniel Vetter
2020-09-16 12:12     ` Daniel Vetter
2020-09-16 12:12     ` [Intel-gfx] " Daniel Vetter
2020-09-16 12:12     ` Daniel Vetter
2020-09-16 12:12     ` Daniel Vetter
2020-09-16 12:12     ` Daniel Vetter
2020-09-16 12:12     ` Daniel Vetter
2020-09-16 17:55   ` Thomas Zimmermann
2020-09-16 17:55     ` Thomas Zimmermann
2020-09-16 17:55     ` [Intel-gfx] " Thomas Zimmermann
2020-09-16 17:55     ` Thomas Zimmermann
2020-09-16 17:55     ` Thomas Zimmermann
2020-09-16 17:55     ` Thomas Zimmermann
2020-09-16 17:55     ` Thomas Zimmermann
2020-09-21  8:11   ` Dan Carpenter [this message]
2020-09-21  8:11     ` Dan Carpenter
2020-09-15 15:25 ` [PATCH v2 00/21] Convert all remaining drivers to GEM object functions Christian König
2020-09-15 15:25   ` Christian König
2020-09-15 15:25   ` [Intel-gfx] " Christian König
2020-09-15 15:25   ` Christian König
2020-09-15 15:25   ` Christian König
2020-09-15 15:25   ` Christian König
2020-09-15 15:25   ` Christian König
2020-09-17  7:05   ` Thomas Zimmermann
2020-09-17  7:05     ` Thomas Zimmermann
2020-09-17  7:05     ` [Intel-gfx] " Thomas Zimmermann
2020-09-17  7:05     ` Thomas Zimmermann
2020-09-17  7:05     ` Thomas Zimmermann
2020-09-17  7:05     ` Thomas Zimmermann
2020-09-17  7:05     ` Thomas Zimmermann
2020-09-15 16:22 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Convert all remaining drivers to GEM object functions (rev2) Patchwork
2020-09-15 16:24 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2020-09-15 16:39 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2020-09-19  5:53 [PATCH v2 21/21] drm: Remove obsolete GEM and PRIME callbacks from struct drm_driver kernel test robot

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=20200921081121.GZ4282@kadam \
    --to=dan.carpenter@oracle.com \
    --cc=kbuild@lists.01.org \
    /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.