login
Header Space

 
 

Re: [PATCH, RFC] Char dev BKL pushdown v2

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Jonathan Corbet <corbet@...>, <linux1394-devel@...>
Cc: Linus Torvalds <torvalds@...>, Ingo Molnar <mingo@...>, Andrew Morton <akpm@...>, Peter Zijlstra <a.p.zijlstra@...>, Thomas Gleixner <tglx@...>, Alan Cox <alan@...>, Alexander Viro <viro@...>, <linux-kernel@...>, Stephen Rothwell <sfr@...>
Date: Monday, May 19, 2008 - 4:07 pm

On 19 May, Stefan Richter wrote at LKML:


From: Stefan Richter <stefanr@s5r6.in-berlin.de>
Subject: ieee1394: video1394: reorder module init, prepare BKL removal

This prepares video1394 for removal of the BKL (big kernel lock):
It allows video1394_open() to be called while video1394_init_module()
is still in progress.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
---
 drivers/ieee1394/highlevel.c |    4 +---
 drivers/ieee1394/highlevel.h |   13 ++++++++++++-
 drivers/ieee1394/video1394.c |    2 ++
 3 files changed, 15 insertions(+), 4 deletions(-)

Index: linux/drivers/ieee1394/highlevel.c
===================================================================
--- linux.orig/drivers/ieee1394/highlevel.c
+++ linux/drivers/ieee1394/highlevel.c
@@ -228,10 +228,8 @@ void hpsb_register_highlevel(struct hpsb
 {
 	unsigned long flags;
 
+	hpsb_init_highlevel(hl);
 	INIT_LIST_HEAD(&hl->addr_list);
-	INIT_LIST_HEAD(&hl->host_info_list);
-
-	rwlock_init(&hl->host_info_lock);
 
 	down_write(&hl_drivers_sem);
 	list_add_tail(&hl->hl_list, &hl_drivers);
Index: linux/drivers/ieee1394/highlevel.h
===================================================================
--- linux.orig/drivers/ieee1394/highlevel.h
+++ linux/drivers/ieee1394/highlevel.h
@@ -2,7 +2,7 @@
 #define IEEE1394_HIGHLEVEL_H
 
 #include <linux/list.h>
-#include <linux/spinlock_types.h>
+#include <linux/spinlock.h>
 #include <linux/types.h>
 
 struct module;
@@ -103,6 +103,17 @@ int highlevel_lock64(struct hpsb_host *h
 void highlevel_fcp_request(struct hpsb_host *host, int nodeid, int direction,
 			   void *data, size_t length);
 
+/**
+ * hpsb_init_highlevel - initialize a struct hpsb_highlevel
+ *
+ * This is only necessary if hpsb_get_hostinfo_bykey can be called
+ * before hpsb_register_highlevel.
+ */
+static inline void hpsb_init_highlevel(struct hpsb_highlevel *hl)
+{
+	rwlock_init(&hl->host_info_lock);
+	INIT_LIST_HEAD(&hl->host_info_list);
+}
 void hpsb_register_highlevel(struct hpsb_highlevel *hl);
 void hpsb_unregister_highlevel(struct hpsb_highlevel *hl);
 
Index: linux/drivers/ieee1394/video1394.c
===================================================================
--- linux.orig/drivers/ieee1394/video1394.c
+++ linux/drivers/ieee1394/video1394.c
@@ -1503,6 +1503,8 @@ static int __init video1394_init_module 
 {
 	int ret;
 
+	hpsb_init_highlevel(&video1394_highlevel);
+
 	cdev_init(&video1394_cdev, &video1394_fops);
 	video1394_cdev.owner = THIS_MODULE;
 	ret = cdev_add(&video1394_cdev, IEEE1394_VIDEO1394_DEV, 16);

-- 
Stefan Richter
-=====-==--- -=-= =--==
http://arcgraph.de/sr/

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH, RFC] Char dev BKL pushdown v2, Jonathan Corbet, (Sun May 18, 6:15 pm)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Stefan Richter, (Mon May 19, 1:46 pm)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Stefan Richter, (Mon May 19, 3:27 pm)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Stefan Richter, (Mon May 19, 4:07 pm)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Ingo Molnar, (Mon May 19, 9:17 am)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Stephen Rothwell, (Mon May 19, 12:03 am)
Re: [PATCH, RFC] Char dev BKL pushdown v2 , Jonathan Corbet, (Mon May 19, 9:46 am)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Roland Dreier, (Mon May 19, 12:00 am)
Re: [PATCH, RFC] Char dev BKL pushdown v2 , Jonathan Corbet, (Mon May 19, 9:37 am)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Roland Dreier, (Mon May 19, 4:38 pm)
Re: [PATCH, RFC] Char dev BKL pushdown v2 , Jonathan Corbet, (Mon May 19, 4:42 pm)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Roland Dreier, (Mon May 19, 6:18 pm)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Alan Cox, (Tue May 20, 4:26 am)
Re: [PATCH, RFC] Char dev BKL pushdown v2 , Jonathan Corbet, (Mon May 19, 6:56 pm)
Re: [PATCH, RFC] Char dev BKL pushdown v2, Jeff Dike, (Mon May 19, 10:10 pm)
speck-geostationary