All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/10] staging: lustre: fix code styling issues and remove macros without users
@ 2017-10-12  4:31 Aastha Gupta
  2017-10-12  4:31 ` [PATCH v2 01/10] staging: lustre: fix incorrect multi-line comment style Aastha Gupta
                   ` (10 more replies)
  0 siblings, 11 replies; 23+ messages in thread
From: Aastha Gupta @ 2017-10-12  4:31 UTC (permalink / raw)
  To: outreachy-kernel, Oleg Drokin, Andreas Dilger, James Simmons,
	Greg Kroah-Hartman
  Cc: Aastha Gupta

These patches fix:
- multi line comment styling
- line over 80 characters
- macro definitions warnings by checkpatch.pl
- drops macros without any users
- Comparisons should place the constant on the right side

This patch series includes all the patches I sent for this driver to
show the correct order.

Changes in v2:
	- fixed error message coding styles
	- fixed multi line commit messages as suggested by Andreas Dilger

Aastha Gupta (10):
  staging: lustre: fix incorrect multi-line comment style
  staging: lustre: fix comparisons should place the constant on the
    right side
  staging: lustre: fix macro definitions warnings
  staging: lustre: drop macro that has no uses
  staging: lustre: fid: fix line over 80 characters
  staging: lustre: fld: fix line over 80 characters
  staging: lustre: ldlm: fix lines over 80 characters in ldlm files
  staging: lustre: llite: fix lines over 80 characters in llite files
  staging: lustre: llite: fix coding style for error messages
  staging: lustre: lllite: fix multi line comments style

 drivers/staging/lustre/lustre/fid/fid_request.c    |  3 +-
 drivers/staging/lustre/lustre/fld/fld_request.c    |  3 +-
 drivers/staging/lustre/lustre/include/lu_object.h  | 18 ++++----
 .../lustre/lustre/include/lustre_dlm_flags.h       |  6 ++-
 .../staging/lustre/lustre/include/lustre_errno.h   | 51 ++++++++--------------
 drivers/staging/lustre/lustre/ldlm/ldlm_extent.c   |  3 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_flock.c    |  6 ++-
 drivers/staging/lustre/lustre/ldlm/ldlm_internal.h |  4 +-
 drivers/staging/lustre/lustre/ldlm/ldlm_lock.c     | 33 +++++++++-----
 drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c    |  6 ++-
 drivers/staging/lustre/lustre/ldlm/ldlm_pool.c     |  6 ++-
 drivers/staging/lustre/lustre/ldlm/ldlm_request.c  | 41 ++++++++++-------
 drivers/staging/lustre/lustre/ldlm/ldlm_resource.c |  3 +-
 drivers/staging/lustre/lustre/llite/dcache.c       |  9 ++--
 drivers/staging/lustre/lustre/llite/dir.c          | 20 +++++----
 drivers/staging/lustre/lustre/llite/file.c         | 13 +++---
 .../staging/lustre/lustre/llite/llite_internal.h   | 18 +++++---
 drivers/staging/lustre/lustre/llite/llite_lib.c    | 29 +++++++-----
 drivers/staging/lustre/lustre/llite/llite_mmap.c   |  3 +-
 drivers/staging/lustre/lustre/llite/llite_nfs.c    |  3 +-
 drivers/staging/lustre/lustre/llite/namei.c        | 15 ++++---
 drivers/staging/lustre/lustre/llite/rw.c           | 17 +++++---
 drivers/staging/lustre/lustre/llite/statahead.c    |  3 +-
 drivers/staging/lustre/lustre/llite/super25.c      |  3 +-
 drivers/staging/lustre/lustre/llite/xattr_cache.c  |  3 +-
 25 files changed, 187 insertions(+), 132 deletions(-)

-- 
2.7.4



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

end of thread, other threads:[~2017-10-18 12:55 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-12  4:31 [PATCH v2 00/10] staging: lustre: fix code styling issues and remove macros without users Aastha Gupta
2017-10-12  4:31 ` [PATCH v2 01/10] staging: lustre: fix incorrect multi-line comment style Aastha Gupta
2017-10-17 22:41   ` Dilger, Andreas
2017-10-12  4:31 ` [PATCH v2 02/10] staging: lustre: fix comparisons should place the constant on the right side Aastha Gupta
2017-10-17 22:41   ` Dilger, Andreas
2017-10-12  4:31 ` [PATCH v2 03/10] staging: lustre: fix macro definitions warnings Aastha Gupta
2017-10-17 22:42   ` Dilger, Andreas
2017-10-12  4:31 ` [PATCH v2 04/10] staging: lustre: drop macro that has no uses Aastha Gupta
2017-10-17 22:42   ` Dilger, Andreas
2017-10-12  4:31 ` [PATCH v2 05/10] staging: lustre: fid: fix line over 80 characters Aastha Gupta
2017-10-17 22:43   ` Dilger, Andreas
2017-10-12  4:31 ` [PATCH v2 06/10] staging: lustre: fld: " Aastha Gupta
2017-10-17 22:43   ` Dilger, Andreas
2017-10-12  4:31 ` [PATCH v2 07/10] staging: lustre: ldlm: fix lines over 80 characters in ldlm files Aastha Gupta
2017-10-17 22:52   ` Dilger, Andreas
2017-10-12  4:31 ` [PATCH v2 08/10] staging: lustre: llite: fix lines over 80 characters in llite files Aastha Gupta
2017-10-17 22:54   ` Dilger, Andreas
2017-10-12  4:31 ` [PATCH v2 09/10] staging: lustre: llite: fix coding style for error messages Aastha Gupta
2017-10-17 22:54   ` Dilger, Andreas
2017-10-12  4:31 ` [PATCH v2 10/10] staging: lustre: lllite: fix multi line comments style Aastha Gupta
2017-10-17 22:55   ` Dilger, Andreas
2017-10-18 12:26 ` [PATCH v2 00/10] staging: lustre: fix code styling issues and remove macros without users Greg Kroah-Hartman
2017-10-18 12:55   ` Aastha Gupta

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.