linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] Massive style cleanup for LNet layer
@ 2016-02-12 17:05 James Simmons
  2016-02-12 17:05 ` [PATCH 01/11] staging: lustre: drop *_t from end of struct lnet_text_buf James Simmons
                   ` (10 more replies)
  0 siblings, 11 replies; 14+ messages in thread
From: James Simmons @ 2016-02-12 17:05 UTC (permalink / raw)
  To: Greg Kroah-Hartman, devel, Andreas Dilger, Oleg Dorkin
  Cc: Linux Kernel Mailing List, Lustre Development List, James Simmons

This is the start of the work to bring the upstream client LNet layer
up to date. Before merging in various bug fixes the majority of the
checkpatch issues need to be addressed. This patch series cleans up
the majority of the check patch issues and brings the code style much
closer to what is required for the linux kernel.

James Simmons (11):
  staging: lustre: drop *_t from end of struct lnet_text_buf
  staging: lustre: format properly all comment blocks for LNet core
  staging: lustre: align all code properly for LNet core
  staging: lustre: remove unnecessary parentheses around LNet function pointer
  staging: lustre: remove unnecessary blank lines reported by checkpatch.pl
  staging: lustre: add missing spaces for LNet layer reported by checkpatch.pl
  staging: lustre: don't set more than one variable per line in LNet layer
  staging: lustre: remove space in LNet function declarations
  staging: lustre: balance braces properly in LNet layer
  staging: lustre: fix all NULL comparisons in LNet layer
  staging: lustre: fix all conditional comparison to zero in LNet layer

 drivers/staging/lustre/include/linux/lnet/api.h    |   22 +-
 .../staging/lustre/include/linux/lnet/lib-lnet.h   |   45 +-
 .../staging/lustre/include/linux/lnet/lib-types.h  |   58 +-
 drivers/staging/lustre/include/linux/lnet/nidstr.h |    9 +-
 .../staging/lustre/include/linux/lnet/socklnd.h    |    9 +-
 drivers/staging/lustre/include/linux/lnet/types.h  |   47 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.c    |  490 +++++++------
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd.h    |   30 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c |  607 ++++++++-------
 .../lustre/lnet/klnds/o2iblnd/o2iblnd_modparams.c  |    8 +-
 .../staging/lustre/lnet/klnds/socklnd/socklnd.c    |  594 ++++++++-------
 .../staging/lustre/lnet/klnds/socklnd/socklnd.h    |   25 +-
 .../staging/lustre/lnet/klnds/socklnd/socklnd_cb.c |  784 +++++++++++---------
 .../lustre/lnet/klnds/socklnd/socklnd_lib.c        |  195 +++---
 .../lustre/lnet/klnds/socklnd/socklnd_modparams.c  |    8 +-
 .../lustre/lnet/klnds/socklnd/socklnd_proto.c      |  165 +++--
 drivers/staging/lustre/lnet/lnet/acceptor.c        |   85 ++-
 drivers/staging/lustre/lnet/lnet/api-ni.c          |  276 ++++----
 drivers/staging/lustre/lnet/lnet/config.c          |  230 +++---
 drivers/staging/lustre/lnet/lnet/lib-eq.c          |   74 +-
 drivers/staging/lustre/lnet/lnet/lib-md.c          |   90 ++-
 drivers/staging/lustre/lnet/lnet/lib-me.c          |   18 +-
 drivers/staging/lustre/lnet/lnet/lib-move.c        |  429 ++++++-----
 drivers/staging/lustre/lnet/lnet/lib-msg.c         |   90 ++-
 drivers/staging/lustre/lnet/lnet/lib-ptl.c         |  128 ++--
 drivers/staging/lustre/lnet/lnet/lib-socket.c      |   99 ++--
 drivers/staging/lustre/lnet/lnet/lo.c              |   14 +-
 drivers/staging/lustre/lnet/lnet/module.c          |   20 +-
 drivers/staging/lustre/lnet/lnet/nidstrings.c      |  116 ++--
 drivers/staging/lustre/lnet/lnet/peer.c            |   44 +-
 drivers/staging/lustre/lnet/lnet/router.c          |  248 ++++---
 drivers/staging/lustre/lnet/lnet/router_proc.c     |  155 ++--
 drivers/staging/lustre/lnet/selftest/brw_test.c    |  105 ++--
 drivers/staging/lustre/lnet/selftest/conctl.c      |  254 +++----
 drivers/staging/lustre/lnet/selftest/conrpc.c      |  191 +++---
 drivers/staging/lustre/lnet/selftest/console.c     |  291 ++++----
 drivers/staging/lustre/lnet/selftest/console.h     |    2 +-
 drivers/staging/lustre/lnet/selftest/framework.c   |  277 ++++----
 drivers/staging/lustre/lnet/selftest/module.c      |   14 +-
 drivers/staging/lustre/lnet/selftest/ping_test.c   |   30 +-
 drivers/staging/lustre/lnet/selftest/rpc.c         |  344 +++++----
 drivers/staging/lustre/lnet/selftest/rpc.h         |    6 +-
 drivers/staging/lustre/lnet/selftest/selftest.h    |   47 +-
 drivers/staging/lustre/lnet/selftest/timer.c       |    6 +-
 44 files changed, 3600 insertions(+), 3179 deletions(-)

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

end of thread, other threads:[~2016-02-12 23:21 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-12 17:05 [PATCH 00/11] Massive style cleanup for LNet layer James Simmons
2016-02-12 17:05 ` [PATCH 01/11] staging: lustre: drop *_t from end of struct lnet_text_buf James Simmons
2016-02-12 17:06 ` [PATCH 02/11] staging: lustre: format properly all comment blocks for LNet core James Simmons
2016-02-12 17:06 ` [PATCH 03/11] staging: lustre: align all code properly " James Simmons
2016-02-12 17:06 ` [PATCH 04/11] staging: lustre: remove unnecessary parentheses around LNet function pointer James Simmons
2016-02-12 17:06 ` [PATCH 05/11] staging: lustre: remove unnecessary blank lines reported by checkpatch.pl James Simmons
2016-02-12 17:06 ` [PATCH 06/11] staging: lustre: add missing spaces for LNet layer " James Simmons
2016-02-12 17:35   ` Joe Perches
2016-02-12 23:20     ` [lustre-devel] " Simmons, James A.
2016-02-12 17:06 ` [PATCH 07/11] staging: lustre: don't set more than one variable per line in LNet layer James Simmons
2016-02-12 17:06 ` [PATCH 08/11] staging: lustre: remove space in LNet function declarations James Simmons
2016-02-12 17:06 ` [PATCH 09/11] staging: lustre: balance braces properly in LNet layer James Simmons
2016-02-12 17:06 ` [PATCH 10/11] staging: lustre: fix all NULL comparisons " James Simmons
2016-02-12 17:06 ` [PATCH 11/11] staging: lustre: fix all conditional comparison to zero " James Simmons

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).