aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGulsah Kose <gulsah.1004@gmail.com>2014-09-20 14:53:31 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-19 20:37:16 -0400
commita446b47d5d815865c2715da8fab1a7c06f1338ca (patch)
tree70a94ce94721a639fc1f1502ea24b1186ddc36ac
parent3e9cc5b0450a40be3442a82a5a5293f85ca06c7d (diff)
staging: lustre: lnet: lnet: Fix quoted string split warning.
This patch fixes "quoted string split across lines" checkpatch.pl warning in lib-eq.c Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/lustre/lnet/lnet/lib-eq.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/staging/lustre/lnet/lnet/lib-eq.c b/drivers/staging/lustre/lnet/lnet/lib-eq.c
index 6c0484285dfc..863cc3735edf 100644
--- a/drivers/staging/lustre/lnet/lnet/lib-eq.c
+++ b/drivers/staging/lustre/lnet/lnet/lib-eq.c
@@ -82,10 +82,7 @@ LNetEQAlloc(unsigned int count, lnet_eq_handler_t callback,
82 count = cfs_power2_roundup(count); 82 count = cfs_power2_roundup(count);
83 83
84 if (callback != LNET_EQ_HANDLER_NONE && count != 0) { 84 if (callback != LNET_EQ_HANDLER_NONE && count != 0) {
85 CWARN("EQ callback is guaranteed to get every event, " 85 CWARN("EQ callback is guaranteed to get every event, do you still want to set eqcount %d for polling event which will have locking overhead? Please contact with developer to confirm\n", count);
86 "do you still want to set eqcount %d for polling "
87 "event which will have locking overhead? "
88 "Please contact with developer to confirm\n", count);
89 } 86 }
90 87
91 /* count can be 0 if only need callback, we can eliminate 88 /* count can be 0 if only need callback, we can eliminate