All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] A few more Lustre styel cleanups
@ 2016-04-01 19:18 ` green at linuxhacker.ru
  0 siblings, 0 replies; 10+ messages in thread
From: green @ 2016-04-01 19:18 UTC (permalink / raw)
  To: Greg Kroah-Hartman, devel, Andreas Dilger
  Cc: Linux Kernel Mailing List, Lustre Development List, Oleg Drokin

From: Oleg Drokin <green@linuxhacker.ru>

More of the checkpatch warning fixes.

Oleg Drokin (3):
  staging/lustre: Fix braces {} style
  staging/lustre: Fix blank line after/before {/} style
  staging/lustre: Get rid of ldlm_policy_res_t typedef

 drivers/staging/lustre/lustre/fld/fld_cache.c      |  3 +-
 drivers/staging/lustre/lustre/fld/fld_request.c    |  1 -
 drivers/staging/lustre/lustre/include/lu_object.h  |  1 -
 .../lustre/lustre/include/lustre/lustre_idl.h      |  3 +-
 drivers/staging/lustre/lustre/include/obd_class.h  |  3 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_internal.h |  2 -
 drivers/staging/lustre/lustre/ldlm/ldlm_lib.c      |  1 -
 drivers/staging/lustre/lustre/ldlm/ldlm_lock.c     |  1 -
 drivers/staging/lustre/lustre/ldlm/ldlm_request.c  | 50 +++++++++++-----------
 drivers/staging/lustre/lustre/llite/dir.c          | 22 +++++-----
 drivers/staging/lustre/lustre/llite/llite_close.c  |  3 +-
 drivers/staging/lustre/lustre/llite/llite_lib.c    |  9 ++--
 drivers/staging/lustre/lustre/llite/lloop.c        |  3 +-
 drivers/staging/lustre/lustre/llite/lproc_llite.c  |  1 -
 drivers/staging/lustre/lustre/llite/namei.c        |  6 ++-
 drivers/staging/lustre/lustre/llite/rw.c           |  6 ++-
 drivers/staging/lustre/lustre/llite/rw26.c         |  3 +-
 drivers/staging/lustre/lustre/llite/vvp_dev.c      | 12 ++++--
 drivers/staging/lustre/lustre/llite/vvp_io.c       |  3 +-
 drivers/staging/lustre/lustre/llite/xattr.c        |  4 +-
 drivers/staging/lustre/lustre/llite/xattr_cache.c  |  1 -
 drivers/staging/lustre/lustre/lmv/lmv_obd.c        |  3 +-
 drivers/staging/lustre/lustre/lov/lov_dev.c        | 10 +++--
 drivers/staging/lustre/lustre/lov/lov_io.c         | 10 +++--
 drivers/staging/lustre/lustre/lov/lov_obd.c        |  1 -
 drivers/staging/lustre/lustre/lov/lov_object.c     |  6 ++-
 drivers/staging/lustre/lustre/lov/lov_pack.c       |  5 +--
 drivers/staging/lustre/lustre/lov/lov_request.c    |  1 -
 drivers/staging/lustre/lustre/lov/lovsub_dev.c     |  9 ++--
 drivers/staging/lustre/lustre/lov/lovsub_lock.c    |  3 +-
 drivers/staging/lustre/lustre/lov/lovsub_object.c  |  7 +--
 drivers/staging/lustre/lustre/mdc/mdc_lib.c        |  1 -
 drivers/staging/lustre/lustre/mdc/mdc_locks.c      |  1 -
 drivers/staging/lustre/lustre/mgc/mgc_request.c    |  1 -
 drivers/staging/lustre/lustre/obdclass/cl_io.c     | 13 +++---
 drivers/staging/lustre/lustre/obdclass/cl_object.c |  9 ++--
 drivers/staging/lustre/lustre/obdclass/class_obd.c |  1 -
 drivers/staging/lustre/lustre/obdclass/genops.c    |  1 -
 drivers/staging/lustre/lustre/obdclass/llog.c      |  1 -
 .../lustre/lustre/obdclass/lprocfs_status.c        |  3 +-
 drivers/staging/lustre/lustre/obdclass/lu_object.c |  5 +--
 .../staging/lustre/lustre/obdclass/lustre_peer.c   |  3 +-
 .../staging/lustre/lustre/obdclass/obd_config.c    |  1 -
 .../staging/lustre/lustre/obdecho/echo_client.c    |  2 -
 drivers/staging/lustre/lustre/osc/osc_cache.c      |  1 -
 drivers/staging/lustre/lustre/osc/osc_io.c         |  4 +-
 drivers/staging/lustre/lustre/osc/osc_lock.c       |  3 +-
 drivers/staging/lustre/lustre/osc/osc_object.c     |  3 +-
 drivers/staging/lustre/lustre/osc/osc_page.c       |  4 +-
 drivers/staging/lustre/lustre/osc/osc_request.c    |  4 +-
 drivers/staging/lustre/lustre/ptlrpc/client.c      |  5 +--
 drivers/staging/lustre/lustre/ptlrpc/events.c      |  1 -
 drivers/staging/lustre/lustre/ptlrpc/import.c      |  3 --
 .../staging/lustre/lustre/ptlrpc/lproc_ptlrpc.c    | 10 ++---
 drivers/staging/lustre/lustre/ptlrpc/nrs.c         |  1 -
 .../staging/lustre/lustre/ptlrpc/pack_generic.c    |  3 --
 56 files changed, 141 insertions(+), 136 deletions(-)

-- 
2.1.0

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

end of thread, other threads:[~2016-04-12  4:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-01 19:18 [PATCH 0/3] A few more Lustre styel cleanups green
2016-04-01 19:18 ` [lustre-devel] " green at linuxhacker.ru
2016-04-01 19:18 ` [PATCH 1/3] staging/lustre: Fix braces {} style green
2016-04-01 19:18   ` [lustre-devel] " green at linuxhacker.ru
2016-04-01 19:18 ` [PATCH 2/3] staging/lustre: Fix blank line after/before {/} style green
2016-04-01 19:18   ` [lustre-devel] " green at linuxhacker.ru
2016-04-12  3:46   ` Greg Kroah-Hartman
2016-04-12  3:46     ` [lustre-devel] " Greg Kroah-Hartman
2016-04-01 19:18 ` [PATCH 3/3] staging/lustre: Get rid of ldlm_policy_res_t typedef green
2016-04-01 19:18   ` [lustre-devel] " green at linuxhacker.ru

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.