Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca80ea73 authored by Isaac J. Manjarres's avatar Isaac J. Manjarres
Browse files

ion: msm: Remove dentry_path() usage on heap debugfs file creation errors



Knowing the path of which heap stats debugfs file was not
created is not any more useful than simply knowing that
the heap stats debugfs file could not be created for a
specific heap. Thus, only print the name of the heap and
debugfs file that could not be created.

Change-Id: I177a49cdb5117996971cae626d65ef9cb75c83d8
Signed-off-by: default avatarIsaac J. Manjarres <isaacm@codeaurora.org>
parent 630194ff
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -121,7 +121,7 @@ static const struct file_operations msm_ion_debug_heap_fops = {

static void msm_ion_debugfs_create_file(struct msm_ion_heap *msm_heap)
{
	char debug_name[64], buf[256];
	char debug_name[64];
	struct dentry *debugfs_root;
	struct ion_heap *heap;

@@ -132,8 +132,9 @@ static void msm_ion_debugfs_create_file(struct msm_ion_heap *msm_heap)
		scnprintf(debug_name, 64, "%s_stats", heap->name);
		if (!debugfs_create_file(debug_name, 0664, debugfs_root,
					 msm_heap, &msm_ion_debug_heap_fops))
			pr_err("Failed to create heap debugfs at %s/%s\n",
			       dentry_path(debugfs_root, buf, 256), debug_name);
			dev_err(msm_heap->dev,
				"Failed to create %s debugfs entry\n",
				debug_name);
	}
}