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: Shaohua Li <shaohua.li@intel.com> Cc: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
1125b4e394
commit
9f1b16a51e
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue