linux-nvdimm.lists.01.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dax: fix for do not print error message for non-persistent memory block device
@ 2020-09-03 11:55 Coly Li
  2020-09-03 15:26 ` [External] " Adrian Huang12
  2020-09-03 16:06 ` Ira Weiny
  0 siblings, 2 replies; 6+ messages in thread
From: Coly Li @ 2020-09-03 11:55 UTC (permalink / raw)
  To: linux-nvdimm
  Cc: dm-devel, Coly Li, Adrian Huang, Jan Kara, Mike Snitzer, Pankaj Gupta

When calling __generic_fsdax_supported(), a dax-unsupported device may
not have dax_dev as NULL, e.g. the dax related code block is not enabled
by Kconfig.

Therefore in __generic_fsdax_supported(), to check whether a device
supports DAX or not, the following order should be performed,
- If dax_dev pointer is NULL, it means the device driver explicitly
  announce it doesn't support DAX. Then it is OK to directly return
  false from __generic_fsdax_supported().
- If dax_dev pointer is NOT NULL, it might be because the driver doesn't
  support DAX and not explicitly initialize related data structure. Then
  bdev_dax_supported() should be called for further check.

IMHO if device driver desn't explicitly set its dax_dev pointer to NULL,
this is not a bug. Calling bdev_dax_supported() makes sure they can be
recognized as dax-unsupported eventually.

This patch does the following change for the above purpose,
    -       if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
    +       if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {


Fixes: c2affe920b0e ("dax: do not print error message for non-persistent memory block device")
Signed-off-by: Coly Li <colyli@suse.de>
Cc: Adrian Huang <ahuang12@lenovo.com>
Cc: Ira Weiny <ira.weiny@intel.com>
Cc: Jan Kara <jack@suse.com>
Cc: Mike Snitzer <snitzer@redhat.com>
Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
Cc: Vishal Verma <vishal.l.verma@intel.com>
---
 drivers/dax/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dax/super.c b/drivers/dax/super.c
index 32642634c1bb..e5767c83ea23 100644
--- a/drivers/dax/super.c
+++ b/drivers/dax/super.c
@@ -100,7 +100,7 @@ bool __generic_fsdax_supported(struct dax_device *dax_dev,
 		return false;
 	}
 
-	if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
+	if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
 		pr_debug("%s: error: dax unsupported by block device\n",
 				bdevname(bdev, buf));
 		return false;
-- 
2.26.2
_______________________________________________
Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
To unsubscribe send an email to linux-nvdimm-leave@lists.01.org

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* RE: [External]  [PATCH] dax: fix for do not print error message for non-persistent memory block device
  2020-09-03 11:55 [PATCH] dax: fix for do not print error message for non-persistent memory block device Coly Li
@ 2020-09-03 15:26 ` Adrian Huang12
  2020-09-03 16:06 ` Ira Weiny
  1 sibling, 0 replies; 6+ messages in thread
From: Adrian Huang12 @ 2020-09-03 15:26 UTC (permalink / raw)
  To: Coly Li, linux-nvdimm
  Cc: dm-devel, Jan Kara, Mike Snitzer, Pankaj Gupta, Vishal

> -----Original Message-----
> From: Coly Li <colyli@suse.de>
> Sent: Thursday, September 3, 2020 7:56 PM
> To: linux-nvdimm@lists.01.org
> Cc: dm-devel@redhat.com; Coly Li <colyli@suse.de>; Adrian Huang12
> <ahuang12@lenovo.com>; Ira Weiny <ira.weiny@intel.com>; Jan Kara
> <jack@suse.com>; Mike Snitzer <snitzer@redhat.com>; Pankaj Gupta
> <pankaj.gupta.linux@gmail.com>; Vishal Verma <vishal.l.verma@intel.com>
> Subject: [External] [PATCH] dax: fix for do not print error message for non-
> persistent memory block device
> 
> When calling __generic_fsdax_supported(), a dax-unsupported device may not
> have dax_dev as NULL, e.g. the dax related code block is not enabled by Kconfig.
> 
> Therefore in __generic_fsdax_supported(), to check whether a device supports
> DAX or not, the following order should be performed,
> - If dax_dev pointer is NULL, it means the device driver explicitly
>   announce it doesn't support DAX. Then it is OK to directly return
>   false from __generic_fsdax_supported().
> - If dax_dev pointer is NOT NULL, it might be because the driver doesn't
>   support DAX and not explicitly initialize related data structure. Then
>   bdev_dax_supported() should be called for further check.
> 
> IMHO if device driver desn't explicitly set its dax_dev pointer to NULL, this is not
> a bug. Calling bdev_dax_supported() makes sure they can be recognized as dax-
> unsupported eventually.
> 
> This patch does the following change for the above purpose,
>     -       if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
>     +       if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
> 
> 
> Fixes: c2affe920b0e ("dax: do not print error message for non-persistent
> memory block device")
> Signed-off-by: Coly Li <colyli@suse.de>

The dax error messages ("dm-X: error: dax access failed (-95)") are gone away when executing the command 'lvm2-testsuite --only activate-minor'.

Reviewed-and-Tested-by: Adrian Huang <ahuang12@lenovo.com>

> Cc: Adrian Huang <ahuang12@lenovo.com>
> Cc: Ira Weiny <ira.weiny@intel.com>
> Cc: Jan Kara <jack@suse.com>
> Cc: Mike Snitzer <snitzer@redhat.com>
> Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
> Cc: Vishal Verma <vishal.l.verma@intel.com>
> ---
>  drivers/dax/super.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/dax/super.c b/drivers/dax/super.c index
> 32642634c1bb..e5767c83ea23 100644
> --- a/drivers/dax/super.c
> +++ b/drivers/dax/super.c
> @@ -100,7 +100,7 @@ bool __generic_fsdax_supported(struct dax_device
> *dax_dev,
>  		return false;
>  	}
> 
> -	if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
> +	if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
>  		pr_debug("%s: error: dax unsupported by block device\n",
>  				bdevname(bdev, buf));
>  		return false;
> --
> 2.26.2
_______________________________________________
Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
To unsubscribe send an email to linux-nvdimm-leave@lists.01.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dax: fix for do not print error message for non-persistent memory block device
  2020-09-03 11:55 [PATCH] dax: fix for do not print error message for non-persistent memory block device Coly Li
  2020-09-03 15:26 ` [External] " Adrian Huang12
@ 2020-09-03 16:06 ` Ira Weiny
  2020-09-03 16:12   ` Coly Li
  1 sibling, 1 reply; 6+ messages in thread
From: Ira Weiny @ 2020-09-03 16:06 UTC (permalink / raw)
  To: Coly Li
  Cc: linux-nvdimm, dm-devel, Adrian Huang, Jan Kara, Mike Snitzer,
	Pankaj Gupta

On Thu, Sep 03, 2020 at 07:55:49PM +0800, Coly Li wrote:
> When calling __generic_fsdax_supported(), a dax-unsupported device may
> not have dax_dev as NULL, e.g. the dax related code block is not enabled
> by Kconfig.
> 
> Therefore in __generic_fsdax_supported(), to check whether a device
> supports DAX or not, the following order should be performed,
> - If dax_dev pointer is NULL, it means the device driver explicitly
>   announce it doesn't support DAX. Then it is OK to directly return
>   false from __generic_fsdax_supported().
> - If dax_dev pointer is NOT NULL, it might be because the driver doesn't
>   support DAX and not explicitly initialize related data structure. Then
>   bdev_dax_supported() should be called for further check.
> 
> IMHO if device driver desn't explicitly set its dax_dev pointer to NULL,
> this is not a bug. Calling bdev_dax_supported() makes sure they can be
> recognized as dax-unsupported eventually.
> 
> This patch does the following change for the above purpose,
>     -       if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
>     +       if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
> 
> 
> Fixes: c2affe920b0e ("dax: do not print error message for non-persistent memory block device")
> Signed-off-by: Coly Li <colyli@suse.de>

I hate to do this because I realize this is a bug which people really need
fixed.

However, shouldn't we also check (!dax_dev || !bdev_dax_supported()) as the
_first_ check in __generic_fsdax_supported()?

It seems like the other pr_info's could also be called when DAX is not
supported and we probably don't want them to be?

Perhaps that should be a follow on patch though.  So...

As a direct fix to c2affe920b0e

Reviewed-by: Ira Weiny <ira.weiny@intel.com>

> Cc: Adrian Huang <ahuang12@lenovo.com>
> Cc: Ira Weiny <ira.weiny@intel.com>
> Cc: Jan Kara <jack@suse.com>
> Cc: Mike Snitzer <snitzer@redhat.com>
> Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
> Cc: Vishal Verma <vishal.l.verma@intel.com>
> ---
>  drivers/dax/super.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/dax/super.c b/drivers/dax/super.c
> index 32642634c1bb..e5767c83ea23 100644
> --- a/drivers/dax/super.c
> +++ b/drivers/dax/super.c
> @@ -100,7 +100,7 @@ bool __generic_fsdax_supported(struct dax_device *dax_dev,
>  		return false;
>  	}
>  
> -	if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
> +	if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
>  		pr_debug("%s: error: dax unsupported by block device\n",
>  				bdevname(bdev, buf));
>  		return false;
> -- 
> 2.26.2
> 
_______________________________________________
Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
To unsubscribe send an email to linux-nvdimm-leave@lists.01.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dax: fix for do not print error message for non-persistent memory block device
  2020-09-03 16:06 ` Ira Weiny
@ 2020-09-03 16:12   ` Coly Li
  2020-09-10 20:29     ` John Pittman
  0 siblings, 1 reply; 6+ messages in thread
From: Coly Li @ 2020-09-03 16:12 UTC (permalink / raw)
  To: Ira Weiny
  Cc: linux-nvdimm, dm-devel, Adrian Huang, Jan Kara, Mike Snitzer,
	Pankaj Gupta

On 2020/9/4 00:06, Ira Weiny wrote:
> On Thu, Sep 03, 2020 at 07:55:49PM +0800, Coly Li wrote:
>> When calling __generic_fsdax_supported(), a dax-unsupported device may
>> not have dax_dev as NULL, e.g. the dax related code block is not enabled
>> by Kconfig.
>>
>> Therefore in __generic_fsdax_supported(), to check whether a device
>> supports DAX or not, the following order should be performed,
>> - If dax_dev pointer is NULL, it means the device driver explicitly
>>   announce it doesn't support DAX. Then it is OK to directly return
>>   false from __generic_fsdax_supported().
>> - If dax_dev pointer is NOT NULL, it might be because the driver doesn't
>>   support DAX and not explicitly initialize related data structure. Then
>>   bdev_dax_supported() should be called for further check.
>>
>> IMHO if device driver desn't explicitly set its dax_dev pointer to NULL,
>> this is not a bug. Calling bdev_dax_supported() makes sure they can be
>> recognized as dax-unsupported eventually.
>>
>> This patch does the following change for the above purpose,
>>     -       if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
>>     +       if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
>>
>>
>> Fixes: c2affe920b0e ("dax: do not print error message for non-persistent memory block device")
>> Signed-off-by: Coly Li <colyli@suse.de>
> 
> I hate to do this because I realize this is a bug which people really need
> fixed.
> 
> However, shouldn't we also check (!dax_dev || !bdev_dax_supported()) as the
> _first_ check in __generic_fsdax_supported()?
> 
> It seems like the other pr_info's could also be called when DAX is not
> supported and we probably don't want them to be?
> 
> Perhaps that should be a follow on patch though.  So...

I am not author of c2affe920b0e, but I guess it was because
bdev_dax_supported() needed blocksize, so blocksize should pass previous
checks firstly to make sure bdev_dax_supported() has a correct blocksize
to check.

> 
> As a direct fix to c2affe920b0e
> 
> Reviewed-by: Ira Weiny <ira.weiny@intel.com>

Thanks.

Coly Li


> 
>> Cc: Adrian Huang <ahuang12@lenovo.com>
>> Cc: Ira Weiny <ira.weiny@intel.com>
>> Cc: Jan Kara <jack@suse.com>
>> Cc: Mike Snitzer <snitzer@redhat.com>
>> Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
>> Cc: Vishal Verma <vishal.l.verma@intel.com>
>> ---
>>  drivers/dax/super.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/dax/super.c b/drivers/dax/super.c
>> index 32642634c1bb..e5767c83ea23 100644
>> --- a/drivers/dax/super.c
>> +++ b/drivers/dax/super.c
>> @@ -100,7 +100,7 @@ bool __generic_fsdax_supported(struct dax_device *dax_dev,
>>  		return false;
>>  	}
>>  
>> -	if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
>> +	if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
>>  		pr_debug("%s: error: dax unsupported by block device\n",
>>  				bdevname(bdev, buf));
>>  		return false;
>> -- 
>> 2.26.2
>>
_______________________________________________
Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
To unsubscribe send an email to linux-nvdimm-leave@lists.01.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dax: fix for do not print error message for non-persistent memory block device
  2020-09-03 16:12   ` Coly Li
@ 2020-09-10 20:29     ` John Pittman
  2020-09-11  0:54       ` Coly Li
  0 siblings, 1 reply; 6+ messages in thread
From: John Pittman @ 2020-09-10 20:29 UTC (permalink / raw)
  To: Coly Li
  Cc: linux-nvdimm, dm-devel, Adrian Huang, Jan Kara, Mike Snitzer,
	Pankaj Gupta

But it should be moved prior to the two bdev_dax_pgoff() checks right?
 Else a misaligned partition on a dax unsupported block device can
print the below messages.

kernel: sda1: error: unaligned partition for dax
kernel: sda2: error: unaligned partition for dax
kernel: sda3: error: unaligned partition for dax

Reviewed-by: John Pittman <jpittman@redhat.com>

On Thu, Sep 3, 2020 at 12:12 PM Coly Li <colyli@suse.de> wrote:
>
> On 2020/9/4 00:06, Ira Weiny wrote:
> > On Thu, Sep 03, 2020 at 07:55:49PM +0800, Coly Li wrote:
> >> When calling __generic_fsdax_supported(), a dax-unsupported device may
> >> not have dax_dev as NULL, e.g. the dax related code block is not enabled
> >> by Kconfig.
> >>
> >> Therefore in __generic_fsdax_supported(), to check whether a device
> >> supports DAX or not, the following order should be performed,
> >> - If dax_dev pointer is NULL, it means the device driver explicitly
> >>   announce it doesn't support DAX. Then it is OK to directly return
> >>   false from __generic_fsdax_supported().
> >> - If dax_dev pointer is NOT NULL, it might be because the driver doesn't
> >>   support DAX and not explicitly initialize related data structure. Then
> >>   bdev_dax_supported() should be called for further check.
> >>
> >> IMHO if device driver desn't explicitly set its dax_dev pointer to NULL,
> >> this is not a bug. Calling bdev_dax_supported() makes sure they can be
> >> recognized as dax-unsupported eventually.
> >>
> >> This patch does the following change for the above purpose,
> >>     -       if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
> >>     +       if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
> >>
> >>
> >> Fixes: c2affe920b0e ("dax: do not print error message for non-persistent memory block device")
> >> Signed-off-by: Coly Li <colyli@suse.de>
> >
> > I hate to do this because I realize this is a bug which people really need
> > fixed.
> >
> > However, shouldn't we also check (!dax_dev || !bdev_dax_supported()) as the
> > _first_ check in __generic_fsdax_supported()?
> >
> > It seems like the other pr_info's could also be called when DAX is not
> > supported and we probably don't want them to be?
> >
> > Perhaps that should be a follow on patch though.  So...
>
> I am not author of c2affe920b0e, but I guess it was because
> bdev_dax_supported() needed blocksize, so blocksize should pass previous
> checks firstly to make sure bdev_dax_supported() has a correct blocksize
> to check.
>
> >
> > As a direct fix to c2affe920b0e
> >
> > Reviewed-by: Ira Weiny <ira.weiny@intel.com>
>
> Thanks.
>
> Coly Li
>
>
> >
> >> Cc: Adrian Huang <ahuang12@lenovo.com>
> >> Cc: Ira Weiny <ira.weiny@intel.com>
> >> Cc: Jan Kara <jack@suse.com>
> >> Cc: Mike Snitzer <snitzer@redhat.com>
> >> Cc: Pankaj Gupta <pankaj.gupta.linux@gmail.com>
> >> Cc: Vishal Verma <vishal.l.verma@intel.com>
> >> ---
> >>  drivers/dax/super.c | 2 +-
> >>  1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/drivers/dax/super.c b/drivers/dax/super.c
> >> index 32642634c1bb..e5767c83ea23 100644
> >> --- a/drivers/dax/super.c
> >> +++ b/drivers/dax/super.c
> >> @@ -100,7 +100,7 @@ bool __generic_fsdax_supported(struct dax_device *dax_dev,
> >>              return false;
> >>      }
> >>
> >> -    if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
> >> +    if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
> >>              pr_debug("%s: error: dax unsupported by block device\n",
> >>                              bdevname(bdev, buf));
> >>              return false;
> >> --
> >> 2.26.2
> >>
> _______________________________________________
> Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
> To unsubscribe send an email to linux-nvdimm-leave@lists.01.org
>
_______________________________________________
Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
To unsubscribe send an email to linux-nvdimm-leave@lists.01.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dax: fix for do not print error message for non-persistent memory block device
  2020-09-10 20:29     ` John Pittman
@ 2020-09-11  0:54       ` Coly Li
  0 siblings, 0 replies; 6+ messages in thread
From: Coly Li @ 2020-09-11  0:54 UTC (permalink / raw)
  To: John Pittman
  Cc: linux-nvdimm, dm-devel, Adrian Huang, Jan Kara, Mike Snitzer,
	Pankaj Gupta

On 2020/9/11 04:29, John Pittman wrote:
> But it should be moved prior to the two bdev_dax_pgoff() checks right?
>  Else a misaligned partition on a dax unsupported block device can
> print the below messages.
> 
> kernel: sda1: error: unaligned partition for dax
> kernel: sda2: error: unaligned partition for dax
> kernel: sda3: error: unaligned partition for dax
> 

Aha, yes you are right, I agree with you.

Coly Li


> Reviewed-by: John Pittman <jpittman@redhat.com>
> 
> On Thu, Sep 3, 2020 at 12:12 PM Coly Li <colyli@suse.de> wrote:
>>
>> On 2020/9/4 00:06, Ira Weiny wrote:
>>> On Thu, Sep 03, 2020 at 07:55:49PM +0800, Coly Li wrote:
>>>> When calling __generic_fsdax_supported(), a dax-unsupported device may
>>>> not have dax_dev as NULL, e.g. the dax related code block is not enabled
>>>> by Kconfig.
>>>>
>>>> Therefore in __generic_fsdax_supported(), to check whether a device
>>>> supports DAX or not, the following order should be performed,
>>>> - If dax_dev pointer is NULL, it means the device driver explicitly
>>>>   announce it doesn't support DAX. Then it is OK to directly return
>>>>   false from __generic_fsdax_supported().
>>>> - If dax_dev pointer is NOT NULL, it might be because the driver doesn't
>>>>   support DAX and not explicitly initialize related data structure. Then
>>>>   bdev_dax_supported() should be called for further check.
>>>>
>>>> IMHO if device driver desn't explicitly set its dax_dev pointer to NULL,
>>>> this is not a bug. Calling bdev_dax_supported() makes sure they can be
>>>> recognized as dax-unsupported eventually.
>>>>
>>>> This patch does the following change for the above purpose,
>>>>     -       if (!dax_dev && !bdev_dax_supported(bdev, blocksize)) {
>>>>     +       if (!dax_dev || !bdev_dax_supported(bdev, blocksize)) {
>>>>
>>>>
>>>> Fixes: c2affe920b0e ("dax: do not print error message for non-persistent memory block device")
>>>> Signed-off-by: Coly Li <colyli@suse.de>
>>>
>>> I hate to do this because I realize this is a bug which people really need
>>> fixed.
>>>
>>> However, shouldn't we also check (!dax_dev || !bdev_dax_supported()) as the
>>> _first_ check in __generic_fsdax_supported()?
>>>
>>> It seems like the other pr_info's could also be called when DAX is not
>>> supported and we probably don't want them to be?
>>>
>>> Perhaps that should be a follow on patch though.  So...
>>
>> I am not author of c2affe920b0e, but I guess it was because
>> bdev_dax_supported() needed blocksize, so blocksize should pass previous
>> checks firstly to make sure bdev_dax_supported() has a correct blocksize
>> to check.
>>
>>>
>>> As a direct fix to c2affe920b0e
>>>
>>> Reviewed-by: Ira Weiny <ira.weiny@intel.com>
>>
>> Thanks.
>>
>> Coly Li
>>
[snipped]
_______________________________________________
Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
To unsubscribe send an email to linux-nvdimm-leave@lists.01.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-09-11  0:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-03 11:55 [PATCH] dax: fix for do not print error message for non-persistent memory block device Coly Li
2020-09-03 15:26 ` [External] " Adrian Huang12
2020-09-03 16:06 ` Ira Weiny
2020-09-03 16:12   ` Coly Li
2020-09-10 20:29     ` John Pittman
2020-09-11  0:54       ` Coly Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).