]> git.openfabrics.org - ~shefty/librdmacm.git/commitdiff
refresh
authorSean Hefty <sean.hefty@intel.com>
Tue, 5 Feb 2013 00:50:19 +0000 (16:50 -0800)
committerSean Hefty <sean.hefty@intel.com>
Tue, 5 Feb 2013 00:50:19 +0000 (16:50 -0800)
meta
patches/kern-bug
patches/refresh-temp [deleted file]

diff --git a/meta b/meta
index 62c515dc10246351c9ea0ae2922c50f39d6dc0cc..1976a540d22b01d8c942a27cfda03a7acee35008 100644 (file)
--- a/meta
+++ b/meta
@@ -1,9 +1,8 @@
 Version: 1
-Previous: c07515fb27ac76eee559abf93a24f88c22da2177
-Head: f92378c81bfbd9977a5e505488ee4483542a4b1f
+Previous: 08a23d4adb2008c76c323b503aca2e2e652f7c71
+Head: 69fadb50636d98de57c9069b83adf6d2c5c77fc6
 Applied:
-  kern-bug: e9d902d6e0b1da78a2bea53e7e3b537630034ad5
-  refresh-temp: f92378c81bfbd9977a5e505488ee4483542a4b1f
+  kern-bug: 69fadb50636d98de57c9069b83adf6d2c5c77fc6
 Unapplied:
   af-ib-conn: cf7b9e73d471477d4c7dff2592e5b0d3a7dea8ae
   addrtype: 23a84fed89ba3f6b0eb63e5f8b37c0df504d0d3e
index 6c69ea12804ee1709e804f89fe78ef024049e9a2..79315b510755602c5f8b9a712b6767ae4798e895 100644 (file)
@@ -1,5 +1,5 @@
 Bottom: b6004c656a03f1cecd7bb483178086496ae46a69
-Top:    1f293108ce283eca535112af13051a53881e8db9
+Top:    63d9ee86b7812695228cc4f4018bf998f3eaaa39
 Author: Sean Hefty <sean.hefty@intel.com>
 Date:   2013-02-01 17:17:34 -0800
 
@@ -26,18 +26,21 @@ Signed-off-by: Sean Hefty <sean.hefty@intel.com>
 ---
 
 diff --git a/src/cma.c b/src/cma.c
-index ff9b426..918592a 100755
+index ff9b426..2fb9913 100755
 --- a/src/cma.c
 +++ b/src/cma.c
-@@ -50,6 +50,7 @@
+@@ -48,8 +48,10 @@
+ #include <byteswap.h>
+ #include <stddef.h>
  #include <netdb.h>
++#include <syslog.h>
  
  #include "cma.h"
 +#include "indexer.h"
  #include <infiniband/driver.h>
  #include <infiniband/marshall.h>
  #include <rdma/rdma_cma.h>
-@@ -123,6 +124,8 @@ static int cma_dev_cnt;
+@@ -123,6 +125,8 @@ static int cma_dev_cnt;
  static pthread_mutex_t mut = PTHREAD_MUTEX_INITIALIZER;
  static int abi_ver = RDMA_USER_CM_MAX_ABI_VERSION;
  int af_ib_support;
@@ -46,7 +49,7 @@ index ff9b426..918592a 100755
  
  static void ucma_cleanup(void)
  {
-@@ -135,6 +138,7 @@ static void ucma_cleanup(void)
+@@ -135,6 +139,7 @@ static void ucma_cleanup(void)
                        ibv_close_device(cma_dev_array[cma_dev_cnt].verbs);
                }
  
@@ -54,7 +57,7 @@ index ff9b426..918592a 100755
                free(cma_dev_array);
                cma_dev_cnt = 0;
        }
-@@ -214,6 +218,7 @@ int ucma_init(void)
+@@ -214,6 +219,7 @@ int ucma_init(void)
                return 0;
        }
  
@@ -62,7 +65,7 @@ index ff9b426..918592a 100755
        ret = check_abi_version();
        if (ret)
                goto err1;
-@@ -275,6 +280,7 @@ err3:
+@@ -275,6 +281,7 @@ err3:
  err2:
        ibv_free_device_list(dev_list);
  err1:
@@ -70,7 +73,7 @@ index ff9b426..918592a 100755
        pthread_mutex_unlock(&mut);
        return ret;
  }
-@@ -376,8 +382,27 @@ static void ucma_put_device(struct cma_device *cma_dev)
+@@ -376,8 +383,27 @@ static void ucma_put_device(struct cma_device *cma_dev)
        pthread_mutex_unlock(&mut);
  }
  
@@ -98,7 +101,7 @@ index ff9b426..918592a 100755
        if (id_priv->cma_dev)
                ucma_put_device(id_priv->cma_dev);
        pthread_cond_destroy(&id_priv->cond);
-@@ -406,6 +431,7 @@ static struct cma_id_private *ucma_alloc_id(struct rdma_event_channel *channel,
+@@ -406,6 +432,7 @@ static struct cma_id_private *ucma_alloc_id(struct rdma_event_channel *channel,
        id_priv->id.context = context;
        id_priv->id.ps = ps;
        id_priv->id.qp_type = qp_type;
@@ -106,7 +109,7 @@ index ff9b426..918592a 100755
  
        if (!channel) {
                id_priv->id.channel = rdma_create_event_channel();
-@@ -455,6 +481,7 @@ static int rdma_create_id2(struct rdma_event_channel *channel,
+@@ -455,6 +482,7 @@ static int rdma_create_id2(struct rdma_event_channel *channel,
        VALGRIND_MAKE_MEM_DEFINED(&resp, sizeof resp);
  
        id_priv->handle = resp.id;
@@ -114,7 +117,7 @@ index ff9b426..918592a 100755
        *id = &id_priv->id;
        return 0;
  
-@@ -1785,6 +1812,7 @@ static int ucma_process_conn_req(struct cma_event *evt,
+@@ -1785,6 +1813,7 @@ static int ucma_process_conn_req(struct cma_event *evt,
        evt->event.listen_id = &evt->id_priv->id;
        evt->event.id = &id_priv->id;
        id_priv->handle = handle;
@@ -122,7 +125,7 @@ index ff9b426..918592a 100755
        id_priv->initiator_depth = evt->event.param.conn.initiator_depth;
        id_priv->responder_resources = evt->event.param.conn.responder_resources;
  
-@@ -1916,7 +1944,28 @@ retry:
+@@ -1916,7 +1945,28 @@ retry:
        VALGRIND_MAKE_MEM_DEFINED(&resp, sizeof resp);
  
        evt->event.event = resp.event;
diff --git a/patches/refresh-temp b/patches/refresh-temp
deleted file mode 100644 (file)
index 9983982..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-Bottom: 1f293108ce283eca535112af13051a53881e8db9
-Top:    63d9ee86b7812695228cc4f4018bf998f3eaaa39
-Author: Sean Hefty <sean.hefty@intel.com>
-Date:   2013-02-04 16:50:19 -0800
-
-Refresh of kern-bug
-
----
-
-diff --git a/src/cma.c b/src/cma.c
-index 918592a..2fb9913 100755
---- a/src/cma.c
-+++ b/src/cma.c
-@@ -48,6 +48,7 @@
- #include <byteswap.h>
- #include <stddef.h>
- #include <netdb.h>
-+#include <syslog.h>
- #include "cma.h"
- #include "indexer.h"