提交 af7d9f0c 编写于 作者: D Dan Williams

libnvdimm, pfn: fix align attribute

Fix the format specifier so that the attribute can be parsed correctly.
Currently it returns decimal 1000 for a 4096-byte alignment.

Cc: <stable@vger.kernel.org>
Reported-by: NDave Jiang <dave.jiang@intel.com>
Fixes: 315c5625 ("libnvdimm, pfn: add 'align' attribute, default to HPAGE_SIZE")
Signed-off-by: NDan Williams <dan.j.williams@intel.com>
上级 3a71b3c8
...@@ -108,7 +108,7 @@ static ssize_t align_show(struct device *dev, ...@@ -108,7 +108,7 @@ static ssize_t align_show(struct device *dev,
{ {
struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev); struct nd_pfn *nd_pfn = to_nd_pfn_safe(dev);
return sprintf(buf, "%lx\n", nd_pfn->align); return sprintf(buf, "%ld\n", nd_pfn->align);
} }
static ssize_t __align_store(struct nd_pfn *nd_pfn, const char *buf) static ssize_t __align_store(struct nd_pfn *nd_pfn, const char *buf)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册