Re: [PATCH 2/5] drm/debugfs: rework debugfs directory creation v3

2023-04-24 Thread Christian König
Am 17.04.23 um 12:26 schrieb Stanislaw Gruszka: On Mon, Apr 17, 2023 at 09:18:31AM +0200, Christian König wrote: Am 16.04.23 um 18:03 schrieb Tomer Tayar: On 12/04/2023 17:52, Christian König wrote: /** - * accel_debugfs_init() - Initialize debugfs for accel minor + * accel_debugfs_ini

Re: [PATCH 2/5] drm/debugfs: rework debugfs directory creation v3

2023-04-17 Thread Stanislaw Gruszka
On Mon, Apr 17, 2023 at 09:18:31AM +0200, Christian König wrote: > > > Am 16.04.23 um 18:03 schrieb Tomer Tayar: > > On 12/04/2023 17:52, Christian König wrote: > > >/** > > > - * accel_debugfs_init() - Initialize debugfs for accel minor > > > + * accel_debugfs_init() - Register debugfs for a

Re: [PATCH 2/5] drm/debugfs: rework debugfs directory creation v3

2023-04-17 Thread Christian König
Am 16.04.23 um 18:03 schrieb Tomer Tayar: On 12/04/2023 17:52, Christian König wrote: /** - * accel_debugfs_init() - Initialize debugfs for accel minor + * accel_debugfs_init() - Register debugfs for accel minor + * @dev: Pointer to the device instance. + * + * This function creates a root

Re: [PATCH 2/5] drm/debugfs: rework debugfs directory creation v3

2023-04-16 Thread Tomer Tayar
On 12/04/2023 17:52, Christian König wrote: > /** > - * accel_debugfs_init() - Initialize debugfs for accel minor > + * accel_debugfs_init() - Register debugfs for accel minor > + * @dev: Pointer to the device instance. > + * > + * This function creates a root directory for the device in debugfs.

Re: [PATCH 2/5] drm/debugfs: rework debugfs directory creation v3

2023-04-13 Thread kernel test robot
3/20230412-235231 base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next patch link: https://lore.kernel.org/r/20230412145206.2483-3-christian.koenig%40amd.com patch subject: [PATCH 2/5] drm/debugfs: rework debugfs directory creation v3 config: hexagon-randconfig-r002-20230409 (https://d

Re: [PATCH 2/5] drm/debugfs: rework debugfs directory creation v3

2023-04-13 Thread kernel test robot
3/20230412-235231 base: git://anongit.freedesktop.org/drm/drm-misc drm-misc-next patch link: https://lore.kernel.org/r/20230412145206.2483-3-christian.koenig%40amd.com patch subject: [PATCH 2/5] drm/debugfs: rework debugfs directory creation v3 config: arc-randconfig-r043-20230413 (https://downl

[PATCH 2/5] drm/debugfs: rework debugfs directory creation v3

2023-04-12 Thread Christian König
Instead of the per minor directories only create a single debugfs directory for the whole device directly when the device is initialized. For DRM devices each minor gets a symlink to the per device directory for now until we can be sure that this isn't useful any more in any way. Accel devices cr