public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH librdmacm 0/8] librdmacm "synchronisation" against libibverbs
@ 2013-07-16 21:59 Yann Droneaud
       [not found] ` <cover.1374011243.git.ydroneaud-RlY5vtjFyJ3QT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 14+ messages in thread
From: Yann Droneaud @ 2013-07-16 21:59 UTC (permalink / raw)
  To: Sean Hefty, linux-rdma-u79uwXL29TY76Z2rM5mHXA, Jeff Squyres,
	Bart Van Assche
  Cc: Yann Droneaud

Hi,

Please find a few patches to bring librdmacm up to date regarding
autotools support and some others fixes ...

I've used patches from libibverbs to update autoconf/automake
support: I reused commit messages and author of libibverbs commit,
I hope it's ok for you to get credit about those patches to librdmacm.

I've added .gitignore files to the sources and cleanup file modes.

At last, I've added support for close on exec, just like I did
for libibverbs. It might be good to add support for close on exec
since I've managed to get the change applied in the kernel
(Thanks Roland :).


Bart Van Assche (2):
  Add "foreign" option to AM_INIT_AUTOMAKE
  Makefile.am: Fix an automake warning

Jeff Squyres (1):
  autogen.sh: Use autoreconf in autogen.sh

Yann Droneaud (5):
  configure: Apply updates proposed by autoupdate
  configure: Use automake's option "subdir-objects"
  Add .gitignore rules
  Remove executable mode bit on plain text files
  Open files with "close on exec" flag

 .gitignore                | 64 +++++++++++++++++++++++++++++++++++++++++++++++
 Makefile.am               |  2 +-
 autogen.sh                |  7 +-----
 configure.ac              | 40 +++++++++++++++++++++++------
 examples/.gitignore       | 22 ++++++++++++++++
 include/rdma/rdma_cma.h   |  0
 man/rdma_accept.3         |  0
 man/rdma_connect.3        |  0
 man/rdma_create_qp.3      |  0
 man/rdma_getaddrinfo.3    |  0
 man/rdma_join_multicast.3 |  0
 man/rdma_notify.3         |  0
 src/.gitignore            |  9 +++++++
 src/acm.c                 |  4 +--
 src/addrinfo.c            |  0
 src/cma.c                 |  2 +-
 16 files changed, 132 insertions(+), 18 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 examples/.gitignore
 mode change 100755 => 100644 include/rdma/rdma_cma.h
 mode change 100755 => 100644 man/rdma_accept.3
 mode change 100755 => 100644 man/rdma_connect.3
 mode change 100755 => 100644 man/rdma_create_qp.3
 mode change 100755 => 100644 man/rdma_getaddrinfo.3
 mode change 100755 => 100644 man/rdma_join_multicast.3
 mode change 100755 => 100644 man/rdma_notify.3
 create mode 100644 src/.gitignore
 mode change 100755 => 100644 src/acm.c
 mode change 100755 => 100644 src/addrinfo.c
 mode change 100755 => 100644 src/cma.c

-- 
1.8.3.1

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2013-07-31 20:20 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-16 21:59 [PATCH librdmacm 0/8] librdmacm "synchronisation" against libibverbs Yann Droneaud
     [not found] ` <cover.1374011243.git.ydroneaud-RlY5vtjFyJ3QT0dZR+AlfA@public.gmane.org>
2013-07-16 21:59   ` [PATCH librdmacm 1/8] Add "foreign" option to AM_INIT_AUTOMAKE Yann Droneaud
2013-07-16 21:59   ` [PATCH librdmacm 2/8] Makefile.am: Fix an automake warning Yann Droneaud
2013-07-16 21:59   ` [PATCH librdmacm 3/8] autogen.sh: Use autoreconf in autogen.sh Yann Droneaud
     [not found]     ` <317ae98daf0eec49ffb297a5fc59b3738366af6d.1374011243.git.ydroneaud-RlY5vtjFyJ3QT0dZR+AlfA@public.gmane.org>
2013-07-17  4:22       ` Hefty, Sean
     [not found]         ` <1828884A29C6694DAF28B7E6B8A82373805AECD6-P5GAC/sN6hkd3b2yrw5b5LfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2013-07-17  6:21           ` Yann Droneaud
2013-07-17  6:58           ` Or Gerlitz
     [not found]             ` <51E640A6.9070902-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2013-07-31  6:58               ` Or Gerlitz
     [not found]                 ` <51F8B5B1.3010003-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2013-07-31 20:20                   ` Hefty, Sean
2013-07-16 21:59   ` [PATCH librdmacm 4/8] configure: Apply updates proposed by autoupdate Yann Droneaud
2013-07-16 21:59   ` [PATCH librdmacm 5/8] configure: Use automake's option "subdir-objects" Yann Droneaud
2013-07-16 21:59   ` [PATCH librdmacm 6/8] Add .gitignore rules Yann Droneaud
2013-07-16 21:59   ` [PATCH librdmacm 7/8] Remove executable mode bit on plain text files Yann Droneaud
2013-07-16 21:59   ` [PATCH librdmacm 8/8] Open files with "close on exec" flag Yann Droneaud

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox