diff options
author | Gary Rookard <garyrookard@gmail.com> | 2014-03-10 21:21:22 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-03-17 14:24:35 -0700 |
commit | 5cbcd111f04b10aae18649d79333c38bef3a3ddf (patch) | |
tree | b9c479fac37d1c6ffa5a3af134df5cfc0d4a9160 | |
parent | 5ddd113297288d521faeb551ea575513dfb37828 (diff) | |
download | linux-5cbcd111f04b10aae18649d79333c38bef3a3ddf.tar.gz |
Staging: lustre: fid: fix split strings.
unsplit strings from two lines to one.
Signed-off-by: Gary Alan Rookard <garyrookard@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/lustre/lustre/fid/fid_request.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/staging/lustre/lustre/fid/fid_request.c b/drivers/staging/lustre/lustre/fid/fid_request.c index 79fc2fe131a2..69e6a325a9ea 100644 --- a/drivers/staging/lustre/lustre/fid/fid_request.c +++ b/drivers/staging/lustre/lustre/fid/fid_request.c @@ -196,8 +196,8 @@ static int seq_client_alloc_seq(const struct lu_env *env, if (range_is_exhausted(&seq->lcs_space)) { rc = seq_client_alloc_meta(env, seq); if (rc) { - CERROR("%s: Can't allocate new meta-sequence," - "rc %d\n", seq->lcs_name, rc); + CERROR("%s: Can't allocate new meta-sequence, rc %d\n", + seq->lcs_name, rc); return rc; } else { CDEBUG(D_INFO, "%s: New range - "DRANGE"\n", @@ -266,15 +266,15 @@ int seq_client_get_seq(const struct lu_env *env, rc = seq_client_alloc_seq(env, seq, seqnr); if (rc) { - CERROR("%s: Can't allocate new sequence, " - "rc %d\n", seq->lcs_name, rc); + CERROR("%s: Can't allocate new sequence, rc %d\n", + seq->lcs_name, rc); seq_fid_alloc_fini(seq); mutex_unlock(&seq->lcs_mutex); return rc; } - CDEBUG(D_INFO, "%s: allocate sequence " - "[0x%16.16"LPF64"x]\n", seq->lcs_name, *seqnr); + CDEBUG(D_INFO, "%s: allocate sequence [0x%16.16"LPF64"x]\n", + seq->lcs_name, *seqnr); /* Since the caller require the whole seq, * so marked this seq to be used */ @@ -329,15 +329,15 @@ int seq_client_alloc_fid(const struct lu_env *env, rc = seq_client_alloc_seq(env, seq, &seqnr); if (rc) { - CERROR("%s: Can't allocate new sequence, " - "rc %d\n", seq->lcs_name, rc); + CERROR("%s: Can't allocate new sequence, rc %d\n", + seq->lcs_name, rc); seq_fid_alloc_fini(seq); mutex_unlock(&seq->lcs_mutex); return rc; } - CDEBUG(D_INFO, "%s: Switch to sequence " - "[0x%16.16"LPF64"x]\n", seq->lcs_name, seqnr); + CDEBUG(D_INFO, "%s: Switch to sequence [0x%16.16"LPF64"x]\n", + seq->lcs_name, seqnr); seq->lcs_fid.f_oid = LUSTRE_FID_INIT_OID; seq->lcs_fid.f_seq = seqnr; @@ -428,8 +428,8 @@ static int seq_client_proc_init(struct lu_client_seq *seq) rc = lprocfs_add_vars(seq->lcs_proc_dir, seq_client_proc_list, seq); if (rc) { - CERROR("%s: Can't init sequence manager " - "proc, rc %d\n", seq->lcs_name, rc); + CERROR("%s: Can't init sequence manager proc, rc %d\n", + seq->lcs_name, rc); GOTO(out_cleanup, rc); } |