public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
From: Yann Droneaud <ydroneaud-RlY5vtjFyJ3QT0dZR+AlfA@public.gmane.org>
To: Sean Hefty <sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Jeff Squyres <jsquyres-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org>,
	Bart Van Assche <bvanassche-HInyCGIudOg@public.gmane.org>
Cc: Yann Droneaud <ydroneaud-RlY5vtjFyJ3QT0dZR+AlfA@public.gmane.org>
Subject: [PATCH librdmacm 0/8] librdmacm "synchronisation" against libibverbs
Date: Tue, 16 Jul 2013 23:59:44 +0200	[thread overview]
Message-ID: <cover.1374011243.git.ydroneaud@opteya.com> (raw)

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

             reply	other threads:[~2013-07-16 21:59 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-16 21:59 Yann Droneaud [this message]
     [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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1374011243.git.ydroneaud@opteya.com \
    --to=ydroneaud-rly5vtjfyj3qt0dzr+alfa@public.gmane.org \
    --cc=bvanassche-HInyCGIudOg@public.gmane.org \
    --cc=jsquyres-FYB4Gu1CFyUAvxtiuMwx3w@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=sean.hefty-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox