From: James Simmons <jsimmons@infradead.org>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
devel@driverdev.osuosl.org, Oleg Drokin <oleg.drokin@intel.com>,
Andreas Dilger <andreas.dilger@intel.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
HPDD-discuss@ml01.01.org, lustre-devel@lists.lustre.org,
James Simmons <jsimmons@infradead.org>
Subject: [PATCH 0/3] First set of Intel branch merger for libcfs/lnet
Date: Thu, 21 May 2015 18:46:15 -0400 [thread overview]
Message-ID: <1432248378-28912-1-git-send-email-jsimmons@infradead.org> (raw)
In-Reply-To: <uja.ornl@gmail.com>
This is the first set of patches that are current in the Intel branch
which are apart of the effort to cleanup LNet/libcfs.
James Simmons (3):
staging:lustre: remove tcpip abstraction from libcfs
staging:lustre: remove kernel defines in userland headers
staging:lustre: cleanup libcfs lock handling
.../staging/lustre/include/linux/libcfs/libcfs.h | 21 -
.../lustre/include/linux/libcfs/libcfs_private.h | 51 --
.../lustre/include/linux/lnet/api-support.h | 44 --
drivers/staging/lustre/include/linux/lnet/api.h | 51 +-
.../staging/lustre/include/linux/lnet/lib-lnet.h | 264 ++-------
.../staging/lustre/include/linux/lnet/lib-types.h | 649 +++++++++-----------
.../lustre/include/linux/lnet/linux/api-support.h | 42 --
.../lustre/include/linux/lnet/linux/lib-lnet.h | 71 ---
.../lustre/include/linux/lnet/linux/lib-types.h | 45 --
.../staging/lustre/include/linux/lnet/linux/lnet.h | 56 --
.../lustre/include/linux/lnet/lnet-sysctl.h | 49 --
drivers/staging/lustre/include/linux/lnet/lnet.h | 11 +-
.../staging/lustre/include/linux/lnet/lnetctl.h | 36 +-
drivers/staging/lustre/include/linux/lnet/lnetst.h | 665 ++++++++++++--------
drivers/staging/lustre/include/linux/lnet/nidstr.h | 73 +++
drivers/staging/lustre/include/linux/lnet/ptllnd.h | 93 ---
.../lustre/include/linux/lnet/ptllnd_wire.h | 119 ----
.../staging/lustre/include/linux/lnet/socklnd.h | 91 ++--
drivers/staging/lustre/include/linux/lnet/types.h | 266 +++++++--
.../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c | 4 +-
.../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h | 9 +-
.../staging/lustre/lnet/klnds/socklnd/socklnd.c | 16 +-
.../staging/lustre/lnet/klnds/socklnd/socklnd.h | 3 +-
.../staging/lustre/lnet/klnds/socklnd/socklnd_cb.c | 7 +-
.../lustre/lnet/klnds/socklnd/socklnd_lib-linux.c | 21 +-
.../lustre/lnet/klnds/socklnd/socklnd_proto.c | 30 +-
drivers/staging/lustre/lnet/lnet/Makefile | 7 +-
drivers/staging/lustre/lnet/lnet/acceptor.c | 47 +-
drivers/staging/lustre/lnet/lnet/api-ni.c | 100 +---
drivers/staging/lustre/lnet/lnet/config.c | 21 +-
drivers/staging/lustre/lnet/lnet/lib-eq.c | 2 +-
drivers/staging/lustre/lnet/lnet/lib-md.c | 6 +-
drivers/staging/lustre/lnet/lnet/lib-me.c | 24 +-
drivers/staging/lustre/lnet/lnet/lib-msg.c | 22 +-
drivers/staging/lustre/lnet/lnet/lib-socket.c | 616 ++++++++++++++++++
drivers/staging/lustre/lnet/lnet/module.c | 4 +-
drivers/staging/lustre/lnet/lnet/router.c | 145 -----
drivers/staging/lustre/lustre/include/lustre_net.h | 4 +-
drivers/staging/lustre/lustre/libcfs/Makefile | 1 -
drivers/staging/lustre/lustre/libcfs/fail.c | 2 +-
.../lustre/lustre/libcfs/linux/linux-tcpip.c | 623 ------------------
.../lustre/lustre/libcfs/linux/linux-tracefile.c | 4 +-
drivers/staging/lustre/lustre/libcfs/module.c | 11 +-
drivers/staging/lustre/lustre/libcfs/tracefile.c | 2 +-
44 files changed, 1856 insertions(+), 2572 deletions(-)
delete mode 100644 drivers/staging/lustre/include/linux/lnet/api-support.h
delete mode 100644 drivers/staging/lustre/include/linux/lnet/linux/api-support.h
delete mode 100644 drivers/staging/lustre/include/linux/lnet/linux/lib-lnet.h
delete mode 100644 drivers/staging/lustre/include/linux/lnet/linux/lib-types.h
delete mode 100644 drivers/staging/lustre/include/linux/lnet/linux/lnet.h
delete mode 100644 drivers/staging/lustre/include/linux/lnet/lnet-sysctl.h
create mode 100644 drivers/staging/lustre/include/linux/lnet/nidstr.h
delete mode 100644 drivers/staging/lustre/include/linux/lnet/ptllnd.h
delete mode 100644 drivers/staging/lustre/include/linux/lnet/ptllnd_wire.h
create mode 100644 drivers/staging/lustre/lnet/lnet/lib-socket.c
delete mode 100644 drivers/staging/lustre/lustre/libcfs/linux/linux-tcpip.c
next parent reply other threads:[~2015-05-21 22:56 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <uja.ornl@gmail.com>
2015-05-21 22:46 ` James Simmons [this message]
2015-05-22 18:32 ` [PATCH 1/6] staging:lustre:remove useless libcfs_sock_release James Simmons
2015-05-22 18:32 ` [PATCH 2/6] staging:lustre:remove useless libcfs_sock_abort_accept James Simmons
2015-05-22 18:32 ` [PATCH 3/6] staging:lustre: rename tcpip handling functions to lnet_* prefix James Simmons
2015-05-22 18:32 ` [PATCH 4/6] staging:lustre: use available kernel wrappers in lib-socket.c James Simmons
2015-05-22 18:32 ` [PATCH 5/6] staging:lustre: style cleanups for lib-socket.c James Simmons
2015-05-25 9:37 ` Dan Carpenter
2015-05-27 15:01 ` [lustre-devel] " Simmons, James A.
2015-05-27 15:24 ` Dan Carpenter
2015-05-27 21:04 ` Simmons, James A.
2015-05-22 18:32 ` [PATCH 6/6] staging:lustre: Update license and copyright " James Simmons
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=1432248378-28912-1-git-send-email-jsimmons@infradead.org \
--to=jsimmons@infradead.org \
--cc=HPDD-discuss@ml01.01.org \
--cc=andreas.dilger@intel.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lustre-devel@lists.lustre.org \
--cc=oleg.drokin@intel.com \
/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;
as well as URLs for NNTP newsgroup(s).