提交 79b38915 编写于 作者: D David S. Miller

irda: iriap: Use seperate lockdep class for irias_objects->hb_spinlock

The SEQ output functions grab the obj->attrib->hb_spinlock lock of
sub-objects found in the hash traversal.  These locks are in a different
realm than the one used for the irias_objects hash table itself.

So put the latter into it's own lockdep class.
Reported-by: NDave Jones <davej@redhat.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 3019de12
...@@ -87,6 +87,8 @@ static inline void iriap_start_watchdog_timer(struct iriap_cb *self, ...@@ -87,6 +87,8 @@ static inline void iriap_start_watchdog_timer(struct iriap_cb *self,
iriap_watchdog_timer_expired); iriap_watchdog_timer_expired);
} }
static struct lock_class_key irias_objects_key;
/* /*
* Function iriap_init (void) * Function iriap_init (void)
* *
...@@ -114,6 +116,9 @@ int __init iriap_init(void) ...@@ -114,6 +116,9 @@ int __init iriap_init(void)
return -ENOMEM; return -ENOMEM;
} }
lockdep_set_class_and_name(&irias_objects->hb_spinlock, &irias_objects_key,
"irias_objects");
/* /*
* Register some default services for IrLMP * Register some default services for IrLMP
*/ */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册