From: kernel test robot <lkp@intel.com>
To: Danilo Krummrich <dakr@redhat.com>,
airlied@gmail.com, daniel@ffwll.ch, tzimmermann@suse.de,
mripard@kernel.org, corbet@lwn.net, christian.koenig@amd.com,
bskeggs@redhat.com, Liam.Howlett@oracle.com,
matthew.brost@intel.com, boris.brezillon@collabora.com,
alexdeucher@gmail.com, ogabbay@kernel.org, bagasdotme@gmail.com,
willy@infradead.org, jason@jlekstrand.net
Cc: oe-kbuild-all@lists.linux.dev, dri-devel@lists.freedesktop.org,
nouveau@lists.freedesktop.org, linux-doc@vger.kernel.org,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Danilo Krummrich <dakr@redhat.com>
Subject: Re: [PATCH drm-next v2 06/16] drm: debugfs: provide infrastructure to dump a DRM GPU VA space
Date: Sat, 18 Feb 2023 10:47:59 +0800 [thread overview]
Message-ID: <202302181014.L0SHo3S1-lkp@intel.com> (raw)
In-Reply-To: <20230217134820.14672-1-dakr@redhat.com>
Hi Danilo,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on 48075a66fca613477ac1969b576a93ef5db0164f]
url: https://github.com/intel-lab-lkp/linux/commits/Danilo-Krummrich/drm-execution-context-for-GEM-buffers/20230217-215101
base: 48075a66fca613477ac1969b576a93ef5db0164f
patch link: https://lore.kernel.org/r/20230217134820.14672-1-dakr%40redhat.com
patch subject: [PATCH drm-next v2 06/16] drm: debugfs: provide infrastructure to dump a DRM GPU VA space
config: mips-allyesconfig (https://download.01.org/0day-ci/archive/20230218/202302181014.L0SHo3S1-lkp@intel.com/config)
compiler: mips-linux-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/e1a1c9659baee305780e1ce50c05e53e1d14b245
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Danilo-Krummrich/drm-execution-context-for-GEM-buffers/20230217-215101
git checkout e1a1c9659baee305780e1ce50c05e53e1d14b245
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=mips olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=mips SHELL=/bin/bash drivers/gpu/drm/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202302181014.L0SHo3S1-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/gpu/drm/drm_debugfs.c: In function 'drm_debugfs_gpuva_info':
>> drivers/gpu/drm/drm_debugfs.c:228:28: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
228 | (u64)va->gem.obj, va->gem.offset);
| ^
vim +228 drivers/gpu/drm/drm_debugfs.c
178
179 /**
180 * drm_debugfs_gpuva_info - dump the given DRM GPU VA space
181 * @m: pointer to the &seq_file to write
182 * @mgr: the &drm_gpuva_manager representing the GPU VA space
183 *
184 * Dumps the GPU VA regions and mappings of a given DRM GPU VA manager.
185 *
186 * For each DRM GPU VA space drivers should call this function from their
187 * &drm_info_list's show callback.
188 *
189 * Returns: 0 on success, -ENODEV if the &mgr is not initialized
190 */
191 int drm_debugfs_gpuva_info(struct seq_file *m,
192 struct drm_gpuva_manager *mgr)
193 {
194 DRM_GPUVA_ITER(it, mgr);
195 DRM_GPUVA_REGION_ITER(__it, mgr);
196
197 if (!mgr->name)
198 return -ENODEV;
199
200 seq_printf(m, "DRM GPU VA space (%s)\n", mgr->name);
201 seq_puts (m, "\n");
202 seq_puts (m, " VA regions | start | range | end | sparse\n");
203 seq_puts (m, "------------------------------------------------------------------------------------\n");
204 seq_printf(m, " VA space | 0x%016llx | 0x%016llx | 0x%016llx | -\n",
205 mgr->mm_start, mgr->mm_range, mgr->mm_start + mgr->mm_range);
206 seq_puts (m, "-----------------------------------------------------------------------------------\n");
207 drm_gpuva_iter_for_each(__it) {
208 struct drm_gpuva_region *reg = __it.reg;
209
210 if (reg == &mgr->kernel_alloc_region) {
211 seq_printf(m, " kernel node | 0x%016llx | 0x%016llx | 0x%016llx | -\n",
212 reg->va.addr, reg->va.range, reg->va.addr + reg->va.range);
213 continue;
214 }
215
216 seq_printf(m, " | 0x%016llx | 0x%016llx | 0x%016llx | %s\n",
217 reg->va.addr, reg->va.range, reg->va.addr + reg->va.range,
218 reg->sparse ? "true" : "false");
219 }
220 seq_puts(m, "\n");
221 seq_puts(m, " VAs | start | range | end | object | object offset\n");
222 seq_puts(m, "-------------------------------------------------------------------------------------------------------------\n");
223 drm_gpuva_iter_for_each(it) {
224 struct drm_gpuva *va = it.va;
225
226 seq_printf(m, " | 0x%016llx | 0x%016llx | 0x%016llx | 0x%016llx | 0x%016llx\n",
227 va->va.addr, va->va.range, va->va.addr + va->va.range,
> 228 (u64)va->gem.obj, va->gem.offset);
229 }
230
231 return 0;
232 }
233 EXPORT_SYMBOL(drm_debugfs_gpuva_info);
234
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Danilo Krummrich <dakr@redhat.com>,
airlied@gmail.com, daniel@ffwll.ch, tzimmermann@suse.de,
mripard@kernel.org, corbet@lwn.net, christian.koenig@amd.com,
bskeggs@redhat.com, Liam.Howlett@oracle.com,
matthew.brost@intel.com, boris.brezillon@collabora.com,
alexdeucher@gmail.com, ogabbay@kernel.org, bagasdotme@gmail.com,
willy@infradead.org, jason@jlekstrand.net
Cc: linux-doc@vger.kernel.org, nouveau@lists.freedesktop.org,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
linux-mm@kvack.org, oe-kbuild-all@lists.linux.dev
Subject: Re: [Nouveau] [PATCH drm-next v2 06/16] drm: debugfs: provide infrastructure to dump a DRM GPU VA space
Date: Sat, 18 Feb 2023 10:47:59 +0800 [thread overview]
Message-ID: <202302181014.L0SHo3S1-lkp@intel.com> (raw)
In-Reply-To: <20230217134820.14672-1-dakr@redhat.com>
Hi Danilo,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on 48075a66fca613477ac1969b576a93ef5db0164f]
url: https://github.com/intel-lab-lkp/linux/commits/Danilo-Krummrich/drm-execution-context-for-GEM-buffers/20230217-215101
base: 48075a66fca613477ac1969b576a93ef5db0164f
patch link: https://lore.kernel.org/r/20230217134820.14672-1-dakr%40redhat.com
patch subject: [PATCH drm-next v2 06/16] drm: debugfs: provide infrastructure to dump a DRM GPU VA space
config: mips-allyesconfig (https://download.01.org/0day-ci/archive/20230218/202302181014.L0SHo3S1-lkp@intel.com/config)
compiler: mips-linux-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/e1a1c9659baee305780e1ce50c05e53e1d14b245
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Danilo-Krummrich/drm-execution-context-for-GEM-buffers/20230217-215101
git checkout e1a1c9659baee305780e1ce50c05e53e1d14b245
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=mips olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=mips SHELL=/bin/bash drivers/gpu/drm/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202302181014.L0SHo3S1-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/gpu/drm/drm_debugfs.c: In function 'drm_debugfs_gpuva_info':
>> drivers/gpu/drm/drm_debugfs.c:228:28: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
228 | (u64)va->gem.obj, va->gem.offset);
| ^
vim +228 drivers/gpu/drm/drm_debugfs.c
178
179 /**
180 * drm_debugfs_gpuva_info - dump the given DRM GPU VA space
181 * @m: pointer to the &seq_file to write
182 * @mgr: the &drm_gpuva_manager representing the GPU VA space
183 *
184 * Dumps the GPU VA regions and mappings of a given DRM GPU VA manager.
185 *
186 * For each DRM GPU VA space drivers should call this function from their
187 * &drm_info_list's show callback.
188 *
189 * Returns: 0 on success, -ENODEV if the &mgr is not initialized
190 */
191 int drm_debugfs_gpuva_info(struct seq_file *m,
192 struct drm_gpuva_manager *mgr)
193 {
194 DRM_GPUVA_ITER(it, mgr);
195 DRM_GPUVA_REGION_ITER(__it, mgr);
196
197 if (!mgr->name)
198 return -ENODEV;
199
200 seq_printf(m, "DRM GPU VA space (%s)\n", mgr->name);
201 seq_puts (m, "\n");
202 seq_puts (m, " VA regions | start | range | end | sparse\n");
203 seq_puts (m, "------------------------------------------------------------------------------------\n");
204 seq_printf(m, " VA space | 0x%016llx | 0x%016llx | 0x%016llx | -\n",
205 mgr->mm_start, mgr->mm_range, mgr->mm_start + mgr->mm_range);
206 seq_puts (m, "-----------------------------------------------------------------------------------\n");
207 drm_gpuva_iter_for_each(__it) {
208 struct drm_gpuva_region *reg = __it.reg;
209
210 if (reg == &mgr->kernel_alloc_region) {
211 seq_printf(m, " kernel node | 0x%016llx | 0x%016llx | 0x%016llx | -\n",
212 reg->va.addr, reg->va.range, reg->va.addr + reg->va.range);
213 continue;
214 }
215
216 seq_printf(m, " | 0x%016llx | 0x%016llx | 0x%016llx | %s\n",
217 reg->va.addr, reg->va.range, reg->va.addr + reg->va.range,
218 reg->sparse ? "true" : "false");
219 }
220 seq_puts(m, "\n");
221 seq_puts(m, " VAs | start | range | end | object | object offset\n");
222 seq_puts(m, "-------------------------------------------------------------------------------------------------------------\n");
223 drm_gpuva_iter_for_each(it) {
224 struct drm_gpuva *va = it.va;
225
226 seq_printf(m, " | 0x%016llx | 0x%016llx | 0x%016llx | 0x%016llx | 0x%016llx\n",
227 va->va.addr, va->va.range, va->va.addr + va->va.range,
> 228 (u64)va->gem.obj, va->gem.offset);
229 }
230
231 return 0;
232 }
233 EXPORT_SYMBOL(drm_debugfs_gpuva_info);
234
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Danilo Krummrich <dakr@redhat.com>,
airlied@gmail.com, daniel@ffwll.ch, tzimmermann@suse.de,
mripard@kernel.org, corbet@lwn.net, christian.koenig@amd.com,
bskeggs@redhat.com, Liam.Howlett@oracle.com,
matthew.brost@intel.com, boris.brezillon@collabora.com,
alexdeucher@gmail.com, ogabbay@kernel.org, bagasdotme@gmail.com,
willy@infradead.org, jason@jlekstrand.net
Cc: linux-doc@vger.kernel.org, nouveau@lists.freedesktop.org,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
linux-mm@kvack.org, Danilo Krummrich <dakr@redhat.com>,
oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH drm-next v2 06/16] drm: debugfs: provide infrastructure to dump a DRM GPU VA space
Date: Sat, 18 Feb 2023 10:47:59 +0800 [thread overview]
Message-ID: <202302181014.L0SHo3S1-lkp@intel.com> (raw)
In-Reply-To: <20230217134820.14672-1-dakr@redhat.com>
Hi Danilo,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on 48075a66fca613477ac1969b576a93ef5db0164f]
url: https://github.com/intel-lab-lkp/linux/commits/Danilo-Krummrich/drm-execution-context-for-GEM-buffers/20230217-215101
base: 48075a66fca613477ac1969b576a93ef5db0164f
patch link: https://lore.kernel.org/r/20230217134820.14672-1-dakr%40redhat.com
patch subject: [PATCH drm-next v2 06/16] drm: debugfs: provide infrastructure to dump a DRM GPU VA space
config: mips-allyesconfig (https://download.01.org/0day-ci/archive/20230218/202302181014.L0SHo3S1-lkp@intel.com/config)
compiler: mips-linux-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/e1a1c9659baee305780e1ce50c05e53e1d14b245
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Danilo-Krummrich/drm-execution-context-for-GEM-buffers/20230217-215101
git checkout e1a1c9659baee305780e1ce50c05e53e1d14b245
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=mips olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=mips SHELL=/bin/bash drivers/gpu/drm/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202302181014.L0SHo3S1-lkp@intel.com/
All warnings (new ones prefixed by >>):
drivers/gpu/drm/drm_debugfs.c: In function 'drm_debugfs_gpuva_info':
>> drivers/gpu/drm/drm_debugfs.c:228:28: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
228 | (u64)va->gem.obj, va->gem.offset);
| ^
vim +228 drivers/gpu/drm/drm_debugfs.c
178
179 /**
180 * drm_debugfs_gpuva_info - dump the given DRM GPU VA space
181 * @m: pointer to the &seq_file to write
182 * @mgr: the &drm_gpuva_manager representing the GPU VA space
183 *
184 * Dumps the GPU VA regions and mappings of a given DRM GPU VA manager.
185 *
186 * For each DRM GPU VA space drivers should call this function from their
187 * &drm_info_list's show callback.
188 *
189 * Returns: 0 on success, -ENODEV if the &mgr is not initialized
190 */
191 int drm_debugfs_gpuva_info(struct seq_file *m,
192 struct drm_gpuva_manager *mgr)
193 {
194 DRM_GPUVA_ITER(it, mgr);
195 DRM_GPUVA_REGION_ITER(__it, mgr);
196
197 if (!mgr->name)
198 return -ENODEV;
199
200 seq_printf(m, "DRM GPU VA space (%s)\n", mgr->name);
201 seq_puts (m, "\n");
202 seq_puts (m, " VA regions | start | range | end | sparse\n");
203 seq_puts (m, "------------------------------------------------------------------------------------\n");
204 seq_printf(m, " VA space | 0x%016llx | 0x%016llx | 0x%016llx | -\n",
205 mgr->mm_start, mgr->mm_range, mgr->mm_start + mgr->mm_range);
206 seq_puts (m, "-----------------------------------------------------------------------------------\n");
207 drm_gpuva_iter_for_each(__it) {
208 struct drm_gpuva_region *reg = __it.reg;
209
210 if (reg == &mgr->kernel_alloc_region) {
211 seq_printf(m, " kernel node | 0x%016llx | 0x%016llx | 0x%016llx | -\n",
212 reg->va.addr, reg->va.range, reg->va.addr + reg->va.range);
213 continue;
214 }
215
216 seq_printf(m, " | 0x%016llx | 0x%016llx | 0x%016llx | %s\n",
217 reg->va.addr, reg->va.range, reg->va.addr + reg->va.range,
218 reg->sparse ? "true" : "false");
219 }
220 seq_puts(m, "\n");
221 seq_puts(m, " VAs | start | range | end | object | object offset\n");
222 seq_puts(m, "-------------------------------------------------------------------------------------------------------------\n");
223 drm_gpuva_iter_for_each(it) {
224 struct drm_gpuva *va = it.va;
225
226 seq_printf(m, " | 0x%016llx | 0x%016llx | 0x%016llx | 0x%016llx | 0x%016llx\n",
227 va->va.addr, va->va.range, va->va.addr + va->va.range,
> 228 (u64)va->gem.obj, va->gem.offset);
229 }
230
231 return 0;
232 }
233 EXPORT_SYMBOL(drm_debugfs_gpuva_info);
234
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next prev parent reply other threads:[~2023-02-18 2:50 UTC|newest]
Thread overview: 188+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-17 13:44 [PATCH drm-next v2 00/16] [RFC] DRM GPUVA Manager & Nouveau VM_BIND UAPI Danilo Krummrich
2023-02-17 13:44 ` Danilo Krummrich
2023-02-17 13:44 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:44 ` [PATCH drm-next v2 01/16] drm: execution context for GEM buffers Danilo Krummrich
2023-02-17 13:44 ` Danilo Krummrich
2023-02-17 13:44 ` [Nouveau] " Danilo Krummrich
2023-02-17 16:00 ` Christian König
2023-02-17 16:00 ` Christian König
2023-02-17 16:00 ` [Nouveau] " Christian König
2023-02-21 14:56 ` Danilo Krummrich
2023-02-21 14:56 ` Danilo Krummrich
2023-02-21 14:56 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:44 ` [PATCH drm-next v2 02/16] drm/exec: fix memory leak in drm_exec_prepare_obj() Danilo Krummrich
2023-02-17 13:44 ` Danilo Krummrich
2023-02-17 13:44 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:44 ` [PATCH drm-next v2 03/16] maple_tree: split up MA_STATE() macro Danilo Krummrich
2023-02-17 13:44 ` Danilo Krummrich
2023-02-17 13:44 ` [Nouveau] " Danilo Krummrich
2023-02-17 18:34 ` Liam R. Howlett
2023-02-17 18:34 ` Liam R. Howlett
2023-02-17 18:34 ` [Nouveau] " Liam R. Howlett
2023-02-20 13:48 ` Danilo Krummrich
2023-02-20 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-21 16:52 ` Liam R. Howlett
2023-02-21 16:52 ` Liam R. Howlett
2023-02-21 16:52 ` [Nouveau] " Liam R. Howlett
2023-02-17 19:45 ` Matthew Wilcox
2023-02-17 19:45 ` Matthew Wilcox
2023-02-17 19:45 ` [Nouveau] " Matthew Wilcox
2023-02-20 13:48 ` Danilo Krummrich
2023-02-20 13:48 ` Danilo Krummrich
2023-02-20 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:44 ` [PATCH drm-next v2 04/16] maple_tree: add flag MT_FLAGS_LOCK_NONE Danilo Krummrich
2023-02-17 13:44 ` Danilo Krummrich
2023-02-17 13:44 ` [Nouveau] " Danilo Krummrich
2023-02-17 18:18 ` Liam R. Howlett
2023-02-17 18:18 ` Liam R. Howlett
2023-02-17 18:18 ` [Nouveau] " Liam R. Howlett
2023-02-17 19:38 ` Matthew Wilcox
2023-02-17 19:38 ` Matthew Wilcox
2023-02-17 19:38 ` [Nouveau] " Matthew Wilcox
2023-02-20 14:00 ` Danilo Krummrich
2023-02-20 14:00 ` Danilo Krummrich
2023-02-20 14:00 ` [Nouveau] " Danilo Krummrich
2023-02-20 15:10 ` Matthew Wilcox
2023-02-20 15:10 ` Matthew Wilcox
2023-02-20 15:10 ` [Nouveau] " Matthew Wilcox
2023-02-20 17:06 ` Danilo Krummrich
2023-02-20 17:06 ` Danilo Krummrich
2023-02-20 17:06 ` [Nouveau] " Danilo Krummrich
2023-02-20 20:33 ` Matthew Wilcox
2023-02-20 20:33 ` Matthew Wilcox
2023-02-20 20:33 ` [Nouveau] " Matthew Wilcox
2023-02-21 14:37 ` Danilo Krummrich
2023-02-21 14:37 ` Danilo Krummrich
2023-02-21 14:37 ` [Nouveau] " Danilo Krummrich
2023-02-21 18:31 ` Matthew Wilcox
2023-02-21 18:31 ` Matthew Wilcox
2023-02-21 18:31 ` [Nouveau] " Matthew Wilcox
2023-02-22 16:11 ` Danilo Krummrich
2023-02-22 16:11 ` Danilo Krummrich
2023-02-22 16:11 ` [Nouveau] " Danilo Krummrich
2023-02-22 16:32 ` Matthew Wilcox
2023-02-22 16:32 ` Matthew Wilcox
2023-02-22 16:32 ` [Nouveau] " Matthew Wilcox
2023-02-22 17:28 ` Danilo Krummrich
2023-02-22 17:28 ` Danilo Krummrich
2023-02-22 17:28 ` [Nouveau] " Danilo Krummrich
2023-02-27 17:39 ` Danilo Krummrich
2023-02-27 17:39 ` Danilo Krummrich
2023-02-27 17:39 ` [Nouveau] " Danilo Krummrich
2023-02-27 18:36 ` Matthew Wilcox
2023-02-27 18:36 ` Matthew Wilcox
2023-02-27 18:36 ` [Nouveau] " Matthew Wilcox
2023-02-27 18:59 ` Danilo Krummrich
2023-02-27 18:59 ` Danilo Krummrich
2023-02-27 18:59 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:44 ` [PATCH drm-next v2 05/16] drm: manager to keep track of GPUs VA mappings Danilo Krummrich
2023-02-17 13:44 ` Danilo Krummrich
2023-02-17 13:44 ` [Nouveau] " Danilo Krummrich
2023-02-18 1:05 ` kernel test robot
2023-02-18 1:05 ` kernel test robot
2023-02-18 1:05 ` [Nouveau] " kernel test robot
2023-02-21 18:20 ` Liam R. Howlett
2023-02-21 18:20 ` Liam R. Howlett
2023-02-21 18:20 ` [Nouveau] " Liam R. Howlett
2023-02-22 18:13 ` Danilo Krummrich
2023-02-22 18:13 ` Danilo Krummrich
2023-02-22 18:13 ` [Nouveau] " Danilo Krummrich
2023-02-23 19:09 ` Liam R. Howlett
2023-02-23 19:09 ` Liam R. Howlett
2023-02-23 19:09 ` [Nouveau] " Liam R. Howlett
2023-02-27 12:23 ` Danilo Krummrich
2023-02-27 12:23 ` Danilo Krummrich
2023-02-27 12:23 ` [Nouveau] " Danilo Krummrich
2023-03-02 2:38 ` Liam R. Howlett
2023-03-02 2:38 ` Liam R. Howlett
2023-03-02 2:38 ` [Nouveau] " Liam R. Howlett
2023-03-06 15:46 ` Danilo Krummrich
2023-03-06 15:46 ` [Nouveau] " Danilo Krummrich
2023-03-07 22:43 ` Liam R. Howlett
2023-03-07 22:43 ` Liam R. Howlett
2023-03-07 22:43 ` [Nouveau] " Liam R. Howlett
2023-03-13 23:46 ` Danilo Krummrich
2023-03-13 23:46 ` Danilo Krummrich
2023-03-13 23:46 ` [Nouveau] " Danilo Krummrich
2023-03-20 19:16 ` Liam R. Howlett
2023-03-20 19:16 ` Liam R. Howlett
2023-03-20 19:16 ` [Nouveau] " Liam R. Howlett
2023-02-28 2:17 ` Danilo Krummrich
2023-02-28 2:17 ` [Nouveau] " Danilo Krummrich
2023-02-28 16:24 ` Liam R. Howlett
2023-02-28 16:24 ` Liam R. Howlett
2023-02-28 16:24 ` [Nouveau] " Liam R. Howlett
2023-03-06 13:39 ` Danilo Krummrich
2023-03-06 13:39 ` [Nouveau] " Danilo Krummrich
2023-02-22 10:25 ` Christian König
2023-02-22 10:25 ` Christian König
2023-02-22 10:25 ` [Nouveau] " Christian König
2023-02-22 15:07 ` Danilo Krummrich
2023-02-22 15:07 ` Danilo Krummrich
2023-02-22 15:07 ` [Nouveau] " Danilo Krummrich
2023-02-22 15:14 ` Christian König
2023-02-22 15:14 ` Christian König
2023-02-22 15:14 ` [Nouveau] " Christian König
2023-02-22 16:40 ` Danilo Krummrich
2023-02-22 16:40 ` Danilo Krummrich
2023-02-22 16:40 ` [Nouveau] " Danilo Krummrich
2023-02-23 7:06 ` Christian König
2023-02-23 7:06 ` Christian König
2023-02-23 7:06 ` [Nouveau] " Christian König
2023-02-23 14:12 ` Danilo Krummrich
2023-02-23 14:12 ` Danilo Krummrich
2023-02-23 14:12 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:48 ` [PATCH drm-next v2 06/16] drm: debugfs: provide infrastructure to dump a DRM GPU VA space Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-18 2:47 ` kernel test robot [this message]
2023-02-18 2:47 ` kernel test robot
2023-02-18 2:47 ` [Nouveau] " kernel test robot
2023-02-17 13:48 ` [PATCH drm-next v2 07/16] drm/nouveau: new VM_BIND uapi interfaces Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:48 ` [PATCH drm-next v2 08/16] drm/nouveau: get vmm via nouveau_cli_vmm() Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:48 ` [PATCH drm-next v2 09/16] drm/nouveau: bo: initialize GEM GPU VA interface Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:48 ` [PATCH drm-next v2 10/16] drm/nouveau: move usercopy helpers to nouveau_drv.h Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:48 ` [PATCH drm-next v2 11/16] drm/nouveau: fence: fail to emit when fence context is killed Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:48 ` [PATCH drm-next v2 12/16] drm/nouveau: chan: provide nouveau_channel_kill() Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:48 ` [PATCH drm-next v2 13/16] drm/nouveau: nvkm/vmm: implement raw ops to manage uvmm Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-18 1:16 ` kernel test robot
2023-02-18 1:16 ` kernel test robot
2023-02-18 1:16 ` [Nouveau] " kernel test robot
2023-02-17 13:48 ` [PATCH drm-next v2 14/16] drm/nouveau: implement uvmm for user mode bindings Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:48 ` [PATCH drm-next v2 15/16] drm/nouveau: implement new VM_BIND UAPI Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-02-17 13:48 ` [PATCH drm-next v2 16/16] drm/nouveau: debugfs: implement DRM GPU VA debugfs Danilo Krummrich
2023-02-17 13:48 ` Danilo Krummrich
2023-02-17 13:48 ` [Nouveau] " Danilo Krummrich
2023-03-09 9:12 ` [PATCH drm-next v2 00/16] [RFC] DRM GPUVA Manager & Nouveau VM_BIND UAPI Boris Brezillon
2023-03-09 9:12 ` Boris Brezillon
2023-03-09 9:12 ` [Nouveau] " Boris Brezillon
2023-03-09 9:48 ` Boris Brezillon
2023-03-09 9:48 ` Boris Brezillon
2023-03-09 9:48 ` [Nouveau] " Boris Brezillon
2023-03-10 16:45 ` Danilo Krummrich
2023-03-10 16:45 ` Danilo Krummrich
2023-03-10 16:45 ` [Nouveau] " Danilo Krummrich
2023-03-10 17:25 ` Boris Brezillon
2023-03-10 17:25 ` Boris Brezillon
2023-03-10 17:25 ` [Nouveau] " Boris Brezillon
2023-03-10 20:06 ` Danilo Krummrich
2023-03-10 20:06 ` Danilo Krummrich
2023-03-10 20:06 ` [Nouveau] " Danilo Krummrich
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=202302181014.L0SHo3S1-lkp@intel.com \
--to=lkp@intel.com \
--cc=Liam.Howlett@oracle.com \
--cc=airlied@gmail.com \
--cc=alexdeucher@gmail.com \
--cc=bagasdotme@gmail.com \
--cc=boris.brezillon@collabora.com \
--cc=bskeggs@redhat.com \
--cc=christian.koenig@amd.com \
--cc=corbet@lwn.net \
--cc=dakr@redhat.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=jason@jlekstrand.net \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=matthew.brost@intel.com \
--cc=mripard@kernel.org \
--cc=nouveau@lists.freedesktop.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=ogabbay@kernel.org \
--cc=tzimmermann@suse.de \
--cc=willy@infradead.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.