]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ACPI: debugfs custom_method open to non-root
authorDave Jones <davej@redhat.com>
Sat, 13 Nov 2010 05:58:54 +0000 (00:58 -0500)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 17 Apr 2011 20:16:01 +0000 (16:16 -0400)
commit ed3aada1bf34c5a9e98af167f125f8a740fc726a upstream

Currently we have:

  --w--w--w-. 1 root root 0 2010-11-11 14:56 /sys/kernel/debug/acpi/custom_method

which is just crazy. Change this to --w-------.

[PG: back in 2.6.34, the file was called debug.c, not debugfs.c]

Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
drivers/acpi/debug.c

index 146135e7a6a125731ec902e898bfe4b9364c0d6e..469f04940cf2d713a31e8a20bd2fe6ddbfb6c886 100644 (file)
@@ -258,7 +258,7 @@ static int acpi_debugfs_init(void)
        if (!acpi_dir)
                goto err;
 
-       cm_dentry = debugfs_create_file("custom_method", S_IWUGO,
+       cm_dentry = debugfs_create_file("custom_method", S_IWUSR,
                                        acpi_dir, NULL, &cm_fops);
        if (!cm_dentry)
                goto err;