]> Pileus Git - ~andy/linux/blobdiff - kernel/rtmutex-tester.c
locking/rtmutex/tester: Set correct permissions on sysfs files
[~andy/linux] / kernel / rtmutex-tester.c
index 7890b10084a71e4deff2a1ed652c7011358fc3b4..1d96dd0d93c1aa24eaff65f13b9df2cc22945ae2 100644 (file)
@@ -14,6 +14,7 @@
 #include <linux/spinlock.h>
 #include <linux/timer.h>
 #include <linux/freezer.h>
+#include <linux/stat.h>
 
 #include "rtmutex.h"
 
@@ -366,8 +367,8 @@ static ssize_t sysfs_test_status(struct device *dev, struct device_attribute *at
        return curr - buf;
 }
 
-static DEVICE_ATTR(status, 0600, sysfs_test_status, NULL);
-static DEVICE_ATTR(command, 0600, NULL, sysfs_test_command);
+static DEVICE_ATTR(status, S_IRUSR, sysfs_test_status, NULL);
+static DEVICE_ATTR(command, S_IWUSR, NULL, sysfs_test_command);
 
 static struct bus_type rttest_subsys = {
        .name = "rttest",