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

Commit 9f1b16a5 authored by Shaohua Li's avatar Shaohua Li Committed by Linus Torvalds
Browse files

memory_probe: fix wrong sysfs file attribute



This attribute just has a write operation.

[akpm@linux-foundation.org: use S_IWUSR as suggested by Randy]
Signed-off-by: default avatarShaohua Li <shaohua.li@intel.com>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1125b4e3
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -21,6 +21,8 @@
#include <linux/memory_hotplug.h>
#include <linux/memory_hotplug.h>
#include <linux/mm.h>
#include <linux/mm.h>
#include <linux/mutex.h>
#include <linux/mutex.h>
#include <linux/stat.h>

#include <asm/atomic.h>
#include <asm/atomic.h>
#include <asm/uaccess.h>
#include <asm/uaccess.h>


@@ -325,7 +327,7 @@ memory_probe_store(struct class *class, const char *buf, size_t count)


	return count;
	return count;
}
}
static CLASS_ATTR(probe, 0700, NULL, memory_probe_store);
static CLASS_ATTR(probe, S_IWUSR, NULL, memory_probe_store);


static int memory_probe_init(void)
static int memory_probe_init(void)
{
{