summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasanna Karthik <mkarthi3@visteon.com>2015-06-16 13:42:02 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-06-17 21:30:40 -0700
commitda2a7272e6e6071dbbe81d3ca65d9adcde5a8e23 (patch)
tree8cc8dbed145c726e1221f349a9a5639d97bc8b61
parent79b45a0ff001946378f9c36469487326a0e9d2b2 (diff)
downloadop-kernel-dev-da2a7272e6e6071dbbe81d3ca65d9adcde5a8e23.zip
op-kernel-dev-da2a7272e6e6071dbbe81d3ca65d9adcde5a8e23.tar.gz
staging:lustre:mdc: Fix return statement reported by coccinelle
Modified return statement and removed local declaration no longer needed. No Compiler warnings. Signed-off-by: Prasanna Karthik <mkarthi3@visteon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/lustre/lustre/mdc/mdc_request.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/staging/lustre/lustre/mdc/mdc_request.c b/drivers/staging/lustre/lustre/mdc/mdc_request.c
index c23511f..7f208a6 100644
--- a/drivers/staging/lustre/lustre/mdc/mdc_request.c
+++ b/drivers/staging/lustre/lustre/mdc/mdc_request.c
@@ -2090,7 +2090,6 @@ static int mdc_hsm_copytool_send(int len, void *val)
{
struct kuc_hdr *lh = (struct kuc_hdr *)val;
struct hsm_action_list *hal = (struct hsm_action_list *)(lh + 1);
- int rc;
if (len < sizeof(*lh) + sizeof(*hal)) {
CERROR("Short HSM message %d < %d\n", len,
@@ -2111,9 +2110,7 @@ static int mdc_hsm_copytool_send(int len, void *val)
lh->kuc_msglen, hal->hal_count, hal->hal_fsname);
/* Broadcast to HSM listeners */
- rc = libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
-
- return rc;
+ return libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
}
/**
OpenPOWER on IntegriCloud