From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755034AbcLZPoZ (ORCPT ); Mon, 26 Dec 2016 10:44:25 -0500 Received: from mail-qt0-f195.google.com ([209.85.216.195]:36366 "EHLO mail-qt0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754016AbcLZPoV (ORCPT ); Mon, 26 Dec 2016 10:44:21 -0500 From: "Guillermo O. Freschi" To: Oleg Drokin , lustre-devel@lists.lustre.org, linux-kernel@vger.kernel.org Cc: "Guillermo O. Freschi" Subject: [PATCH 2/2] Style fixes Date: Mon, 26 Dec 2016 12:43:39 -0300 Message-Id: <20161226154339.8916-2-kedrot@gmail.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20161226154339.8916-1-kedrot@gmail.com> References: <20161226154339.8916-1-kedrot@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Missing braces on `if` statement; misaligned parameter. Signed-off-by: Guillermo O. Freschi --- drivers/staging/lustre/lustre/ldlm/ldlm_lock.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/drivers/staging/lustre/lustre/ldlm/ldlm_lock.c b/drivers/staging/lustre/lustre/ldlm/ldlm_lock.c index f4cbc89b4f24..a23e7ada3891 100644 --- a/drivers/staging/lustre/lustre/ldlm/ldlm_lock.c +++ b/drivers/staging/lustre/lustre/ldlm/ldlm_lock.c @@ -1024,11 +1024,11 @@ void ldlm_grant_lock(struct ldlm_lock *lock, struct list_head *work_list) if (work_list && lock->l_completion_ast) ldlm_add_ast_work_item(lock, NULL, work_list); - if (res->lr_type == LDLM_PLAIN || res->lr_type == LDLM_IBITS) + if (res->lr_type == LDLM_PLAIN || res->lr_type == LDLM_IBITS) { ldlm_grant_lock_with_skiplist(lock); - else if (res->lr_type == LDLM_EXTENT) + } else if (res->lr_type == LDLM_EXTENT) { ldlm_extent_add_lock(res, lock); - else if (res->lr_type == LDLM_FLOCK) { + } else if (res->lr_type == LDLM_FLOCK) { /* * We should not add locks to granted list in the following cases: * - this is an UNLOCK but not a real lock; @@ -1040,8 +1040,9 @@ void ldlm_grant_lock(struct ldlm_lock *lock, struct list_head *work_list) ldlm_is_test_lock(lock) || ldlm_is_flock_deadlock(lock)) return; ldlm_resource_add_lock(res, &res->lr_granted, lock); - } else + } else { LBUG(); + } ldlm_pool_add(&ldlm_res_to_ns(res)->ns_pool, lock); } @@ -1481,7 +1482,8 @@ int ldlm_fill_lvb(struct ldlm_lock *lock, struct req_capsule *pill, lustre_swab_ost_lvb_v1); else lvb = req_capsule_server_sized_swab_get(pill, - &RMF_DLM_LVB, size, + &RMF_DLM_LVB, + size, lustre_swab_ost_lvb_v1); if (unlikely(!lvb)) { LDLM_ERROR(lock, "no LVB"); -- 2.11.0