1. Add hash table/funcs for fc_sess
2. Remove association with vf_sess_by_fids in fc_virt_fab
4. Remove refrences to sa_hash_xxx

Signed-off-by: Yi Zou <[EMAIL PROTECTED]>
---

 drivers/scsi/ofc/include/fc_sess.h    |    2 
 drivers/scsi/ofc/libfc/fc_sess.c      |  226 +++++++++++++++++++++++----------
 drivers/scsi/ofc/libfc/fc_sess_impl.h |    2 
 3 files changed, 162 insertions(+), 68 deletions(-)


diff --git a/drivers/scsi/ofc/include/fc_sess.h 
b/drivers/scsi/ofc/include/fc_sess.h
index d0b4f73..5684a18 100644
--- a/drivers/scsi/ofc/include/fc_sess.h
+++ b/drivers/scsi/ofc/include/fc_sess.h
@@ -81,6 +81,8 @@ static inline u_int64_t fc_sess_key(fc_fid_t local, fc_fid_t 
remote)
 int fc_sess_table_create(struct fc_virt_fab *);
 void fc_sess_table_destroy(struct fc_virt_fab *);
 
+struct fc_sess *fc_sess_hash_lookup(const u_int64_t *key);
+
 /*
  * Lookup or create a new session.
  */
diff --git a/drivers/scsi/ofc/libfc/fc_sess.c b/drivers/scsi/ofc/libfc/fc_sess.c
index 1eb3bc3..4e4acfd 100644
--- a/drivers/scsi/ofc/libfc/fc_sess.c
+++ b/drivers/scsi/ofc/libfc/fc_sess.c
@@ -32,7 +32,6 @@
 
 #include "ofc_dbg.h"
 #include "sa_event.h"
-#include "sa_hash.h"
 
 #include "fc_fs.h"
 #include "fc_els.h"
@@ -64,20 +63,6 @@
 static int fc_sess_debug;
 
 /*
- * Declare hash type for lookup of session by local and remote FCID.
- */
-#define        FC_SESS_HASH_SIZE       32      /* XXX increase later */
-
-static int fc_sess_match(const sa_hash_key_t, void *);
-static u_int32_t fc_sess_hash(const sa_hash_key_t);
-
-static struct sa_hash_type fc_sess_hash_type = {
-       .st_link_offset = offsetof(struct fc_sess, fs_hash_link),
-       .st_match = fc_sess_match,
-       .st_hash = fc_sess_hash,
-};
-
-/*
  * static functions.
  */
 static void fc_sess_enter_init(struct fc_sess *);
@@ -99,6 +84,157 @@ static void fc_sess_recv_logo_req(struct fc_sess *,
                                  struct fc_seq *, struct fc_frame *);
 static void fc_sess_delete(struct fc_sess *, void *);
 static void fc_sess_timeout(unsigned long);
+static void fc_sess_iterate(struct fc_virt_fab *vf,
+       void (*func) (struct fc_sess *, void *), void *arg);
+
+static void fc_sess_debug_print(void *sess_arg, void *arg);
+
+/*
+ * Hash table size for session
+ */
+#define FC_HASH_SESS_SHIFT     5
+#define FC_HASH_SESS_BUCKETS   (1UL << FC_HASH_SESS_SHIFT)
+#define FC_HASH_SESS_MASK      (FC_HASH_SESS_BUCKETS - 1)
+
+static u_int32_t sess_hash_entries;
+static struct hlist_head sess_hash_table[FC_HASH_SESS_BUCKETS];
+
+/**
+ * fc_sess_hash_match - session hash table match functio
+ * @key:       the ptr to the key for match up compare
+ * @sess:      the ptr to the fc_sess structure
+ */
+static inline int fc_sess_hash_match(const u_int64_t *key,
+       struct fc_sess *sess)
+{
+       return *key == fc_sess_key(sess->fs_local_fid, sess->fs_remote_fid);
+}
+
+/**
+ * fc_sess_hash - session hash table hash functio
+ * @key:       the ptr to the key doing the hash
+ */
+static inline u_int32_t fc_sess_hash(const u_int64_t *key)
+{
+       return ((u_int32_t) (((*key) >> 20) ^ (*key))) & FC_HASH_SESS_MASK;
+}
+
+/**
+ * fc_sess_hash_delete - remove the give session from the hash table
+ * @key:       the ptr to the key for match up compare
+ * @sess:      the ptr to the fc_sess structure
+ *
+ * caller should aquire the lock before calling. use vf_lock.
+ */
+static inline void fc_sess_hash_delete(const struct fc_sess *sess,
+       struct fc_virt_fab *vf)
+{
+       hlist_del_rcu((struct hlist_node *)&sess->fs_hash_link);
+       sess_hash_entries--;
+}
+
+/**
+ * fc_sess_hash_insert - session hash table match functio
+ * @key:       the ptr to the key for match up compare
+ * @sess:      the ptr to the fc_sess structure
+ *
+ * caller should aquire the lock before calling. use vf_lock.
+ */
+static inline void fc_sess_hash_insert(const u_int64_t *key,
+       const struct fc_sess *sess,
+       struct fc_virt_fab *vf)
+{
+       struct hlist_head *head;
+
+       head = &sess_hash_table[fc_sess_hash(key)];
+       hlist_add_head_rcu((struct hlist_node *)&sess->fs_hash_link, head);
+       sess_hash_entries++;
+}
+
+/**
+ * fc_sess_hash_lookup - Lookup the session hash table by key.
+ * @key:       ptr to the key to hash bucket
+ *
+ * the caller should acquire either RCU lock for read or spinlock
+ * e.g., vf_lock, for write before calling.
+ */
+inline struct fc_sess *fc_sess_hash_lookup(const u_int64_t *key)
+{
+       struct hlist_node *node;
+       struct hlist_head *head;
+       struct fc_sess *sess;
+
+       head = &sess_hash_table[fc_sess_hash(key)];
+       hlist_for_each_entry_rcu(sess, node, head, fs_hash_link)
+               if (fc_sess_hash_match(key, sess))
+                       return sess;
+       return NULL;
+}
+
+/**
+ * fc_sess_hash_iterate - iterate all items in all buckets of hash table
+ * @callback:  callback function for iterator
+ * @arg:       the arg to be passed to callback as the 2nd arg
+ *
+ * this function uses RCU lock so the caller should not acquire lock
+ * before calling. The callback should not acuqire the same lock either.
+ */
+static void fc_sess_hash_iterate(
+       void (*callback) (void *ep, void *arg), void *arg)
+{
+       struct hlist_node *node;
+       struct hlist_head *head;
+       struct fc_sess *sess;
+       int loop;
+       int count = 0;
+
+       rcu_read_lock();
+       for (loop = 0; loop < FC_HASH_SESS_BUCKETS; loop++) {
+               head = &sess_hash_table[loop];
+               hlist_for_each_entry_rcu(sess, node, head, fs_hash_link) {
+                       (*callback) (sess, arg);
+                       count++;
+               }
+       }
+       rcu_read_unlock();
+       if (count != sess_hash_entries)
+               OFC_DBG("sess_hash_entries %d != count %d",
+                       sess_hash_entries, count);
+       BUG_ON(count != sess_hash_entries);
+}
+
+
+/**
+ * fc_sess_hash_init - initialize the the list heads
+ */
+static void fc_sess_hash_init(void)
+{
+       int loop;
+       for (loop = 0; loop < FC_HASH_SESS_BUCKETS; loop++)
+               INIT_HLIST_HEAD(&sess_hash_table[loop]);
+       sess_hash_entries = 0;
+}
+
+/*
+ * Create hash lookup table for sessions.
+ */
+int fc_sess_table_create(struct fc_virt_fab *vf)
+{
+       fc_sess_hash_init();
+       return 0;
+}
+
+/*
+ * Remove all sessions in a virtual fabric.
+ * This takes care of freeing memory for incoming sessions.
+ */
+void fc_sess_table_destroy(struct fc_virt_fab *vf)
+{
+       fc_sess_iterate(vf, fc_sess_delete, NULL);
+       fc_sess_hash_iterate(fc_sess_debug_print, NULL);
+       fc_sess_hash_init();
+       synchronize_rcu();
+}
 
 /*
  * Lock session.
@@ -170,20 +306,6 @@ static void fc_sess_state_enter(struct fc_sess *sess, enum 
fc_sess_state new)
 }
 
 /*
- * Create hash lookup table for sessions.
- */
-int fc_sess_table_create(struct fc_virt_fab *vf)
-{
-       struct sa_hash *tp;
-
-       tp = sa_hash_create(&fc_sess_hash_type, FC_SESS_HASH_SIZE);
-       if (!tp)
-               return -1;
-       vf->vf_sess_by_fids = tp;
-       return 0;
-}
-
-/*
  * Call a function for all sessions on the fabric.
  * The vf_lock must not be held during the callback.
  *
@@ -242,21 +364,6 @@ static void fc_sess_debug_print(void *sess_arg, void *arg)
 }
 
 /*
- * Remove all sessions in a virtual fabric.
- * This takes care of freeing memory for incoming sessions.
- */
-void fc_sess_table_destroy(struct fc_virt_fab *vf)
-{
-       fc_sess_iterate(vf, fc_sess_delete, NULL);
-       fc_virt_fab_lock(vf);
-       sa_hash_iterate(vf->vf_sess_by_fids, fc_sess_debug_print, NULL);
-       sa_hash_destroy(vf->vf_sess_by_fids);
-       vf->vf_sess_by_fids = NULL;
-       fc_virt_fab_unlock(vf);
-       synchronize_rcu();
-}
-
-/*
  * Create session.
  * If the session already exists, find and hold it.
  */
@@ -314,7 +421,7 @@ struct fc_sess *fc_sess_create(struct fc_local_port *lp,
                         */
                        key = fc_sess_key(lp->fl_fid, rp->rp_fid);
                        fc_virt_fab_lock(vp);
-                       found = sa_hash_lookup(vp->vf_sess_by_fids, &key);
+                       found = fc_sess_hash_lookup(&key);
                        if (found) {
                                fc_sess_hold(found);
                                fc_virt_fab_unlock(vp);
@@ -324,7 +431,7 @@ struct fc_sess *fc_sess_create(struct fc_local_port *lp,
                        } else {
                                fc_remote_port_hold(rp);
                                fc_local_port_hold(lp);
-                               sa_hash_insert(vp->vf_sess_by_fids, &key, sess);
+                               fc_sess_hash_insert(&key, sess, vp);
                                list_add_tail(&sess->fs_list, 
&lp->fl_sess_list);
                                fc_virt_fab_unlock(vp);
                        }
@@ -366,9 +473,9 @@ static void fc_sess_delete(struct fc_sess *sess, void *arg)
        key = fc_sess_key(sess->fs_local_fid, sess->fs_remote_fid);
 
        fc_virt_fab_lock(vp);
-       found = sa_hash_lookup_delete(vp->vf_sess_by_fids, &key);
-       WARN_ON(!found);
+       found = fc_sess_hash_lookup(&key);
        WARN_ON(found != sess);
+       fc_sess_hash_delete(found, vp);
        list_del(&sess->fs_list);                       /* under vf_lock */
        fc_virt_fab_unlock(vp);
 
@@ -453,12 +560,12 @@ void fc_sess_reset(struct fc_sess *sess)
        if (lp->fl_fid != sess->fs_local_fid) {
                key = fc_sess_key(sess->fs_local_fid, sess->fs_remote_fid);
                vp = lp->fl_vf;
-               found = sa_hash_lookup_delete(vp->vf_sess_by_fids, &key);
-               WARN_ON(!found);
+               found = fc_sess_hash_lookup(&key);
                WARN_ON(found != sess);
+               fc_sess_hash_delete(found, vp);
                sess->fs_local_fid = lp->fl_fid;
                key = fc_sess_key(sess->fs_local_fid, sess->fs_remote_fid);
-               sa_hash_insert(vp->vf_sess_by_fids, &key, sess);
+               fc_sess_hash_insert(&key, sess, vp);
        }
        fc_sess_enter_init(sess);
        fc_sess_unlock_send(sess);
@@ -1387,21 +1494,6 @@ static void fc_sess_recv_logo_req(struct fc_sess *sess, 
struct fc_seq *sp,
        fc_frame_free(fp);
 }
 
-static int fc_sess_match(sa_hash_key_t key, void *sess_arg)
-{
-       struct fc_sess *sess = sess_arg;
-
-       return *(u_int64_t *) key ==
-           fc_sess_key(sess->fs_local_fid, sess->fs_remote_fid);
-}
-
-static u_int32_t fc_sess_hash(sa_hash_key_t keyp)
-{
-       u_int64_t key = *(u_int64_t *) keyp;
-
-       return (u_int32_t) ((key >> 20) ^ key);
-}
-
 /*
  * Lookup or create a new session.
  * Returns with the session held.
@@ -1425,7 +1517,7 @@ struct fc_sess *fc_sess_lookup_create(struct 
fc_local_port *lp,
         */
        key = fc_sess_key(lp->fl_fid, fid);
        rcu_read_lock();
-       sess = sa_hash_lookup(vp->vf_sess_by_fids, &key);
+       sess = fc_sess_hash_lookup(&key);
 
        /*
         * Create new session if we didn't find one.
diff --git a/drivers/scsi/ofc/libfc/fc_sess_impl.h 
b/drivers/scsi/ofc/libfc/fc_sess_impl.h
index d844cba..c600186 100644
--- a/drivers/scsi/ofc/libfc/fc_sess_impl.h
+++ b/drivers/scsi/ofc/libfc/fc_sess_impl.h
@@ -61,7 +61,7 @@ struct fc_sess {
        uint8_t         fs_plogi_held : 1; /* sess held by remote login */
        struct sa_event_list *fs_events; /* event list */
        enum fc_event   fs_last_event;  /* last reported event to clients */
-       struct sa_hash_link fs_hash_link; /* link in hash by port pair */
+       struct hlist_node fs_hash_link; /* link in hash by port pair */
        struct fc_lun_disc *fs_lun_disc; /* active LUN discovery if any */
        spinlock_t      fs_lock;        /* lock on state changes */
        struct rcu_head fs_rcu;         /* element for call_rcu() */

-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to