]> git.openfabrics.org - ~shefty/librdmacm.git/commitdiff
pop (CONFLICT)
authorSean Hefty <sean.hefty@intel.com>
Thu, 25 Oct 2012 04:28:45 +0000 (21:28 -0700)
committerSean Hefty <sean.hefty@intel.com>
Thu, 25 Oct 2012 04:28:45 +0000 (21:28 -0700)
meta
patches/iom-dbg

diff --git a/meta b/meta
index 2673d394b2e82cd9c490583e782fbc4e9d06992d..ae34df63844dfe1e114977b8803c89a6818f1add 100644 (file)
--- a/meta
+++ b/meta
@@ -1,11 +1,11 @@
 Version: 1
-Previous: 54ca1fa644a32c74000be5742a11fdfd927c301f
+Previous: 2a7811d5d9a1579722f62082f6be1a45b725c499
 Head: f430b1daa151b469ed6be9560de8aee864082b5e
 Applied:
   rs-iomap: 5c948c6ae6c8a7ab67f14e1f75c014ea5a632409
   riostream: 16e4d972aa49f8ac13a96adabb47d8367a8c1f01
+  iom-dbg: f430b1daa151b469ed6be9560de8aee864082b5e
 Unapplied:
-  iom-dbg: ac8888a35f200ffc7ef8dd831b5f62226e93624f
   resv-rs-len: 7b6ff5c4894f54b221d877adcd709795dffb2fe9
   rs-target-sgl: 7a07c80f2242e80c076dcf3ec6bb4c94626b284f
   af-ib-conn: 70cdbcec6986d1fcc8146a73cf2d8b6a537e71f5
index c5c2057e2d879c004184face356da361c62d7ddc..57236b5c0d653186eb658183828f28dce4aca6e5 100644 (file)
@@ -1,5 +1,5 @@
-Bottom: e59a8c8a92560ce29975049974660fa4c31bbe33
-Top:    50ab41d185d366054aa5519e3090748bd9eda7a4
+Bottom: 16087bf3ee4c6f9e0fea665081abcacbc86777ee
+Top:    16087bf3ee4c6f9e0fea665081abcacbc86777ee
 Author: Sean Hefty <sean.hefty@intel.com>
 Date:   2012-10-24 16:00:03 -0700
 
@@ -8,154 +8,4 @@ debug iomap
 
 ---
 
-diff --git a/src/rsocket.c b/src/rsocket.c
-index afcc5b1..09933f5 100644
---- a/src/rsocket.c
-+++ b/src/rsocket.c
-@@ -46,6 +46,7 @@
- #include <string.h>
- #include <netinet/in.h>
- #include <netinet/tcp.h>
-+#include <stdio.h>
- #include <rdma/rdma_cma.h>
- #include <rdma/rdma_verbs.h>
-@@ -1046,6 +1047,7 @@ static int rs_poll_cq(struct rsocket *rs)
-                               rs->sseq_comp = (uint16_t) rs_msg_data(imm_data);
-                               break;
-                       case RS_OP_IOMAP_SGL:
-+                              printf("%s - updated iomap %d\n", __func__, rs_msg_data(imm_data));
-                               /* The iomap was updated, that's nice to know. */
-                               break;
-                       case RS_OP_CTRL:
-@@ -1057,6 +1059,7 @@ static int rs_poll_cq(struct rsocket *rs)
-                               }
-                               break;
-                       case RS_OP_WRITE:
-+                              printf("%s - write op - BAD\n", __func__);
-                               /* We really shouldn't be here. */
-                               break;
-                       default:
-@@ -1077,6 +1080,7 @@ static int rs_poll_cq(struct rsocket *rs)
-                                       rs->state = rs_disconnected;
-                               break;
-                       case RS_OP_IOMAP_SGL:
-+                              printf("%s - iomap update completed\n", __func__);
-                               rs->sqe_avail++;
-                               rs->sbuf_bytes_avail += sizeof(struct rs_iomap);
-                               break;
-@@ -1398,6 +1402,7 @@ static int rs_send_iomaps(struct rsocket *rs, int flags)
-       struct rs_iomap iom;
-       int ret;
-+      printf("%s\n", __func__);
-       fastlock_acquire(&rs->iomap_lock);
-       while (!dlist_empty(&rs->iomap_queue)) {
-               if (!rs_can_send(rs)) {
-@@ -1454,6 +1459,7 @@ static int rs_send_iomaps(struct rsocket *rs, int flags)
-       }
-       rs->iomap_pending = !dlist_empty(&rs->iomap_queue);
-+      printf("%s - pending = %d\n", __func__, rs->iomap_pending);
-       fastlock_release(&rs->iomap_lock);
-       return ret;
- }
-@@ -2290,7 +2296,9 @@ static struct rs_iomap_mr *rs_get_iomap_mr(struct rsocket *rs)
- {
-       int i;
-+      printf("%s\n", __func__);
-       if (!rs->remote_iomappings) {
-+              printf("%s - allocate remote iomappings\n", __func__);
-               rs->remote_iomappings = calloc(rs->remote_iomap.length,
-                                              sizeof(*rs->remote_iomappings));
-               if (!rs->remote_iomappings)
-@@ -2301,9 +2309,11 @@ static struct rs_iomap_mr *rs_get_iomap_mr(struct rsocket *rs)
-       }
-       for (i = 0; i < rs->remote_iomap.length; i++) {
-+              printf("%s - looking for empty slot %d\n", __func__, i);
-               if (!rs->remote_iomappings[i].mr)
-                       return &rs->remote_iomappings[i];
-       }
-+      printf("%s - all slots filled\n", __func__);
-       return NULL;
- }
-@@ -2318,15 +2328,22 @@ off_t riomap(int socket, void *buf, size_t len, int prot, int flags, off_t offse
-       struct rs_iomap_mr *iomr;
-       int access = IBV_ACCESS_LOCAL_WRITE;
-+      printf("%s\n", __func__);
-       rs = idm_at(&idm, socket);
-       if ((rs->state != rs_connect_rdwr) || (prot & ~(PROT_WRITE | PROT_NONE)))
-+      {
-+              printf("%s - invalid state ((%x) %d prot %d \n", __func__,
-+                      rs->state, (rs->state != rs_connect_rdwr), (prot & ~(PROT_WRITE | PROT_NONE)));
-               return ERR(EINVAL);
-+      }
-       fastlock_acquire(&rs->iomap_lock);
-       if (prot & PROT_WRITE) {
-+              printf("%s - remote mapping\n", __func__);
-               iomr = rs_get_iomap_mr(rs);
-               access |= IBV_ACCESS_REMOTE_WRITE;
-       } else {
-+              printf("%s - local mapping\n", __func__);
-               iomr = calloc(1, sizeof *iomr);
-               iomr->index = -1;
-       }
-@@ -2345,11 +2362,13 @@ off_t riomap(int socket, void *buf, size_t len, int prot, int flags, off_t offse
-       if (offset == -1)
-               offset = (uintptr_t) buf;
-+      printf("%s mapped to offset %lld\n", __func__, offset);
-       iomr->offset = offset;
-       atomic_init(&iomr->refcnt);
-       atomic_set(&iomr->refcnt, 1);
-       if (iomr->index >= 0) {
-+              printf("%s - map pending\n", __func__);
-               dlist_insert_tail(&iomr->entry, &rs->iomap_queue);
-               rs->iomap_pending = 1;
-       } else {
-@@ -2367,6 +2386,7 @@ int riounmap(int socket, void *buf, size_t len)
-       dlist_entry *entry;
-       int ret = 0;
-+      printf("%s\n", __func__);
-       rs = idm_at(&idm, socket);
-       fastlock_acquire(&rs->iomap_lock);
-@@ -2396,12 +2416,15 @@ out:
- static struct rs_iomap *rs_find_iomap(struct rsocket *rs, off_t offset)
- {
-       int i;
-+      printf("%s\n", __func__);
-       for (i = 0; i < rs->target_iomap_size; i++) {
-+              printf("%s - checking target index %d\n", __func__, i);
-               if (offset >= rs->target_iomap[i].offset &&
-                   offset < rs->target_iomap[i].offset + rs->target_iomap[i].sge.length)
-                       return &rs->target_iomap[i];
-       }
-+      printf("%s - offset not found\n", __func__);
-       return NULL;
- }
-@@ -2414,6 +2437,7 @@ size_t riowrite(int socket, const void *buf, size_t count, off_t offset, int fla
-       uint32_t xfer_size, olen = RS_OLAP_START_SIZE;
-       int ret = 0;
-+      printf("%s\n", __func__);
-       rs = idm_at(&idm, socket);
-       fastlock_acquire(&rs->slock);
-       if (rs->iomap_pending) {
-@@ -2421,6 +2445,7 @@ size_t riowrite(int socket, const void *buf, size_t count, off_t offset, int fla
-               if (ret)
-                       goto out;
-       }
-+      printf("%s - initiating RDMA write\n", __func__);
-       for (; left; left -= xfer_size, buf += xfer_size, offset += xfer_size) {
-               if (!iom || offset > iom->offset + iom->sge.length) {
-                       iom = rs_find_iomap(rs, offset);
+