projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
770619a
)
dax: Simplify root read-only definition for the 'resource' attribute
author
Dan Williams
<dan.j.williams@intel.com>
Wed, 13 Nov 2019 01:12:38 +0000
(17:12 -0800)
committer
Dan Williams
<dan.j.williams@intel.com>
Tue, 19 Nov 2019 17:52:12 +0000
(09:52 -0800)
Rather than update the permission in ->is_visible() set the permission
directly at declaration time.
Cc: Ira Weiny <ira.weiny@intel.com>
Cc: Vishal Verma <vishal.l.verma@intel.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
Link:
https://lore.kernel.org/r/157309904959.1582359.7281180042781955506.stgit@dwillia2-desk3.amr.corp.intel.com
drivers/dax/bus.c
patch
|
blob
|
history
diff --git
a/drivers/dax/bus.c
b/drivers/dax/bus.c
index
f3e6e00
..
ce6d648
100644
(file)
--- a/
drivers/dax/bus.c
+++ b/
drivers/dax/bus.c
@@
-309,7
+309,7
@@
static ssize_t resource_show(struct device *dev,
return sprintf(buf, "%#llx\n", dev_dax_resource(dev_dax));
}
-static DEVICE_ATTR
_RO(resource
);
+static DEVICE_ATTR
(resource, 0400, resource_show, NULL
);
static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
char *buf)
@@
-329,8
+329,6
@@
static umode_t dev_dax_visible(struct kobject *kobj, struct attribute *a, int n)
if (a == &dev_attr_target_node.attr && dev_dax_target_node(dev_dax) < 0)
return 0;
- if (a == &dev_attr_resource.attr)
- return 0400;
return a->mode;
}