linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] cxl: Fix lockdep warning while creating afu_err_buff attribute
@ 2015-09-23  3:07 Vaibhav Jain
  2015-09-23  3:20 ` Ian Munsie
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Vaibhav Jain @ 2015-09-23  3:07 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: Ian Munsie, mikey, Daniel Axtens, Vaibhav Jain

Presently a lockdep warning is reported during creation of afu_err_buff
bin_attribute for the afu. This is caused due to the variable attr.key
not pointing to a static class key, hence the function lockdep_init_map
reports this warning:

 BUG: key <some-address> not in .data!

The patch fixes this issue by calling sysfs_attr_init on the
attr_eb.attr structure before populating it with the afu_err_buff file
details. This will populate the attr.key variable with a static class
key so that lockdep_init_map stops complaining about the lockdep key not
being static.

Reported-by: Daniel Axtens <dja@axtens.net>
Signed-off-by: Vaibhav Jain <vaibhav@linux.vnet.ibm.com>
---
 drivers/misc/cxl/sysfs.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/misc/cxl/sysfs.c b/drivers/misc/cxl/sysfs.c
index 25868c2..02006f7 100644
--- a/drivers/misc/cxl/sysfs.c
+++ b/drivers/misc/cxl/sysfs.c
@@ -592,6 +592,8 @@ int cxl_sysfs_afu_add(struct cxl_afu *afu)
 
 	/* conditionally create the add the binary file for error info buffer */
 	if (afu->eb_len) {
+		sysfs_attr_init(&afu->attr_eb.attr);
+
 		afu->attr_eb.attr.name = "afu_err_buff";
 		afu->attr_eb.attr.mode = S_IRUGO;
 		afu->attr_eb.size = afu->eb_len;
-- 
2.2.1

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

* Re: [PATCH] cxl: Fix lockdep warning while creating afu_err_buff attribute
  2015-09-23  3:07 [PATCH] cxl: Fix lockdep warning while creating afu_err_buff attribute Vaibhav Jain
@ 2015-09-23  3:20 ` Ian Munsie
  2015-09-23  3:21 ` Daniel Axtens
  2015-09-25  2:12 ` Michael Ellerman
  2 siblings, 0 replies; 4+ messages in thread
From: Ian Munsie @ 2015-09-23  3:20 UTC (permalink / raw)
  To: Vaibhav Jain; +Cc: linuxppc-dev, mikey, Daniel Axtens

Thanks for fixing that Vaibhav :)

Acked-by: Ian Munsie <imunsie@au1.ibm.com>

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

* Re: [PATCH] cxl: Fix lockdep warning while creating afu_err_buff attribute
  2015-09-23  3:07 [PATCH] cxl: Fix lockdep warning while creating afu_err_buff attribute Vaibhav Jain
  2015-09-23  3:20 ` Ian Munsie
@ 2015-09-23  3:21 ` Daniel Axtens
  2015-09-25  2:12 ` Michael Ellerman
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel Axtens @ 2015-09-23  3:21 UTC (permalink / raw)
  To: Vaibhav Jain; +Cc: linuxppc-dev, Ian Munsie, mikey

Reviewed-by: Daniel Axtens <dja@axtens.net>

Thanks Vaibhav!

On Wed, 2015-09-23 at 08:37 +0530, Vaibhav Jain wrote:
> Presently a lockdep warning is reported during creation of afu_err_buff
> bin_attribute for the afu. This is caused due to the variable attr.key
> not pointing to a static class key, hence the function lockdep_init_map
> reports this warning:
> 
>  BUG: key <some-address> not in .data!
> 
> The patch fixes this issue by calling sysfs_attr_init on the
> attr_eb.attr structure before populating it with the afu_err_buff file
> details. This will populate the attr.key variable with a static class
> key so that lockdep_init_map stops complaining about the lockdep key not
> being static.
> 
> Reported-by: Daniel Axtens <dja@axtens.net>
> Signed-off-by: Vaibhav Jain <vaibhav@linux.vnet.ibm.com>
> ---
>  drivers/misc/cxl/sysfs.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/misc/cxl/sysfs.c b/drivers/misc/cxl/sysfs.c
> index 25868c2..02006f7 100644
> --- a/drivers/misc/cxl/sysfs.c
> +++ b/drivers/misc/cxl/sysfs.c
> @@ -592,6 +592,8 @@ int cxl_sysfs_afu_add(struct cxl_afu *afu)
>  
>  	/* conditionally create the add the binary file for error info buffer */
>  	if (afu->eb_len) {
> +		sysfs_attr_init(&afu->attr_eb.attr);
> +
>  		afu->attr_eb.attr.name = "afu_err_buff";
>  		afu->attr_eb.attr.mode = S_IRUGO;
>  		afu->attr_eb.size = afu->eb_len;

-- 
Regards,
Daniel

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

* Re: cxl: Fix lockdep warning while creating afu_err_buff attribute
  2015-09-23  3:07 [PATCH] cxl: Fix lockdep warning while creating afu_err_buff attribute Vaibhav Jain
  2015-09-23  3:20 ` Ian Munsie
  2015-09-23  3:21 ` Daniel Axtens
@ 2015-09-25  2:12 ` Michael Ellerman
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2015-09-25  2:12 UTC (permalink / raw)
  To: Vaibhav Jain, linuxppc-dev; +Cc: Vaibhav Jain, mikey, Ian Munsie, Daniel Axtens

On Wed, 2015-23-09 at 03:07:59 UTC, Vaibhav Jain wrote:
> Presently a lockdep warning is reported during creation of afu_err_buff
> bin_attribute for the afu. This is caused due to the variable attr.key
> not pointing to a static class key, hence the function lockdep_init_map
> reports this warning:
> 
>  BUG: key <some-address> not in .data!
> 
> The patch fixes this issue by calling sysfs_attr_init on the
> attr_eb.attr structure before populating it with the afu_err_buff file
> details. This will populate the attr.key variable with a static class
> key so that lockdep_init_map stops complaining about the lockdep key not
> being static.
> 
> Reported-by: Daniel Axtens <dja@axtens.net>
> Signed-off-by: Vaibhav Jain <vaibhav@linux.vnet.ibm.com>
> Acked-by: Ian Munsie <imunsie@au1.ibm.com>
> Reviewed-by: Daniel Axtens <dja@axtens.net>

Applied to powerpc fixes, thanks.

https://git.kernel.org/powerpc/c/d6eb71a6d2eda21c8cd7a4dc

cheers

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

end of thread, other threads:[~2015-09-25  2:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-23  3:07 [PATCH] cxl: Fix lockdep warning while creating afu_err_buff attribute Vaibhav Jain
2015-09-23  3:20 ` Ian Munsie
2015-09-23  3:21 ` Daniel Axtens
2015-09-25  2:12 ` Michael Ellerman

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).