|
@@ -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 *host, int nodeid, octlet_t *store,
|
|
|
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);
|
|
|
|