All of lore.kernel.org
 help / color / mirror / Atom feed
From: green at linuxhacker.ru <green@linuxhacker.ru>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	devel@driverdev.osuosl.org,
	Andreas Dilger <andreas.dilger@intel.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Lustre Development List <lustre-devel@lists.lustre.org>,
	Oleg Drokin <green@linuxhacker.ru>
Subject: [lustre-devel] [PATCH v2 62/84] staging/lustre/fld: Fix style vs open parenthesis alignment
Date: Wed, 24 Feb 2016 22:00:45 -0500	[thread overview]
Message-ID: <1456369267-904461-63-git-send-email-green@linuxhacker.ru> (raw)
In-Reply-To: <1456369267-904461-1-git-send-email-green@linuxhacker.ru>

From: Oleg Drokin <green@linuxhacker.ru>

This mostly fixes checkpatch complaints about
"Alignment should match open parenthesis"

Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
---
 drivers/staging/lustre/lustre/fld/fld_cache.c   | 14 +++++++-------
 drivers/staging/lustre/lustre/fld/fld_request.c | 17 +++++++----------
 drivers/staging/lustre/lustre/fld/lproc_fld.c   |  3 +--
 3 files changed, 15 insertions(+), 19 deletions(-)

diff --git a/drivers/staging/lustre/lustre/fld/fld_cache.c b/drivers/staging/lustre/lustre/fld/fld_cache.c
index 2b09b76..062f388 100644
--- a/drivers/staging/lustre/lustre/fld/fld_cache.c
+++ b/drivers/staging/lustre/lustre/fld/fld_cache.c
@@ -233,7 +233,7 @@ static int fld_cache_shrink(struct fld_cache *cache)
 	}
 
 	CDEBUG(D_INFO, "%s: FLD cache - Shrunk by %d entries\n",
-			cache->fci_name, num);
+	       cache->fci_name, num);
 
 	return 0;
 }
@@ -294,8 +294,8 @@ static void fld_cache_punch_hole(struct fld_cache *cache,
  * handle range overlap in fld cache.
  */
 static void fld_cache_overlap_handle(struct fld_cache *cache,
-				struct fld_cache_entry *f_curr,
-				struct fld_cache_entry *f_new)
+				     struct fld_cache_entry *f_curr,
+				     struct fld_cache_entry *f_new)
 {
 	const struct lu_seq_range *range = &f_new->fce_range;
 	const u64 new_start  = range->lsr_start;
@@ -402,8 +402,8 @@ static int fld_cache_insert_nolock(struct fld_cache *cache,
 	list_for_each_entry_safe(f_curr, n, head, fce_list) {
 		/* add list if next is end of list */
 		if (new_end < f_curr->fce_range.lsr_start ||
-		   (new_end == f_curr->fce_range.lsr_start &&
-		    new_flags != f_curr->fce_range.lsr_flags))
+		    (new_end == f_curr->fce_range.lsr_start &&
+		     new_flags != f_curr->fce_range.lsr_flags))
 			break;
 
 		prev = &f_curr->fce_list;
@@ -460,8 +460,8 @@ struct fld_cache_entry
 	head = &cache->fci_entries_head;
 	list_for_each_entry(flde, head, fce_list) {
 		if (range->lsr_start == flde->fce_range.lsr_start ||
-		   (range->lsr_end == flde->fce_range.lsr_end &&
-		    range->lsr_flags == flde->fce_range.lsr_flags)) {
+		    (range->lsr_end == flde->fce_range.lsr_end &&
+		     range->lsr_flags == flde->fce_range.lsr_flags)) {
 			got = flde;
 			break;
 		}
diff --git a/drivers/staging/lustre/lustre/fld/fld_request.c b/drivers/staging/lustre/lustre/fld/fld_request.c
index b50a57b..19b81c9 100644
--- a/drivers/staging/lustre/lustre/fld/fld_request.c
+++ b/drivers/staging/lustre/lustre/fld/fld_request.c
@@ -148,7 +148,7 @@ again:
 	}
 
 	CERROR("%s: Can't find target by hash %d (seq %#llx). Targets (%d):\n",
-		fld->lcf_name, hash, seq, fld->lcf_count);
+	       fld->lcf_name, hash, seq, fld->lcf_count);
 
 	list_for_each_entry(target, &fld->lcf_targets, ft_chain) {
 		const char *srv_name = target->ft_srv ?
@@ -217,11 +217,11 @@ int fld_client_add_target(struct lu_client_fld *fld,
 
 	if (fld->lcf_flags != LUSTRE_FLD_INIT) {
 		CERROR("%s: Attempt to add target %s (idx %llu) on fly - skip it\n",
-			fld->lcf_name, name, tar->ft_idx);
+		       fld->lcf_name, name, tar->ft_idx);
 		return 0;
 	}
 	CDEBUG(D_INFO, "%s: Adding target %s (idx %llu)\n",
-			fld->lcf_name, name, tar->ft_idx);
+	       fld->lcf_name, name, tar->ft_idx);
 
 	target = kzalloc(sizeof(*target), GFP_NOFS);
 	if (!target)
@@ -244,8 +244,7 @@ int fld_client_add_target(struct lu_client_fld *fld,
 	target->ft_srv = tar->ft_srv;
 	target->ft_idx = tar->ft_idx;
 
-	list_add_tail(&target->ft_chain,
-			  &fld->lcf_targets);
+	list_add_tail(&target->ft_chain, &fld->lcf_targets);
 
 	fld->lcf_count++;
 	spin_unlock(&fld->lcf_lock);
@@ -260,8 +259,7 @@ int fld_client_del_target(struct lu_client_fld *fld, __u64 idx)
 	struct lu_fld_target *target, *tmp;
 
 	spin_lock(&fld->lcf_lock);
-	list_for_each_entry_safe(target, tmp,
-				     &fld->lcf_targets, ft_chain) {
+	list_for_each_entry_safe(target, tmp, &fld->lcf_targets, ft_chain) {
 		if (target->ft_idx == idx) {
 			fld->lcf_count--;
 			list_del(&target->ft_chain);
@@ -376,8 +374,7 @@ void fld_client_fini(struct lu_client_fld *fld)
 	struct lu_fld_target *target, *tmp;
 
 	spin_lock(&fld->lcf_lock);
-	list_for_each_entry_safe(target, tmp,
-				     &fld->lcf_targets, ft_chain) {
+	list_for_each_entry_safe(target, tmp, &fld->lcf_targets, ft_chain) {
 		fld->lcf_count--;
 		list_del(&target->ft_chain);
 		if (target->ft_exp)
@@ -467,7 +464,7 @@ int fld_client_lookup(struct lu_client_fld *fld, u64 seq, u32 *mds,
 	LASSERT(target);
 
 	CDEBUG(D_INFO, "%s: Lookup fld entry (seq: %#llx) on target %s (idx %llu)\n",
-			fld->lcf_name, seq, fld_target_name(target), target->ft_idx);
+	       fld->lcf_name, seq, fld_target_name(target), target->ft_idx);
 
 	res.lsr_start = seq;
 	fld_range_set_type(&res, flags);
diff --git a/drivers/staging/lustre/lustre/fld/lproc_fld.c b/drivers/staging/lustre/lustre/fld/lproc_fld.c
index da31281..ca898be 100644
--- a/drivers/staging/lustre/lustre/fld/lproc_fld.c
+++ b/drivers/staging/lustre/lustre/fld/lproc_fld.c
@@ -61,8 +61,7 @@ fld_debugfs_targets_seq_show(struct seq_file *m, void *unused)
 	struct lu_fld_target *target;
 
 	spin_lock(&fld->lcf_lock);
-	list_for_each_entry(target,
-				&fld->lcf_targets, ft_chain)
+	list_for_each_entry(target, &fld->lcf_targets, ft_chain)
 		seq_printf(m, "%s\n", fld_target_name(target));
 	spin_unlock(&fld->lcf_lock);
 
-- 
2.1.0

WARNING: multiple messages have this Message-ID (diff)
From: green@linuxhacker.ru
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	devel@driverdev.osuosl.org,
	Andreas Dilger <andreas.dilger@intel.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Lustre Development List <lustre-devel@lists.lustre.org>,
	Oleg Drokin <green@linuxhacker.ru>
Subject: [PATCH v2 62/84] staging/lustre/fld: Fix style vs open parenthesis alignment
Date: Wed, 24 Feb 2016 22:00:45 -0500	[thread overview]
Message-ID: <1456369267-904461-63-git-send-email-green@linuxhacker.ru> (raw)
In-Reply-To: <1456369267-904461-1-git-send-email-green@linuxhacker.ru>

From: Oleg Drokin <green@linuxhacker.ru>

This mostly fixes checkpatch complaints about
"Alignment should match open parenthesis"

Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
---
 drivers/staging/lustre/lustre/fld/fld_cache.c   | 14 +++++++-------
 drivers/staging/lustre/lustre/fld/fld_request.c | 17 +++++++----------
 drivers/staging/lustre/lustre/fld/lproc_fld.c   |  3 +--
 3 files changed, 15 insertions(+), 19 deletions(-)

diff --git a/drivers/staging/lustre/lustre/fld/fld_cache.c b/drivers/staging/lustre/lustre/fld/fld_cache.c
index 2b09b76..062f388 100644
--- a/drivers/staging/lustre/lustre/fld/fld_cache.c
+++ b/drivers/staging/lustre/lustre/fld/fld_cache.c
@@ -233,7 +233,7 @@ static int fld_cache_shrink(struct fld_cache *cache)
 	}
 
 	CDEBUG(D_INFO, "%s: FLD cache - Shrunk by %d entries\n",
-			cache->fci_name, num);
+	       cache->fci_name, num);
 
 	return 0;
 }
@@ -294,8 +294,8 @@ static void fld_cache_punch_hole(struct fld_cache *cache,
  * handle range overlap in fld cache.
  */
 static void fld_cache_overlap_handle(struct fld_cache *cache,
-				struct fld_cache_entry *f_curr,
-				struct fld_cache_entry *f_new)
+				     struct fld_cache_entry *f_curr,
+				     struct fld_cache_entry *f_new)
 {
 	const struct lu_seq_range *range = &f_new->fce_range;
 	const u64 new_start  = range->lsr_start;
@@ -402,8 +402,8 @@ static int fld_cache_insert_nolock(struct fld_cache *cache,
 	list_for_each_entry_safe(f_curr, n, head, fce_list) {
 		/* add list if next is end of list */
 		if (new_end < f_curr->fce_range.lsr_start ||
-		   (new_end == f_curr->fce_range.lsr_start &&
-		    new_flags != f_curr->fce_range.lsr_flags))
+		    (new_end == f_curr->fce_range.lsr_start &&
+		     new_flags != f_curr->fce_range.lsr_flags))
 			break;
 
 		prev = &f_curr->fce_list;
@@ -460,8 +460,8 @@ struct fld_cache_entry
 	head = &cache->fci_entries_head;
 	list_for_each_entry(flde, head, fce_list) {
 		if (range->lsr_start == flde->fce_range.lsr_start ||
-		   (range->lsr_end == flde->fce_range.lsr_end &&
-		    range->lsr_flags == flde->fce_range.lsr_flags)) {
+		    (range->lsr_end == flde->fce_range.lsr_end &&
+		     range->lsr_flags == flde->fce_range.lsr_flags)) {
 			got = flde;
 			break;
 		}
diff --git a/drivers/staging/lustre/lustre/fld/fld_request.c b/drivers/staging/lustre/lustre/fld/fld_request.c
index b50a57b..19b81c9 100644
--- a/drivers/staging/lustre/lustre/fld/fld_request.c
+++ b/drivers/staging/lustre/lustre/fld/fld_request.c
@@ -148,7 +148,7 @@ again:
 	}
 
 	CERROR("%s: Can't find target by hash %d (seq %#llx). Targets (%d):\n",
-		fld->lcf_name, hash, seq, fld->lcf_count);
+	       fld->lcf_name, hash, seq, fld->lcf_count);
 
 	list_for_each_entry(target, &fld->lcf_targets, ft_chain) {
 		const char *srv_name = target->ft_srv ?
@@ -217,11 +217,11 @@ int fld_client_add_target(struct lu_client_fld *fld,
 
 	if (fld->lcf_flags != LUSTRE_FLD_INIT) {
 		CERROR("%s: Attempt to add target %s (idx %llu) on fly - skip it\n",
-			fld->lcf_name, name, tar->ft_idx);
+		       fld->lcf_name, name, tar->ft_idx);
 		return 0;
 	}
 	CDEBUG(D_INFO, "%s: Adding target %s (idx %llu)\n",
-			fld->lcf_name, name, tar->ft_idx);
+	       fld->lcf_name, name, tar->ft_idx);
 
 	target = kzalloc(sizeof(*target), GFP_NOFS);
 	if (!target)
@@ -244,8 +244,7 @@ int fld_client_add_target(struct lu_client_fld *fld,
 	target->ft_srv = tar->ft_srv;
 	target->ft_idx = tar->ft_idx;
 
-	list_add_tail(&target->ft_chain,
-			  &fld->lcf_targets);
+	list_add_tail(&target->ft_chain, &fld->lcf_targets);
 
 	fld->lcf_count++;
 	spin_unlock(&fld->lcf_lock);
@@ -260,8 +259,7 @@ int fld_client_del_target(struct lu_client_fld *fld, __u64 idx)
 	struct lu_fld_target *target, *tmp;
 
 	spin_lock(&fld->lcf_lock);
-	list_for_each_entry_safe(target, tmp,
-				     &fld->lcf_targets, ft_chain) {
+	list_for_each_entry_safe(target, tmp, &fld->lcf_targets, ft_chain) {
 		if (target->ft_idx == idx) {
 			fld->lcf_count--;
 			list_del(&target->ft_chain);
@@ -376,8 +374,7 @@ void fld_client_fini(struct lu_client_fld *fld)
 	struct lu_fld_target *target, *tmp;
 
 	spin_lock(&fld->lcf_lock);
-	list_for_each_entry_safe(target, tmp,
-				     &fld->lcf_targets, ft_chain) {
+	list_for_each_entry_safe(target, tmp, &fld->lcf_targets, ft_chain) {
 		fld->lcf_count--;
 		list_del(&target->ft_chain);
 		if (target->ft_exp)
@@ -467,7 +464,7 @@ int fld_client_lookup(struct lu_client_fld *fld, u64 seq, u32 *mds,
 	LASSERT(target);
 
 	CDEBUG(D_INFO, "%s: Lookup fld entry (seq: %#llx) on target %s (idx %llu)\n",
-			fld->lcf_name, seq, fld_target_name(target), target->ft_idx);
+	       fld->lcf_name, seq, fld_target_name(target), target->ft_idx);
 
 	res.lsr_start = seq;
 	fld_range_set_type(&res, flags);
diff --git a/drivers/staging/lustre/lustre/fld/lproc_fld.c b/drivers/staging/lustre/lustre/fld/lproc_fld.c
index da31281..ca898be 100644
--- a/drivers/staging/lustre/lustre/fld/lproc_fld.c
+++ b/drivers/staging/lustre/lustre/fld/lproc_fld.c
@@ -61,8 +61,7 @@ fld_debugfs_targets_seq_show(struct seq_file *m, void *unused)
 	struct lu_fld_target *target;
 
 	spin_lock(&fld->lcf_lock);
-	list_for_each_entry(target,
-				&fld->lcf_targets, ft_chain)
+	list_for_each_entry(target, &fld->lcf_targets, ft_chain)
 		seq_printf(m, "%s\n", fld_target_name(target));
 	spin_unlock(&fld->lcf_lock);
 
-- 
2.1.0

  parent reply	other threads:[~2016-02-25  3:00 UTC|newest]

Thread overview: 174+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-25  2:59 [lustre-devel] [PATCH v2 00/84] Lustre cleanups green at linuxhacker.ru
2016-02-25  2:59 ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 01/84] staging/lustre/ldlm: Remove unused lr_most_restr from struct ldlm_resource green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 02/84] staging/lustre/fld: Remove useless typedefs green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 03/84] staging/lustre: Get rid of client_obd_lock_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 04/84] staging/lustre: Get rid of loc_flags_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 05/84] staging/lustre: Get rid of cksum_type_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 06/84] staging/lustre: Get rid of ost_cmd_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 07/84] staging/lustre: Get rid of quota_cmd_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 08/84] staging/lustre: Get rid of mds_cmd_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 09/84] staging/lustre: Get rid of mds_reint_t, mdt_reint_t typedefs green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 10/84] staging/lustre: Get rid of ldlm_cmd_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 11/84] staging/lustre: Remove ldlm type/mode typedefs green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 12/84] staging/lustre: Get rid of mgs_cmd_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 13/84] staging/lustre: Get rid of obd_cmd_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 14/84] staging/lustre: Get rid of llog_op_type typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 15/84] staging/lustre: Get rid of sec_cmd_t typedef green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  2:59 ` [lustre-devel] [PATCH v2 16/84] staging/lustre: Get rid of object update code green at linuxhacker.ru
2016-02-25  2:59   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 17/84] staging/lustre: Get rid of lustre_fid typedef green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 18/84] staging/lustre: Get rid of lustre_quota_version typedef green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 19/84] staging/lustre: Get rid of ldlm_error_t typedef green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 20/84] staging/lustre: Remove ldlm_appetite_t typedef green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 21/84] staging/lustre: Get rid of ldlm_ns_type_t typedef green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 22/84] staging/lustre: Get rid of ldlm_cancel_flags_t typedef green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 23/84] staging/lustre/llite: Get rid of se_stat_t typedef green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 24/84] staging/lustre: Remove lustre_build_version.h green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 25/84] staging/lustre: Get rid of C99 comments in lustre_idl.h green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 26/84] staging/lustre: Remove server-side changelog defines green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 27/84] staging/lustre: Remove FSF mailing address from GPL notices green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 28/84] staging/lustre: Remove server-only values from enum lu_dirent_attrs green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 29/84] staging/lustre: Remove *_CONNECT_SUPPORTED defines green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 30/84] staging/lustre: Remove duplicated quota defines green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 31/84] staging/lustre: Remove unused struct quota_body green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 32/84] staging/lustre: Remove lquota_glb_rec, lquota_slv_rec and lquota_acct_rec green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 33/84] staging/lustre: S_DIRSYNC is always defined in kernel green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 34/84] staging/lustre: FMODE_READ and FMODE_WRITE are always defined in the kernel green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 35/84] staging/lustre: Remove index file transfer structures green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 36/84] staging/lustre: Remove server data from struct obd_export green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 37/84] staging/lustre: Remove last_rcvd-file related data green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 38/84] staging/lustre: Remove dead code in ldlm_lock_destroy_internal green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 39/84] staging/lustre: MAY_NOT_BLOCK is always defined, don't check for it green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 40/84] staging/lustre: Remove unused lli_open_count from struct ll_inode_info green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 41/84] staging/lustre: Reformat comments and structures in lustre_idl.h green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 42/84] staging/lustre/include: Adjust comment style green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 43/84] staging/lustre/fld: Adjust comments to better conform to coding style green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 44/84] staging/lustre/fid: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 45/84] staging/lustre/lclient: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 46/84] staging/lustre/ldlm: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 47/84] staging/lustre/llite: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 48/84] staging/lustre/lmv: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 49/84] staging/lustre/lov: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 50/84] staging/lustre/mdc: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 51/84] staging/lustre/mgc: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 52/84] staging/lustre/obdclass: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 53/84] staging/lustre/obdecho: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 54/84] staging/lustre/osc: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 55/84] staging/lustre/ptlrpc: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 56/84] staging/lustre: Fix indentation mistakes green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 57/84] staging/lustre: Remove stray space before newline in messages green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 58/84] staging/lustre: Remove commented out obd functions green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 59/84] staging/lustre: Remove unused members of struct ll_sb_info green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 60/84] staging/lustre/llite: Fix style vs open parenthesis alignment green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-26  6:10   ` [lustre-devel] " Greg Kroah-Hartman
2016-02-26  6:10     ` Greg Kroah-Hartman
2016-02-26  6:13     ` [lustre-devel] " Oleg Drokin
2016-02-26  6:13       ` Oleg Drokin
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 61/84] staging/lustre/include: Fix style of function declarations green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` green at linuxhacker.ru [this message]
2016-02-25  3:00   ` [PATCH v2 62/84] staging/lustre/fld: Fix style vs open parenthesis alignment green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 63/84] staging/lustre: Remove unused liblustre_check_services prototype green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 64/84] staging/lustre: Remove unused lustre_build_lock_params() green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 65/84] staging/lustre: Convert ptlrpc_at_check_timed to void green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 66/84] staging/lustre: Remove misleading liblustre comments green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 67/84] staging/lustre: Remove liblustre references from explanations green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 68/84] staging/lustre/lmv: Remove commented out MDS selection policies green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 69/84] staging/lustre: F_SETLKW64 F_SETLK64 F_GETLK64 are always defined green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 70/84] staging/lustre: MS_POSIXACL is always defined, don't check for it green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 71/84] staging/lustre: Remove RELEASEPAGE_ARG_TYPE compat macro green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 72/84] staging/lustre: NEED_QUOTA_DEFS is never defined, drop it green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 73/84] staging/lustre/ptlrpc: Fix style vs open parenthesis alignment green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 74/84] staging/lustre/osc: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 75/84] staging/lustre/obdclass: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:00 ` [lustre-devel] [PATCH v2 76/84] staging/lustre/lov: " green at linuxhacker.ru
2016-02-25  3:00   ` green
2016-02-25  3:01 ` [lustre-devel] [PATCH v2 77/84] staging/lustre/mdc: " green at linuxhacker.ru
2016-02-25  3:01   ` green
2016-02-25  3:01 ` [lustre-devel] [PATCH v2 78/84] staging/lustre/mgc: " green at linuxhacker.ru
2016-02-25  3:01   ` green
2016-02-25  3:01 ` [lustre-devel] [PATCH v2 79/84] staging/lustre/obdecho: " green at linuxhacker.ru
2016-02-25  3:01   ` green
2016-02-25  3:01 ` [lustre-devel] [PATCH v2 80/84] staging/lustre/lmv: " green at linuxhacker.ru
2016-02-25  3:01   ` green
2016-02-25  3:01 ` [lustre-devel] [PATCH v2 81/84] staging/lustre: Fix lines that start with spaces green at linuxhacker.ru
2016-02-25  3:01   ` green
2016-02-25  3:01 ` [lustre-devel] [PATCH v2 82/84] staging/lustre: Rework MAX_DIO_SIZE macro green at linuxhacker.ru
2016-02-25  3:01   ` green
2016-02-25  3:01 ` [lustre-devel] [PATCH v2 83/84] staging/lustre: Remove unneeded {} in lprocfs_stats_unlock() green at linuxhacker.ru
2016-02-25  3:01   ` green
2016-02-25  3:01 ` [lustre-devel] [PATCH v2 84/84] staging/lustre/ptlrpc: Fix ENABLE_PINGER ifdef green at linuxhacker.ru
2016-02-25  3:01   ` green

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=1456369267-904461-63-git-send-email-green@linuxhacker.ru \
    --to=green@linuxhacker.ru \
    --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 \
    /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 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.