]> git.openfabrics.org - ~shefty/librdmacm.git/commitdiff
pop (CONFLICT)
authorSean Hefty <sean.hefty@intel.com>
Fri, 10 Aug 2012 23:24:08 +0000 (16:24 -0700)
committerSean Hefty <sean.hefty@intel.com>
Fri, 10 Aug 2012 23:24:08 +0000 (16:24 -0700)
meta
patches/dbg-out

diff --git a/meta b/meta
index 2232575554332626966b03e587c3c386298bbce3..ec0ee10a735dc3c936fa93409be6bb0f77caf72e 100644 (file)
--- a/meta
+++ b/meta
@@ -1,13 +1,13 @@
 Version: 1
-Previous: 60721988e096ac1b322fcbfa99ec0381e98e88f8
+Previous: 3c979b2f3a1b3d21780e66f8dc77fcba1b35181d
 Head: 497abea25fda7228dfe6993d17514b45330706bc
 Applied:
   real-close: 3409f8d6af187d25c63a5d1f8ee8bff5f14555e2
   dup2: ca5813e7cf95dee5933fc417e4a34d26f2b01824
   oobinline: ac51c1095f505373a6ec54b8f1d990259fb34d97
+  dbg-out: 497abea25fda7228dfe6993d17514b45330706bc
 Unapplied:
   fstat: a62c653906870422edef5f6388dac9f76c953e35
-  dbg-out: 80bb847cde725778bd04a88fabca99a27188576a
   dbg: 0c269855776d3001e37da8c8afe283c20e1d6cd6
   waitall-buggy: c49c6b56c55385774065f5aa2704078e6ae0ceb8
   rs-1sge: 8ec392829399dec7ed5c608b8697a482e5faa2de
index 782ca3c8fb130bec2f0684691ec0e92b39063b59..916bc5fff29c52ebfa2c1d958bbdc1097431cb57 100644 (file)
@@ -1,5 +1,5 @@
-Bottom: 6bbb92f637582964eea7a287f91549c84da9571a
-Top:    b8e33c8cc997f75f8237040667ce4e1659e75b0d
+Bottom: 3ea2748a5c41b11a2e7033c56bddd938d2770b6c
+Top:    3ea2748a5c41b11a2e7033c56bddd938d2770b6c
 Author: Sean Hefty <sean.hefty@intel.com>
 Date:   2012-08-07 21:30:48 -0700
 
@@ -7,221 +7,4 @@ support for debug prints
 
 ---
 
-diff --git a/src/preload.c b/src/preload.c
-index 53f8543..5ab023a 100644
---- a/src/preload.c
-+++ b/src/preload.c
-@@ -48,6 +48,8 @@
- #include <netinet/tcp.h>
- #include <unistd.h>
- #include <semaphore.h>
-+#include <stdio.h>
-+#include <sys/syscall.h>
- #include <rdma/rdma_cma.h>
- #include <rdma/rdma_verbs.h>
-@@ -98,6 +100,8 @@ static int rq_size;
- static int sq_inline;
- static int fork_support;
-+static FILE *fout;
-+
- enum fd_type {
-       fd_normal,
-       fd_rsocket,
-@@ -286,6 +290,7 @@ static void init_preload(void)
-       rs.getsockopt = dlsym(RTLD_DEFAULT, "rgetsockopt");
-       rs.fcntl = dlsym(RTLD_DEFAULT, "rfcntl");
-+      fout = fopen("rs-out.txt", "w+");
-       getenv_options();
-       init = 1;
- out:
-@@ -383,6 +388,7 @@ int socket(int domain, int type, int protocol)
-       static __thread int recursive;
-       int index, ret;
-+      fprintf(fout, "%d socket\n", (int)syscall(SYS_gettid));
-       if (recursive)
-               goto real;
-@@ -391,6 +397,8 @@ int socket(int domain, int type, int protocol)
-       if (index < 0)
-               return index;
-+      fprintf(fout, "%d socket %d\n", (int)syscall(SYS_gettid), index);
-+      fflush(fout);
-       recursive = 1;
-       ret = rsocket(domain, type, protocol);
-       recursive = 0;
-@@ -405,6 +413,9 @@ int socket(int domain, int type, int protocol)
-                       fd_store(index, ret, fd_rsocket);
-                       set_rsocket_options(ret);
-               }
-+              fprintf(fout, "%d socket %d real fd %d type %d\n",
-+                              (int)syscall(SYS_gettid), index, ret, fd_gett(index));
-+              fflush(fout);
-               return index;
-       }
-       fd_close(index, &ret);
-@@ -415,6 +426,8 @@ real:
- int bind(int socket, const struct sockaddr *addr, socklen_t addrlen)
- {
-       int fd;
-+      fprintf(fout, "%d bind %d\n", (int)syscall(SYS_gettid), socket);
-+      fflush(fout);
-       return (fd_get(socket, &fd) == fd_rsocket) ?
-               rbind(fd, addr, addrlen) : real.bind(fd, addr, addrlen);
- }
-@@ -422,6 +435,8 @@ int bind(int socket, const struct sockaddr *addr, socklen_t addrlen)
- int listen(int socket, int backlog)
- {
-       int fd;
-+      fprintf(fout, "%d listen %d\n", (int)syscall(SYS_gettid), socket);
-+      fflush(fout);
-       return (fd_get(socket, &fd) == fd_rsocket) ?
-               rlisten(fd, backlog) : real.listen(fd, backlog);
- }
-@@ -432,6 +447,8 @@ int accept(int socket, struct sockaddr *addr, socklen_t *addrlen)
-       enum fd_type type;
-       type = fd_get(socket, &fd);
-+      fprintf(fout, "%d accept %d\n", (int)syscall(SYS_gettid), socket);
-+      fflush(fout);
-       if (type == fd_rsocket || type == fd_fork) {
-               index = fd_open();
-               if (index < 0)
-@@ -444,6 +461,9 @@ int accept(int socket, struct sockaddr *addr, socklen_t *addrlen)
-                       return ret;
-               }
-+              fprintf(fout, "%d accept %d new fd %d new real fd %d\n",
-+                      (int)syscall(SYS_gettid), socket, index, ret);
-+              fflush(fout);
-               fd_store(index, ret, type);
-               return index;
-       } else {
-@@ -465,6 +485,8 @@ static int fork_active(int socket, const struct sockaddr *addr, socklen_t addrle
-       long flags;
-       fd = fd_getd(socket);
-+      fprintf(fout, "%d fork_active - %d fd %d\n", (int)syscall(SYS_gettid), socket, fd);
-+      fflush(fout);
-       flags = real.fcntl(fd, F_GETFL);
-       real.fcntl(fd, F_SETFL, 0);
-       ret = real.connect(fd, addr, addrlen);
-@@ -495,6 +517,8 @@ static void fork_passive(int socket)
-       uint32_t msg;
-       fd_get(socket, &sfd);
-+      fprintf(fout, "%d fork_passive %d real fd %d\n", (int)syscall(SYS_gettid), socket, sfd);
-+      fflush(fout);
-       len = sizeof sin6;
-       ret = real.getsockname(sfd, (struct sockaddr *) &sin6, &len);
-@@ -527,11 +551,17 @@ static void fork_passive(int socket)
-       ret = rlisten(lfd, 1);
-       if (ret)
-               goto lclose;
-+      fprintf(fout, "%d fork_passive %d, listening for fork\n", (int)syscall(SYS_gettid), socket);
-+      fflush(fout);
-       msg = 0;
-       len = real.write(sfd, &msg, sizeof msg);
-       if (len != sizeof msg)
-+      {
-+              fprintf(fout, "%d fork_passive - %d write failed\n", (int)syscall(SYS_gettid), socket);
-+              fflush(fout);
-               goto lclose;
-+      }
-       dfd = raccept(lfd, NULL, NULL);
-       if (dfd < 0) {
-@@ -547,6 +577,9 @@ static void fork_passive(int socket)
-       real.shutdown(sfd, SHUT_RDWR);
-       real.close(sfd);
-       fd_store(socket, dfd, fd_rsocket);
-+      fprintf(fout, "%d fork_passive success %d new fd %d old fd %d\n",
-+              (int)syscall(SYS_gettid), socket, dfd, sfd);
-+      fflush(fout);
- lclose:
-       rclose(lfd);
-@@ -579,6 +612,8 @@ int connect(int socket, const struct sockaddr *addr, socklen_t addrlen)
- {
-       int fd, ret;
-+      fprintf(fout, "%d connect %d\n", (int)syscall(SYS_gettid), socket);
-+      fflush(fout);
-       switch (fd_get(socket, &fd)) {
-       case fd_fork:
-               return fork_active(socket, addr, addrlen);
-@@ -820,18 +855,29 @@ int close(int socket)
-       int ret;
-       init_preload();
-+      fprintf(fout, "%d close %d real fd %d type %d\n",
-+              (int)syscall(SYS_gettid), socket, fd_getd(socket), fd_gett(socket));
-+      fflush(fout);
-       fdi = idm_lookup(&idm, socket);
-       if (!fdi)
-               return real.close(socket);
-       if (fdi->dupfd != -1) {
-+              fprintf(fout, "%d closing dupfd %d\n",
-+                      (int)syscall(SYS_gettid), fdi->dupfd);
-+              fflush(fout);
-               ret = close(fdi->dupfd);
-               if (ret)
-                       return ret;
-       }
-       if (atomic_dec(&fdi->refcnt))
-+      {
-+              fprintf(fout, "%d close - still have ref %d\n",
-+                      (int)syscall(SYS_gettid), atomic_get(&fdi->refcnt));
-+              fflush(fout);
-               return 0;
-+      }
-       idm_clear(&idm, socket);
-       real.close(socket);
-@@ -924,6 +970,8 @@ int dup2(int oldfd, int newfd)
-       int ret;
-       init_preload();
-+      fprintf(fout, "%d dup2 %d -> %d\n", (int)syscall(SYS_gettid), oldfd, newfd);
-+      fflush(fout);
-       oldfdi = idm_lookup(&idm, oldfd);
-       if (oldfdi && oldfdi->type == fd_fork)
-               fork_passive(oldfd);
-@@ -961,6 +1009,9 @@ int dup2(int oldfd, int newfd)
-       atomic_init(&newfdi->refcnt);
-       atomic_set(&newfdi->refcnt, 1);
-       atomic_inc(&oldfdi->refcnt);
-+      fprintf(fout, "%d dup2 %d -> %d, real fd %d type %d\n",
-+              (int)syscall(SYS_gettid), oldfd, newfd, newfdi->fd, newfdi->type);
-+      fflush(fout);
-       return newfd;
- }
-@@ -968,12 +1019,19 @@ int __fxstat64(int ver, int socket, struct stat64 *buf)
- {
-       int fd, ret;
-+      init_preload();
-+      fprintf(fout, "%d fxstat64 socket %d - fd %d type %d\n",
-+                      (int)syscall(SYS_gettid), socket, fd_getd(socket), fd_gett(socket));
-+      fflush(fout);
-       if (fd_get(socket, &fd) == fd_rsocket) {
-               ret = real.fxstat64(ver, socket, buf);
-+              fprintf(fout, "%d fxstat64 - rsocket %d\n", (int)syscall(SYS_gettid), ret);
-               if (!ret)
-                       buf->st_mode = (buf->st_mode & ~S_IFMT) | __S_IFSOCK;
-       } else {
-               ret = real.fxstat64(ver, fd, buf);
-+              fprintf(fout, "%d fxstat64 - normal %d\n", (int)syscall(SYS_gettid), ret);
-       }
-+      fflush(fout);
-       return ret;
- }
+