Re: [PATCH] drm: use proc_create_data()

From: Dave Airlie
Date: Sun Aug 30 2009 - 19:41:28 EST



> Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx>

I pushed a slightly modified version to drm-next, it moves the
filling out of tmp before the data create.

Thanks,
Dave.

> ---
>
> drivers/gpu/drm/drm_proc.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
> --- a/drivers/gpu/drm/drm_proc.c
> +++ b/drivers/gpu/drm/drm_proc.c
> @@ -106,7 +106,8 @@ int drm_proc_create_files(struct drm_info_list *files, int count,
> continue;
>
> tmp = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL);
> - ent = create_proc_entry(files[i].name, S_IFREG | S_IRUGO, root);
> + ent = proc_create_data(files[i].name, S_IRUGO, root,
> + &drm_proc_fops, tmp);
> if (!ent) {
> DRM_ERROR("Cannot create /proc/dri/%s/%s\n",
> name, files[i].name);
> @@ -115,8 +116,6 @@ int drm_proc_create_files(struct drm_info_list *files, int count,
> goto fail;
> }
>
> - ent->proc_fops = &drm_proc_fops;
> - ent->data = tmp;
> tmp->minor = minor;
> tmp->info_ent = &files[i];
> list_add(&(tmp->list), &(minor->proc_nodes.list));
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/