]> git.openfabrics.org - ~shefty/librdmacm.git/commitdiff
refresh (create temporary patch)
authorSean Hefty <sean.hefty@intel.com>
Wed, 22 Aug 2012 21:18:02 +0000 (14:18 -0700)
committerSean Hefty <sean.hefty@intel.com>
Wed, 22 Aug 2012 21:18:02 +0000 (14:18 -0700)
meta
patches/refresh-temp [new file with mode: 0644]

diff --git a/meta b/meta
index a6ed761e664448dffdf71bf080fddb4da5dd5186..2b19b01b6dfb0e6ddefa433cfe2201d511c835ef 100644 (file)
--- a/meta
+++ b/meta
@@ -1,8 +1,9 @@
 Version: 1
-Previous: 19c86e6b4e0389dab1619da9e31b236f9adb1faa
-Head: 73a673f1bcdab2cee96fde1274b1ac742924b1a7
+Previous: c8a20e3ae15bc9f6068f3b448012caa008d6d013
+Head: 79f3a57fb791dfe250828a969cfe5cc86a24a49a
 Applied:
   dbg-fork: 73a673f1bcdab2cee96fde1274b1ac742924b1a7
+  refresh-temp: 79f3a57fb791dfe250828a969cfe5cc86a24a49a
 Unapplied:
   af_ib: 2e4bfa467343c57c68616c1922c01765df3ed1db
   dbg-out: 4b4c0572eab77856d8fbb919b1feb8f3502a101a
diff --git a/patches/refresh-temp b/patches/refresh-temp
new file mode 100644 (file)
index 0000000..b2404cb
--- /dev/null
@@ -0,0 +1,28 @@
+Bottom: 36fe9752394406c04c3d8f13fe21a0a3fdade499
+Top:    a84f3a159dd9126f12ef6854a797b9e0dcdbf321
+Author: Sean Hefty <sean.hefty@intel.com>
+Date:   2012-08-22 14:18:02 -0700
+
+Refresh of dbg-fork
+
+---
+
+diff --git a/src/preload.c b/src/preload.c
+index 0645f6d..cdca9df 100644
+--- a/src/preload.c
++++ b/src/preload.c
+@@ -413,11 +413,13 @@ int socket(int domain, int type, int protocol)
+               return index;
+       recursive = 1;
+-      ret = rsocket(domain, type, protocol);
++//    ret = rsocket(domain, type, protocol);
++goto realsock;
+       recursive = 0;
+       if (ret >= 0) {
+               if (fork_support) {
+                       rclose(ret);
++realsock:
+                       ret = real.socket(domain, type, protocol);
+                       if (ret < 0)
+                               return ret;