From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755473AbbINOMb (ORCPT ); Mon, 14 Sep 2015 10:12:31 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:53365 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753929AbbINOM2 (ORCPT ); Mon, 14 Sep 2015 10:12:28 -0400 Date: Mon, 14 Sep 2015 07:12:27 -0700 From: Greg KH To: Sakshi Vaid Cc: oleg.drokin@intel.com, devel@driverdev.osuosl.org, andreas.dilger@intel.com, linux-kernel@vger.kernel.org, HPDD-discuss@ml01.01.org, jinshan.xiong@intel.com Subject: Re: [PATCH] Staging: lustre: lustre: lov: lov_dev.c: Added missing blank line Message-ID: <20150914141227.GA943@kroah.com> References: <1442221884-5346-1-git-send-email-sakshivaid95@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1442221884-5346-1-git-send-email-sakshivaid95@gmail.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 14, 2015 at 02:41:24PM +0530, Sakshi Vaid wrote: > Added a missing blank line after declarations. > > 158: WARNING: Missing a blank line after declarations > 183: WARNING: Missing a blank line after declarations > > Signed-off-by: Sakshi Vaid > --- > drivers/staging/lustre/lustre/lclient/lcommon_cl.c | 4 ++-- > drivers/staging/lustre/lustre/lov/lov_dev.c | 2 ++ > 2 files changed, 4 insertions(+), 2 deletions(-) > > diff --git a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c b/drivers/staging/lustre/lustre/lclient/lcommon_cl.c > index d31bf73..68cf1b7 100644 > --- a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c > +++ b/drivers/staging/lustre/lustre/lclient/lcommon_cl.c > @@ -828,8 +828,8 @@ int ccc_prep_size(const struct lu_env *env, struct cl_object *obj, > * --bug 17336 */ > loff_t size = cl_isize_read(inode); > loff_t cur_index = start >> PAGE_CACHE_SHIFT; > - loff_t size_index = ((size - 1) > - >> PAGE_CACHE_SHIFT); > + loff_t size_index = > + ((size - 1) >> PAGE_CACHE_SHIFT); This change has nothing to do with what you said you were doing up at the top of the changelog :(