From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932211AbbD0HdU (ORCPT ); Mon, 27 Apr 2015 03:33:20 -0400 Received: from mail-ig0-f179.google.com ([209.85.213.179]:32774 "EHLO mail-ig0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752747AbbD0HdS (ORCPT ); Mon, 27 Apr 2015 03:33:18 -0400 From: Derek Robson To: linux-mm@kvack.org, linux-kernel@vger.kernel.org Cc: Derek Robson Subject: [PATCH] mm: fixed whitespace style errors in failslab.c Date: Mon, 27 Apr 2015 19:33:13 +1200 Message-Id: <1430119993-7358-1-git-send-email-robsonde@gmail.com> X-Mailer: git-send-email 2.3.6 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch fixes a white space issue found with checkpatch.pl in failslab.c ERROR: code indent should use tabs where possible Added a tab to replace the spaces to meet the preferred style. Signed-off-by: Derek Robson --- mm/failslab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/failslab.c b/mm/failslab.c index fefaaba..2064225 100644 --- a/mm/failslab.c +++ b/mm/failslab.c @@ -16,7 +16,7 @@ bool should_failslab(size_t size, gfp_t gfpflags, unsigned long cache_flags) if (gfpflags & __GFP_NOFAIL) return false; - if (failslab.ignore_gfp_wait && (gfpflags & __GFP_WAIT)) + if (failslab.ignore_gfp_wait && (gfpflags & __GFP_WAIT)) return false; if (failslab.cache_filter && !(cache_flags & SLAB_FAILSLAB)) -- 2.3.6