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

diff --git a/meta b/meta
index f74e821f27bea059dbce9ab193fafbaf6da55522..0bdf445d373e9b3a1402289ce33eb2566f90a47a 100644 (file)
--- a/meta
+++ b/meta
@@ -1,5 +1,5 @@
 Version: 1
-Previous: 166eec871650ae96f4952918759b3b8bb56bc409
+Previous: c69203564f74ae9f90ab3870509e34387b9f3c15
 Head: 9124d132c6e043fff37d562e29b7b8892804252e
 Applied:
   real-close: 3409f8d6af187d25c63a5d1f8ee8bff5f14555e2
@@ -9,8 +9,8 @@ Applied:
   fork-connect: a50a83fb4e574a2cc435bba1abf6f9df3d0cc7a6
   sendfile: 9073427ddddfa2f7c93d0ac4a6da9844cb7d2960
   fstat: 54cd7a8f0be1f0af69828c837846f64661ca2c14
+  dbg-out: 9124d132c6e043fff37d562e29b7b8892804252e
 Unapplied:
-  dbg-out: 04273ee712db4d53efb390462c1b738bb54a57df
   dbg: 0c269855776d3001e37da8c8afe283c20e1d6cd6
   waitall-buggy: c49c6b56c55385774065f5aa2704078e6ae0ceb8
   rs-1sge: 8ec392829399dec7ed5c608b8697a482e5faa2de
index d24636eed28bab86b3af5cad60bcef5ac1ca9097..02b2b05df6eead624321dbda0013f75115d53c0b 100644 (file)
@@ -1,5 +1,5 @@
-Bottom: 3ea2748a5c41b11a2e7033c56bddd938d2770b6c
-Top:    5b0c956c81c8c8130866d7f75a310c32250e2012
+Bottom: 758d450afd5a63013c7540fa171eea46bb810c1a
+Top:    758d450afd5a63013c7540fa171eea46bb810c1a
 Author: Sean Hefty <sean.hefty@intel.com>
 Date:   2012-08-07 21:30:48 -0700
 
@@ -7,200 +7,4 @@ support for debug prints
 
 ---
 
-diff --git a/src/preload.c b/src/preload.c
-index b18d310..b648622 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>
-@@ -97,6 +99,8 @@ static int rq_size;
- static int sq_inline;
- static int fork_support;
-+static FILE *fout;
-+
- enum fd_type {
-       fd_normal,
-       fd_rsocket,
-@@ -284,6 +288,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:
-@@ -381,6 +386,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;
-@@ -389,6 +395,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;
-@@ -403,6 +411,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);
-@@ -413,6 +424,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);
- }
-@@ -420,6 +433,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);
- }
-@@ -430,6 +445,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)
-@@ -442,6 +459,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 {
-@@ -463,6 +483,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);
-@@ -493,6 +515,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);
-@@ -525,11 +549,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) {
-@@ -545,6 +575,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);
-@@ -577,6 +610,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);
-@@ -818,18 +853,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);
-@@ -922,6 +968,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);
-@@ -959,5 +1007,8 @@ 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;
- }
+