Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751708AbcLEUuy (ORCPT ); Mon, 5 Dec 2016 15:50:54 -0500 Received: from userp1040.oracle.com ([156.151.31.81]:17300 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750825AbcLEUuw (ORCPT ); Mon, 5 Dec 2016 15:50:52 -0500 Date: Mon, 5 Dec 2016 23:50:05 +0300 From: Dan Carpenter To: James Simmons Cc: Greg Kroah-Hartman , devel@driverdev.osuosl.org, Andreas Dilger , Oleg Drokin , Ben Evans , Linux Kernel Mailing List , Lustre Development List Subject: Re: [PATCH 3/6] staging: lustre: obdclass: Create a header for obdo related functions Message-ID: <20161205205005.GA31243@mwanda> References: <1480707650-24089-1-git-send-email-jsimmons@infradead.org> <1480707650-24089-4-git-send-email-jsimmons@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1480707650-24089-4-git-send-email-jsimmons@infradead.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Source-IP: userv0021.oracle.com [156.151.31.71] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 242 Lines: 11 On Fri, Dec 02, 2016 at 02:40:47PM -0500, James Simmons wrote: > - __u32 local_flags = 0; > + u32 local_flags = 0; > - if (local_flags != 0) { > + if (local_flags) { Please avoid these unrelated white space changes. regards, dan carpenter