* Re: btt ndctl question
[not found] <5797C9DE.3070901@redhat.com>
@ 2016-07-26 20:58 ` Vishal Verma
2016-07-26 21:24 ` Verma, Vishal L
2016-07-27 0:43 ` Dan Williams
0 siblings, 2 replies; 8+ messages in thread
From: Vishal Verma @ 2016-07-26 20:58 UTC (permalink / raw)
To: Linda Knippers; +Cc: linux-nvdimm
On 07/26, Linda Knippers wrote:
> My system has 4 8G NVDIMMs and I have them configured in different ways, as you can
> see from the ndctl output:
>
> $ ndctl list
> [
> {
> "dev":"namespace3.0",
> "mode":"raw",
> "size":8589934592,
> "blockdev":"pmem3"
> },
> {
> "dev":"namespace2.0",
> "mode":"memory",
> "size":8587837440,
> "uuid":"2567d762-68ae-486b-a6eb-2d3ab1b9dca9",
> "blockdev":"pmem2"
> },
> {
> "dev":"namespace1.0",
> "mode":"sector",
> "uuid":"44fb474e-7db8-4438-ad95-05ecb9f2075e",
> "sector_size":4096,
> "blockdev":"pmem1s"
> },
> {
> "dev":"namespace0.0",
> "mode":"memory",
> "size":8453619712,
> "uuid":"933ed54b-5b64-47f1-8409-c88f7c846522",
> "blockdev":"pmem0"
> }
> ]
>
> The two memory namespaces have different sizes because one is --map=dev and the other is --map=mem.
> It would be nice if the map option was displayed but my question is about the size value for the
> btt device, or lack of one.
>
> All the namespaces show a size except for the btt. The btt only shows a sector size. There
> is no size value exposed by the btt sysfs information, which is probably why it's not in ndctl.
>
> I know the size can be gotten from the block device but it looks like an omission here.
> Is this a bug or a feature?
Probably an omission :)
This patch should expose a size attribute in sysfs:
$ cat /sys/bus/nd/devices/btt7.0/size
32440320
I can look at the 'ndctl list' enabling too if this looks good.
8<------
>From fb119bf4380d1d65d82754e581bbd41161c2100f Mon Sep 17 00:00:00 2001
From: Vishal Verma <vishal.l.verma@intel.com>
Date: Tue, 26 Jul 2016 14:54:39 -0600
Subject: [PATCH] nvdimm, btt: add a size attribute for BTTs
To be consistent with other namespaces, expose a 'size' attribute for
BTT devices also.
Cc: Dan Williams <dan.j.williams@intel.com>
Reported-by: Linda Knippers <linda.knippers@hpe.com>
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
---
drivers/nvdimm/btt.c | 1 +
drivers/nvdimm/btt_devs.c | 15 +++++++++++++++
drivers/nvdimm/nd.h | 1 +
3 files changed, 17 insertions(+)
diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c
index 68a7c3c..71ce0dc 100644
--- a/drivers/nvdimm/btt.c
+++ b/drivers/nvdimm/btt.c
@@ -1270,6 +1270,7 @@ static int btt_blk_init(struct btt *btt)
}
}
set_capacity(btt->btt_disk, btt->nlba * btt->sector_size >> 9);
+ btt->nd_btt->size = btt->nlba * btt->sector_size;
revalidate_disk(btt->btt_disk);
return 0;
diff --git a/drivers/nvdimm/btt_devs.c b/drivers/nvdimm/btt_devs.c
index 3fa7919..b54cfc7 100644
--- a/drivers/nvdimm/btt_devs.c
+++ b/drivers/nvdimm/btt_devs.c
@@ -140,10 +140,25 @@ static ssize_t namespace_store(struct device *dev,
}
static DEVICE_ATTR_RW(namespace);
+
+static ssize_t size_show(struct device *dev,
+ struct device_attribute *attr, char *buf)
+{
+ struct nd_btt *nd_btt = to_nd_btt(dev);
+ ssize_t rc;
+
+ nvdimm_bus_lock(dev);
+ rc = sprintf(buf, "%llu\n", nd_btt->size);
+ nvdimm_bus_unlock(dev);
+ return rc;
+}
+static DEVICE_ATTR_RO(size);
+
static struct attribute *nd_btt_attributes[] = {
&dev_attr_sector_size.attr,
&dev_attr_namespace.attr,
&dev_attr_uuid.attr,
+ &dev_attr_size.attr,
NULL,
};
diff --git a/drivers/nvdimm/nd.h b/drivers/nvdimm/nd.h
index 4047639..8024a0e 100644
--- a/drivers/nvdimm/nd.h
+++ b/drivers/nvdimm/nd.h
@@ -143,6 +143,7 @@ struct nd_btt {
struct nd_namespace_common *ndns;
struct btt *btt;
unsigned long lbasize;
+ u64 size;
u8 *uuid;
int id;
};
--
2.7.4
>
> -- ljk
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: btt ndctl question
2016-07-26 20:58 ` btt ndctl question Vishal Verma
@ 2016-07-26 21:24 ` Verma, Vishal L
2016-07-26 21:31 ` Dan Williams
2016-07-27 0:43 ` Dan Williams
1 sibling, 1 reply; 8+ messages in thread
From: Verma, Vishal L @ 2016-07-26 21:24 UTC (permalink / raw)
To: lknipper@redhat.com; +Cc: linux-nvdimm@lists.01.org
On Tue, 2016-07-26 at 14:58 -0600, Vishal Verma wrote:
> On 07/26, Linda Knippers wrote:
> >
> > My system has 4 8G NVDIMMs and I have them configured in different
> > ways, as you can
> > see from the ndctl output:
> >
> > $ ndctl list
> > [
> > {
> > "dev":"namespace3.0",
> > "mode":"raw",
> > "size":8589934592,
> > "blockdev":"pmem3"
> > },
> > {
> > "dev":"namespace2.0",
> > "mode":"memory",
> > "size":8587837440,
> > "uuid":"2567d762-68ae-486b-a6eb-2d3ab1b9dca9",
> > "blockdev":"pmem2"
> > },
> > {
> > "dev":"namespace1.0",
> > "mode":"sector",
> > "uuid":"44fb474e-7db8-4438-ad95-05ecb9f2075e",
> > "sector_size":4096,
> > "blockdev":"pmem1s"
> > },
> > {
> > "dev":"namespace0.0",
> > "mode":"memory",
> > "size":8453619712,
> > "uuid":"933ed54b-5b64-47f1-8409-c88f7c846522",
> > "blockdev":"pmem0"
> > }
> > ]
> >
> > The two memory namespaces have different sizes because one is --
> > map=dev and the other is --map=mem.
> > It would be nice if the map option was displayed but my question is
> > about the size value for the
> > btt device, or lack of one.
> >
> > All the namespaces show a size except for the btt. The btt only
> > shows a sector size. There
> > is no size value exposed by the btt sysfs information, which is
> > probably why it's not in ndctl.
> >
> > I know the size can be gotten from the block device but it looks
> > like an omission here.
> > Is this a bug or a feature?
>
> Probably an omission :)
> This patch should expose a size attribute in sysfs:
>
> $ cat /sys/bus/nd/devices/btt7.0/size
> 32440320
>
> I can look at the 'ndctl list' enabling too if this looks good.
>
> 8<------
>
> From fb119bf4380d1d65d82754e581bbd41161c2100f Mon Sep 17 00:00:00 2001
> From: Vishal Verma <vishal.l.verma@intel.com>
> Date: Tue, 26 Jul 2016 14:54:39 -0600
> Subject: [PATCH] nvdimm, btt: add a size attribute for BTTs
>
> To be consistent with other namespaces, expose a 'size' attribute for
> BTT devices also.
>
> Cc: Dan Williams <dan.j.williams@intel.com>
> Reported-by: Linda Knippers <linda.knippers@hpe.com>
> Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
> ---
> drivers/nvdimm/btt.c | 1 +
> drivers/nvdimm/btt_devs.c | 15 +++++++++++++++
> drivers/nvdimm/nd.h | 1 +
> 3 files changed, 17 insertions(+)
>
> diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c
> index 68a7c3c..71ce0dc 100644
> --- a/drivers/nvdimm/btt.c
> +++ b/drivers/nvdimm/btt.c
> @@ -1270,6 +1270,7 @@ static int btt_blk_init(struct btt *btt)
> }
> }
> set_capacity(btt->btt_disk, btt->nlba * btt->sector_size >>
> 9);
> + btt->nd_btt->size = btt->nlba * btt->sector_size;
Blargh, I think I was a bit hasty; I think this should be:
+ btt->nd_btt->size = btt->nlba * (u64)btt->sector_size;
Right? (I always get bit by integer promotion rules...)
> revalidate_disk(btt->btt_disk);
>
> return 0;
> diff --git a/drivers/nvdimm/btt_devs.c b/drivers/nvdimm/btt_devs.c
> index 3fa7919..b54cfc7 100644
> --- a/drivers/nvdimm/btt_devs.c
> +++ b/drivers/nvdimm/btt_devs.c
> @@ -140,10 +140,25 @@ static ssize_t namespace_store(struct device
> *dev,
> }
> static DEVICE_ATTR_RW(namespace);
>
> +
> +static ssize_t size_show(struct device *dev,
> + struct device_attribute *attr, char *buf)
> +{
> + struct nd_btt *nd_btt = to_nd_btt(dev);
> + ssize_t rc;
> +
> + nvdimm_bus_lock(dev);
> + rc = sprintf(buf, "%llu\n", nd_btt->size);
> + nvdimm_bus_unlock(dev);
> + return rc;
> +}
> +static DEVICE_ATTR_RO(size);
> +
> static struct attribute *nd_btt_attributes[] = {
> &dev_attr_sector_size.attr,
> &dev_attr_namespace.attr,
> &dev_attr_uuid.attr,
> + &dev_attr_size.attr,
> NULL,
> };
>
> diff --git a/drivers/nvdimm/nd.h b/drivers/nvdimm/nd.h
> index 4047639..8024a0e 100644
> --- a/drivers/nvdimm/nd.h
> +++ b/drivers/nvdimm/nd.h
> @@ -143,6 +143,7 @@ struct nd_btt {
> struct nd_namespace_common *ndns;
> struct btt *btt;
> unsigned long lbasize;
> + u64 size;
> u8 *uuid;
> int id;
> };
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: btt ndctl question
2016-07-26 21:24 ` Verma, Vishal L
@ 2016-07-26 21:31 ` Dan Williams
2016-07-26 21:41 ` Vishal Verma
2016-07-26 21:43 ` Linda Knippers
0 siblings, 2 replies; 8+ messages in thread
From: Dan Williams @ 2016-07-26 21:31 UTC (permalink / raw)
To: Verma, Vishal L; +Cc: lknipper@redhat.com, linux-nvdimm@lists.01.org
On Tue, Jul 26, 2016 at 2:24 PM, Verma, Vishal L
<vishal.l.verma@intel.com> wrote:
> On Tue, 2016-07-26 at 14:58 -0600, Vishal Verma wrote:
>> On 07/26, Linda Knippers wrote:
>> >
>> > My system has 4 8G NVDIMMs and I have them configured in different
>> > ways, as you can
>> > see from the ndctl output:
>> >
>> > $ ndctl list
>> > [
>> > {
>> > "dev":"namespace3.0",
>> > "mode":"raw",
>> > "size":8589934592,
>> > "blockdev":"pmem3"
>> > },
>> > {
>> > "dev":"namespace2.0",
>> > "mode":"memory",
>> > "size":8587837440,
>> > "uuid":"2567d762-68ae-486b-a6eb-2d3ab1b9dca9",
>> > "blockdev":"pmem2"
>> > },
>> > {
>> > "dev":"namespace1.0",
>> > "mode":"sector",
>> > "uuid":"44fb474e-7db8-4438-ad95-05ecb9f2075e",
>> > "sector_size":4096,
>> > "blockdev":"pmem1s"
>> > },
>> > {
>> > "dev":"namespace0.0",
>> > "mode":"memory",
>> > "size":8453619712,
>> > "uuid":"933ed54b-5b64-47f1-8409-c88f7c846522",
>> > "blockdev":"pmem0"
>> > }
>> > ]
>> >
>> > The two memory namespaces have different sizes because one is --
>> > map=dev and the other is --map=mem.
>> > It would be nice if the map option was displayed but my question is
>> > about the size value for the
>> > btt device, or lack of one.
>> >
>> > All the namespaces show a size except for the btt. The btt only
>> > shows a sector size. There
>> > is no size value exposed by the btt sysfs information, which is
>> > probably why it's not in ndctl.
>> >
>> > I know the size can be gotten from the block device but it looks
>> > like an omission here.
>> > Is this a bug or a feature?
>>
>> Probably an omission :)
>> This patch should expose a size attribute in sysfs:
>>
>> $ cat /sys/bus/nd/devices/btt7.0/size
>> 32440320
>>
>> I can look at the 'ndctl list' enabling too if this looks good.
>>
>> 8<------
>>
>> From fb119bf4380d1d65d82754e581bbd41161c2100f Mon Sep 17 00:00:00 2001
>> From: Vishal Verma <vishal.l.verma@intel.com>
>> Date: Tue, 26 Jul 2016 14:54:39 -0600
>> Subject: [PATCH] nvdimm, btt: add a size attribute for BTTs
>>
>> To be consistent with other namespaces, expose a 'size' attribute for
>> BTT devices also.
>>
>> Cc: Dan Williams <dan.j.williams@intel.com>
>> Reported-by: Linda Knippers <linda.knippers@hpe.com>
>> Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
>> ---
>> drivers/nvdimm/btt.c | 1 +
>> drivers/nvdimm/btt_devs.c | 15 +++++++++++++++
>> drivers/nvdimm/nd.h | 1 +
>> 3 files changed, 17 insertions(+)
>>
>> diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c
>> index 68a7c3c..71ce0dc 100644
>> --- a/drivers/nvdimm/btt.c
>> +++ b/drivers/nvdimm/btt.c
>> @@ -1270,6 +1270,7 @@ static int btt_blk_init(struct btt *btt)
>> }
>> }
>> set_capacity(btt->btt_disk, btt->nlba * btt->sector_size >>
>> 9);
>> + btt->nd_btt->size = btt->nlba * btt->sector_size;
>
> Blargh, I think I was a bit hasty; I think this should be:
>
> + btt->nd_btt->size = btt->nlba * (u64)btt->sector_size;
>
> Right? (I always get bit by integer promotion rules...)
...but at this point we're identical to what the block layer is
reporting. The other 'size' attributes are communicating the raw
byte-aligned capacity of the namespace minus local driver overhead.
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: btt ndctl question
2016-07-26 21:31 ` Dan Williams
@ 2016-07-26 21:41 ` Vishal Verma
2016-07-26 21:55 ` Dan Williams
2016-07-26 21:43 ` Linda Knippers
1 sibling, 1 reply; 8+ messages in thread
From: Vishal Verma @ 2016-07-26 21:41 UTC (permalink / raw)
To: Dan Williams; +Cc: lknipper@redhat.com, linux-nvdimm@lists.01.org
On 07/26, Dan Williams wrote:
> On Tue, Jul 26, 2016 at 2:24 PM, Verma, Vishal L
> <vishal.l.verma@intel.com> wrote:
> > On Tue, 2016-07-26 at 14:58 -0600, Vishal Verma wrote:
> >> On 07/26, Linda Knippers wrote:
> >> >
> >> > My system has 4 8G NVDIMMs and I have them configured in different
> >> > ways, as you can
> >> > see from the ndctl output:
> >> >
> >> > $ ndctl list
> >> > [
> >> > {
> >> > "dev":"namespace3.0",
> >> > "mode":"raw",
> >> > "size":8589934592,
> >> > "blockdev":"pmem3"
> >> > },
> >> > {
> >> > "dev":"namespace2.0",
> >> > "mode":"memory",
> >> > "size":8587837440,
> >> > "uuid":"2567d762-68ae-486b-a6eb-2d3ab1b9dca9",
> >> > "blockdev":"pmem2"
> >> > },
> >> > {
> >> > "dev":"namespace1.0",
> >> > "mode":"sector",
> >> > "uuid":"44fb474e-7db8-4438-ad95-05ecb9f2075e",
> >> > "sector_size":4096,
> >> > "blockdev":"pmem1s"
> >> > },
> >> > {
> >> > "dev":"namespace0.0",
> >> > "mode":"memory",
> >> > "size":8453619712,
> >> > "uuid":"933ed54b-5b64-47f1-8409-c88f7c846522",
> >> > "blockdev":"pmem0"
> >> > }
> >> > ]
> >> >
> >> > The two memory namespaces have different sizes because one is --
> >> > map=dev and the other is --map=mem.
> >> > It would be nice if the map option was displayed but my question is
> >> > about the size value for the
> >> > btt device, or lack of one.
> >> >
> >> > All the namespaces show a size except for the btt. The btt only
> >> > shows a sector size. There
> >> > is no size value exposed by the btt sysfs information, which is
> >> > probably why it's not in ndctl.
> >> >
> >> > I know the size can be gotten from the block device but it looks
> >> > like an omission here.
> >> > Is this a bug or a feature?
> >>
> >> Probably an omission :)
> >> This patch should expose a size attribute in sysfs:
> >>
> >> $ cat /sys/bus/nd/devices/btt7.0/size
> >> 32440320
> >>
> >> I can look at the 'ndctl list' enabling too if this looks good.
> >>
> >> 8<------
> >>
> >> From fb119bf4380d1d65d82754e581bbd41161c2100f Mon Sep 17 00:00:00 2001
> >> From: Vishal Verma <vishal.l.verma@intel.com>
> >> Date: Tue, 26 Jul 2016 14:54:39 -0600
> >> Subject: [PATCH] nvdimm, btt: add a size attribute for BTTs
> >>
> >> To be consistent with other namespaces, expose a 'size' attribute for
> >> BTT devices also.
> >>
> >> Cc: Dan Williams <dan.j.williams@intel.com>
> >> Reported-by: Linda Knippers <linda.knippers@hpe.com>
> >> Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
> >> ---
> >> drivers/nvdimm/btt.c | 1 +
> >> drivers/nvdimm/btt_devs.c | 15 +++++++++++++++
> >> drivers/nvdimm/nd.h | 1 +
> >> 3 files changed, 17 insertions(+)
> >>
> >> diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c
> >> index 68a7c3c..71ce0dc 100644
> >> --- a/drivers/nvdimm/btt.c
> >> +++ b/drivers/nvdimm/btt.c
> >> @@ -1270,6 +1270,7 @@ static int btt_blk_init(struct btt *btt)
> >> }
> >> }
> >> set_capacity(btt->btt_disk, btt->nlba * btt->sector_size >>
> >> 9);
> >> + btt->nd_btt->size = btt->nlba * btt->sector_size;
> >
> > Blargh, I think I was a bit hasty; I think this should be:
> >
> > + btt->nd_btt->size = btt->nlba * (u64)btt->sector_size;
> >
> > Right? (I always get bit by integer promotion rules...)
>
> ...but at this point we're identical to what the block layer is
> reporting. The other 'size' attributes are communicating the raw
> byte-aligned capacity of the namespace minus local driver overhead.
Wouldn't we want to be identical to what the block layer is reporting?
The only difference would come from removing any sub-sector capacity in
our case - is that information useful/desirable? I'd think being
consistent with the block layer reporting makes most sense..
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: btt ndctl question
2016-07-26 21:31 ` Dan Williams
2016-07-26 21:41 ` Vishal Verma
@ 2016-07-26 21:43 ` Linda Knippers
1 sibling, 0 replies; 8+ messages in thread
From: Linda Knippers @ 2016-07-26 21:43 UTC (permalink / raw)
To: Dan Williams, Verma, Vishal L; +Cc: linux-nvdimm@lists.01.org
On 07/26/2016 05:31 PM, Dan Williams wrote:
> On Tue, Jul 26, 2016 at 2:24 PM, Verma, Vishal L
> <vishal.l.verma@intel.com> wrote:
>> On Tue, 2016-07-26 at 14:58 -0600, Vishal Verma wrote:
>>> On 07/26, Linda Knippers wrote:
>>>>
>>>> My system has 4 8G NVDIMMs and I have them configured in different
>>>> ways, as you can
>>>> see from the ndctl output:
>>>>
>>>> $ ndctl list
>>>> [
>>>> {
>>>> "dev":"namespace3.0",
>>>> "mode":"raw",
>>>> "size":8589934592,
>>>> "blockdev":"pmem3"
>>>> },
>>>> {
>>>> "dev":"namespace2.0",
>>>> "mode":"memory",
>>>> "size":8587837440,
>>>> "uuid":"2567d762-68ae-486b-a6eb-2d3ab1b9dca9",
>>>> "blockdev":"pmem2"
>>>> },
>>>> {
>>>> "dev":"namespace1.0",
>>>> "mode":"sector",
>>>> "uuid":"44fb474e-7db8-4438-ad95-05ecb9f2075e",
>>>> "sector_size":4096,
>>>> "blockdev":"pmem1s"
>>>> },
>>>> {
>>>> "dev":"namespace0.0",
>>>> "mode":"memory",
>>>> "size":8453619712,
>>>> "uuid":"933ed54b-5b64-47f1-8409-c88f7c846522",
>>>> "blockdev":"pmem0"
>>>> }
>>>> ]
>>>>
>>>> The two memory namespaces have different sizes because one is --
>>>> map=dev and the other is --map=mem.
>>>> It would be nice if the map option was displayed but my question is
>>>> about the size value for the
>>>> btt device, or lack of one.
>>>>
>>>> All the namespaces show a size except for the btt. The btt only
>>>> shows a sector size. There
>>>> is no size value exposed by the btt sysfs information, which is
>>>> probably why it's not in ndctl.
>>>>
>>>> I know the size can be gotten from the block device but it looks
>>>> like an omission here.
>>>> Is this a bug or a feature?
>>>
>>> Probably an omission :)
>>> This patch should expose a size attribute in sysfs:
>>>
>>> $ cat /sys/bus/nd/devices/btt7.0/size
>>> 32440320
>>>
>>> I can look at the 'ndctl list' enabling too if this looks good.
>>>
>>> 8<------
>>>
>>> From fb119bf4380d1d65d82754e581bbd41161c2100f Mon Sep 17 00:00:00 2001
>>> From: Vishal Verma <vishal.l.verma@intel.com>
>>> Date: Tue, 26 Jul 2016 14:54:39 -0600
>>> Subject: [PATCH] nvdimm, btt: add a size attribute for BTTs
>>>
>>> To be consistent with other namespaces, expose a 'size' attribute for
>>> BTT devices also.
>>>
>>> Cc: Dan Williams <dan.j.williams@intel.com>
>>> Reported-by: Linda Knippers <linda.knippers@hpe.com>
>>> Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
>>> ---
>>> drivers/nvdimm/btt.c | 1 +
>>> drivers/nvdimm/btt_devs.c | 15 +++++++++++++++
>>> drivers/nvdimm/nd.h | 1 +
>>> 3 files changed, 17 insertions(+)
>>>
>>> diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c
>>> index 68a7c3c..71ce0dc 100644
>>> --- a/drivers/nvdimm/btt.c
>>> +++ b/drivers/nvdimm/btt.c
>>> @@ -1270,6 +1270,7 @@ static int btt_blk_init(struct btt *btt)
>>> }
>>> }
>>> set_capacity(btt->btt_disk, btt->nlba * btt->sector_size >>
>>> 9);
>>> + btt->nd_btt->size = btt->nlba * btt->sector_size;
>>
>> Blargh, I think I was a bit hasty; I think this should be:
>>
>> + btt->nd_btt->size = btt->nlba * (u64)btt->sector_size;
>>
>> Right? (I always get bit by integer promotion rules...)
>
> ...but at this point we're identical to what the block layer is
> reporting. The other 'size' attributes are communicating the raw
> byte-aligned capacity of the namespace minus local driver overhead.
I tried Vishal's original patch and the btt is reporting a size of 8580472832
through sysfs. It matches the capacity reported at boot time:
[ 39.966252] pmem1s: detected capacity change from 0 to 8580472832
[ 40.000069] pmem3: detected capacity change from 0 to 8589934592
[ 40.112962] pmem2: detected capacity change from 0 to 8587837440
[ 40.274013] pmem0: detected capacity change from 0 to 8453619712
For the other devices, the size reported by sysfs also matches what
is reported for the block device at boot time.
-- ljk
> _______________________________________________
> Linux-nvdimm mailing list
> Linux-nvdimm@lists.01.org
> https://lists.01.org/mailman/listinfo/linux-nvdimm
>
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: btt ndctl question
2016-07-26 21:41 ` Vishal Verma
@ 2016-07-26 21:55 ` Dan Williams
2016-07-26 22:05 ` Linda Knippers
0 siblings, 1 reply; 8+ messages in thread
From: Dan Williams @ 2016-07-26 21:55 UTC (permalink / raw)
To: Vishal Verma; +Cc: lknipper@redhat.com, linux-nvdimm@lists.01.org
On Tue, Jul 26, 2016 at 2:41 PM, Vishal Verma <vishal.l.verma@intel.com> wrote:
> On 07/26, Dan Williams wrote:
>> On Tue, Jul 26, 2016 at 2:24 PM, Verma, Vishal L
>> <vishal.l.verma@intel.com> wrote:
>> > On Tue, 2016-07-26 at 14:58 -0600, Vishal Verma wrote:
>> >> On 07/26, Linda Knippers wrote:
>> >> >
>> >> > My system has 4 8G NVDIMMs and I have them configured in different
>> >> > ways, as you can
>> >> > see from the ndctl output:
>> >> >
>> >> > $ ndctl list
>> >> > [
>> >> > {
>> >> > "dev":"namespace3.0",
>> >> > "mode":"raw",
>> >> > "size":8589934592,
>> >> > "blockdev":"pmem3"
>> >> > },
>> >> > {
>> >> > "dev":"namespace2.0",
>> >> > "mode":"memory",
>> >> > "size":8587837440,
>> >> > "uuid":"2567d762-68ae-486b-a6eb-2d3ab1b9dca9",
>> >> > "blockdev":"pmem2"
>> >> > },
>> >> > {
>> >> > "dev":"namespace1.0",
>> >> > "mode":"sector",
>> >> > "uuid":"44fb474e-7db8-4438-ad95-05ecb9f2075e",
>> >> > "sector_size":4096,
>> >> > "blockdev":"pmem1s"
>> >> > },
>> >> > {
>> >> > "dev":"namespace0.0",
>> >> > "mode":"memory",
>> >> > "size":8453619712,
>> >> > "uuid":"933ed54b-5b64-47f1-8409-c88f7c846522",
>> >> > "blockdev":"pmem0"
>> >> > }
>> >> > ]
>> >> >
>> >> > The two memory namespaces have different sizes because one is --
>> >> > map=dev and the other is --map=mem.
>> >> > It would be nice if the map option was displayed but my question is
>> >> > about the size value for the
>> >> > btt device, or lack of one.
>> >> >
>> >> > All the namespaces show a size except for the btt. The btt only
>> >> > shows a sector size. There
>> >> > is no size value exposed by the btt sysfs information, which is
>> >> > probably why it's not in ndctl.
>> >> >
>> >> > I know the size can be gotten from the block device but it looks
>> >> > like an omission here.
>> >> > Is this a bug or a feature?
>> >>
>> >> Probably an omission :)
>> >> This patch should expose a size attribute in sysfs:
>> >>
>> >> $ cat /sys/bus/nd/devices/btt7.0/size
>> >> 32440320
>> >>
>> >> I can look at the 'ndctl list' enabling too if this looks good.
>> >>
>> >> 8<------
>> >>
>> >> From fb119bf4380d1d65d82754e581bbd41161c2100f Mon Sep 17 00:00:00 2001
>> >> From: Vishal Verma <vishal.l.verma@intel.com>
>> >> Date: Tue, 26 Jul 2016 14:54:39 -0600
>> >> Subject: [PATCH] nvdimm, btt: add a size attribute for BTTs
>> >>
>> >> To be consistent with other namespaces, expose a 'size' attribute for
>> >> BTT devices also.
>> >>
>> >> Cc: Dan Williams <dan.j.williams@intel.com>
>> >> Reported-by: Linda Knippers <linda.knippers@hpe.com>
>> >> Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
>> >> ---
>> >> drivers/nvdimm/btt.c | 1 +
>> >> drivers/nvdimm/btt_devs.c | 15 +++++++++++++++
>> >> drivers/nvdimm/nd.h | 1 +
>> >> 3 files changed, 17 insertions(+)
>> >>
>> >> diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c
>> >> index 68a7c3c..71ce0dc 100644
>> >> --- a/drivers/nvdimm/btt.c
>> >> +++ b/drivers/nvdimm/btt.c
>> >> @@ -1270,6 +1270,7 @@ static int btt_blk_init(struct btt *btt)
>> >> }
>> >> }
>> >> set_capacity(btt->btt_disk, btt->nlba * btt->sector_size >>
>> >> 9);
>> >> + btt->nd_btt->size = btt->nlba * btt->sector_size;
>> >
>> > Blargh, I think I was a bit hasty; I think this should be:
>> >
>> > + btt->nd_btt->size = btt->nlba * (u64)btt->sector_size;
>> >
>> > Right? (I always get bit by integer promotion rules...)
>>
>> ...but at this point we're identical to what the block layer is
>> reporting. The other 'size' attributes are communicating the raw
>> byte-aligned capacity of the namespace minus local driver overhead.
>
> Wouldn't we want to be identical to what the block layer is reporting?
> The only difference would come from removing any sub-sector capacity in
> our case - is that information useful/desirable? I'd think being
> consistent with the block layer reporting makes most sense..
>
It does for btt, but since it's impossible for btt/size to a return a
different answer than block/size, userspace should just look at
block/size.
We have the 'size' attribute independent of sector alignment for the
other configurations because those use cases might be ignoring the
block interface... well only in the device-dax case now that we
de-featured raw block-device dax.
I guess we could just go ahead and add just to be symmetrical, but the
motivation for the other 'size' attributes is that they could identify
capacity lost to sector alignment.
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: btt ndctl question
2016-07-26 21:55 ` Dan Williams
@ 2016-07-26 22:05 ` Linda Knippers
0 siblings, 0 replies; 8+ messages in thread
From: Linda Knippers @ 2016-07-26 22:05 UTC (permalink / raw)
To: Dan Williams, Vishal Verma; +Cc: linux-nvdimm@lists.01.org
On 07/26/2016 05:55 PM, Dan Williams wrote:
> On Tue, Jul 26, 2016 at 2:41 PM, Vishal Verma <vishal.l.verma@intel.com> wrote:
>> On 07/26, Dan Williams wrote:
>>> On Tue, Jul 26, 2016 at 2:24 PM, Verma, Vishal L
>>> <vishal.l.verma@intel.com> wrote:
>>>> On Tue, 2016-07-26 at 14:58 -0600, Vishal Verma wrote:
>>>>> On 07/26, Linda Knippers wrote:
>>>>>>
>>>>>> My system has 4 8G NVDIMMs and I have them configured in different
>>>>>> ways, as you can
>>>>>> see from the ndctl output:
>>>>>>
>>>>>> $ ndctl list
>>>>>> [
>>>>>> {
>>>>>> "dev":"namespace3.0",
>>>>>> "mode":"raw",
>>>>>> "size":8589934592,
>>>>>> "blockdev":"pmem3"
>>>>>> },
>>>>>> {
>>>>>> "dev":"namespace2.0",
>>>>>> "mode":"memory",
>>>>>> "size":8587837440,
>>>>>> "uuid":"2567d762-68ae-486b-a6eb-2d3ab1b9dca9",
>>>>>> "blockdev":"pmem2"
>>>>>> },
>>>>>> {
>>>>>> "dev":"namespace1.0",
>>>>>> "mode":"sector",
>>>>>> "uuid":"44fb474e-7db8-4438-ad95-05ecb9f2075e",
>>>>>> "sector_size":4096,
>>>>>> "blockdev":"pmem1s"
>>>>>> },
>>>>>> {
>>>>>> "dev":"namespace0.0",
>>>>>> "mode":"memory",
>>>>>> "size":8453619712,
>>>>>> "uuid":"933ed54b-5b64-47f1-8409-c88f7c846522",
>>>>>> "blockdev":"pmem0"
>>>>>> }
>>>>>> ]
>>>>>>
>>>>>> The two memory namespaces have different sizes because one is --
>>>>>> map=dev and the other is --map=mem.
>>>>>> It would be nice if the map option was displayed but my question is
>>>>>> about the size value for the
>>>>>> btt device, or lack of one.
>>>>>>
>>>>>> All the namespaces show a size except for the btt. The btt only
>>>>>> shows a sector size. There
>>>>>> is no size value exposed by the btt sysfs information, which is
>>>>>> probably why it's not in ndctl.
>>>>>>
>>>>>> I know the size can be gotten from the block device but it looks
>>>>>> like an omission here.
>>>>>> Is this a bug or a feature?
>>>>>
>>>>> Probably an omission :)
>>>>> This patch should expose a size attribute in sysfs:
>>>>>
>>>>> $ cat /sys/bus/nd/devices/btt7.0/size
>>>>> 32440320
>>>>>
>>>>> I can look at the 'ndctl list' enabling too if this looks good.
>>>>>
>>>>> 8<------
>>>>>
>>>>> From fb119bf4380d1d65d82754e581bbd41161c2100f Mon Sep 17 00:00:00 2001
>>>>> From: Vishal Verma <vishal.l.verma@intel.com>
>>>>> Date: Tue, 26 Jul 2016 14:54:39 -0600
>>>>> Subject: [PATCH] nvdimm, btt: add a size attribute for BTTs
>>>>>
>>>>> To be consistent with other namespaces, expose a 'size' attribute for
>>>>> BTT devices also.
>>>>>
>>>>> Cc: Dan Williams <dan.j.williams@intel.com>
>>>>> Reported-by: Linda Knippers <linda.knippers@hpe.com>
>>>>> Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
>>>>> ---
>>>>> drivers/nvdimm/btt.c | 1 +
>>>>> drivers/nvdimm/btt_devs.c | 15 +++++++++++++++
>>>>> drivers/nvdimm/nd.h | 1 +
>>>>> 3 files changed, 17 insertions(+)
>>>>>
>>>>> diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c
>>>>> index 68a7c3c..71ce0dc 100644
>>>>> --- a/drivers/nvdimm/btt.c
>>>>> +++ b/drivers/nvdimm/btt.c
>>>>> @@ -1270,6 +1270,7 @@ static int btt_blk_init(struct btt *btt)
>>>>> }
>>>>> }
>>>>> set_capacity(btt->btt_disk, btt->nlba * btt->sector_size >>
>>>>> 9);
>>>>> + btt->nd_btt->size = btt->nlba * btt->sector_size;
>>>>
>>>> Blargh, I think I was a bit hasty; I think this should be:
>>>>
>>>> + btt->nd_btt->size = btt->nlba * (u64)btt->sector_size;
>>>>
>>>> Right? (I always get bit by integer promotion rules...)
>>>
>>> ...but at this point we're identical to what the block layer is
>>> reporting. The other 'size' attributes are communicating the raw
>>> byte-aligned capacity of the namespace minus local driver overhead.
>>
>> Wouldn't we want to be identical to what the block layer is reporting?
>> The only difference would come from removing any sub-sector capacity in
>> our case - is that information useful/desirable? I'd think being
>> consistent with the block layer reporting makes most sense..
>>
>
> It does for btt, but since it's impossible for btt/size to a return a
> different answer than block/size, userspace should just look at
> block/size.
>
> We have the 'size' attribute independent of sector alignment for the
> other configurations because those use cases might be ignoring the
> block interface... well only in the device-dax case now that we
> de-featured raw block-device dax.
>
> I guess we could just go ahead and add just to be symmetrical, but the
> motivation for the other 'size' attributes is that they could identify
> capacity lost to sector alignment.
The units reported by the block layer are different (512 byte blocks vs. bytes)
so I like having the btt size here in bytes like for the other cases.
-- ljk
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: btt ndctl question
2016-07-26 20:58 ` btt ndctl question Vishal Verma
2016-07-26 21:24 ` Verma, Vishal L
@ 2016-07-27 0:43 ` Dan Williams
1 sibling, 0 replies; 8+ messages in thread
From: Dan Williams @ 2016-07-27 0:43 UTC (permalink / raw)
To: Vishal Verma; +Cc: Linda Knippers, linux-nvdimm@lists.01.org
On Tue, Jul 26, 2016 at 1:58 PM, Vishal Verma <vishal.l.verma@intel.com> wrote:
> On 07/26, Linda Knippers wrote:
>> My system has 4 8G NVDIMMs and I have them configured in different ways, as you can
>> see from the ndctl output:
>>
>> $ ndctl list
>> [
>> {
>> "dev":"namespace3.0",
>> "mode":"raw",
>> "size":8589934592,
>> "blockdev":"pmem3"
>> },
>> {
>> "dev":"namespace2.0",
>> "mode":"memory",
>> "size":8587837440,
>> "uuid":"2567d762-68ae-486b-a6eb-2d3ab1b9dca9",
>> "blockdev":"pmem2"
>> },
>> {
>> "dev":"namespace1.0",
>> "mode":"sector",
>> "uuid":"44fb474e-7db8-4438-ad95-05ecb9f2075e",
>> "sector_size":4096,
>> "blockdev":"pmem1s"
>> },
>> {
>> "dev":"namespace0.0",
>> "mode":"memory",
>> "size":8453619712,
>> "uuid":"933ed54b-5b64-47f1-8409-c88f7c846522",
>> "blockdev":"pmem0"
>> }
>> ]
>>
>> The two memory namespaces have different sizes because one is --map=dev and the other is --map=mem.
>> It would be nice if the map option was displayed but my question is about the size value for the
>> btt device, or lack of one.
>>
>> All the namespaces show a size except for the btt. The btt only shows a sector size. There
>> is no size value exposed by the btt sysfs information, which is probably why it's not in ndctl.
>>
>> I know the size can be gotten from the block device but it looks like an omission here.
>> Is this a bug or a feature?
>
> Probably an omission :)
> This patch should expose a size attribute in sysfs:
>
> $ cat /sys/bus/nd/devices/btt7.0/size
> 32440320
>
> I can look at the 'ndctl list' enabling too if this looks good.
>
> 8<------
>
> From fb119bf4380d1d65d82754e581bbd41161c2100f Mon Sep 17 00:00:00 2001
> From: Vishal Verma <vishal.l.verma@intel.com>
> Date: Tue, 26 Jul 2016 14:54:39 -0600
> Subject: [PATCH] nvdimm, btt: add a size attribute for BTTs
>
> To be consistent with other namespaces, expose a 'size' attribute for
> BTT devices also.
>
> Cc: Dan Williams <dan.j.williams@intel.com>
> Reported-by: Linda Knippers <linda.knippers@hpe.com>
> Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
> ---
> drivers/nvdimm/btt.c | 1 +
> drivers/nvdimm/btt_devs.c | 15 +++++++++++++++
> drivers/nvdimm/nd.h | 1 +
> 3 files changed, 17 insertions(+)
>
> diff --git a/drivers/nvdimm/btt.c b/drivers/nvdimm/btt.c
> index 68a7c3c..71ce0dc 100644
> --- a/drivers/nvdimm/btt.c
> +++ b/drivers/nvdimm/btt.c
> @@ -1270,6 +1270,7 @@ static int btt_blk_init(struct btt *btt)
> }
> }
> set_capacity(btt->btt_disk, btt->nlba * btt->sector_size >> 9);
> + btt->nd_btt->size = btt->nlba * btt->sector_size;
> revalidate_disk(btt->btt_disk);
>
> return 0;
> diff --git a/drivers/nvdimm/btt_devs.c b/drivers/nvdimm/btt_devs.c
> index 3fa7919..b54cfc7 100644
> --- a/drivers/nvdimm/btt_devs.c
> +++ b/drivers/nvdimm/btt_devs.c
> @@ -140,10 +140,25 @@ static ssize_t namespace_store(struct device *dev,
> }
> static DEVICE_ATTR_RW(namespace);
>
> +
> +static ssize_t size_show(struct device *dev,
> + struct device_attribute *attr, char *buf)
> +{
> + struct nd_btt *nd_btt = to_nd_btt(dev);
> + ssize_t rc;
> +
> + nvdimm_bus_lock(dev);
> + rc = sprintf(buf, "%llu\n", nd_btt->size);
> + nvdimm_bus_unlock(dev);
> + return rc;
Why is nvdimm_bus_lock() used here?
I think you want to follow the pattern of size_show() in
drivers/nvdimm/pfn_devs.c.
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2016-07-27 0:43 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <5797C9DE.3070901@redhat.com>
2016-07-26 20:58 ` btt ndctl question Vishal Verma
2016-07-26 21:24 ` Verma, Vishal L
2016-07-26 21:31 ` Dan Williams
2016-07-26 21:41 ` Vishal Verma
2016-07-26 21:55 ` Dan Williams
2016-07-26 22:05 ` Linda Knippers
2016-07-26 21:43 ` Linda Knippers
2016-07-27 0:43 ` Dan Williams
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.