From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754185Ab3LNVmN (ORCPT ); Sat, 14 Dec 2013 16:42:13 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:59147 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753929Ab3LNVmM (ORCPT ); Sat, 14 Dec 2013 16:42:12 -0500 Date: Sat, 14 Dec 2013 13:44:09 -0800 From: Greg KH To: Colin Cross Cc: John Stultz , LKML , Android Kernel Team , Sumit Semwal , Jesse Barker , Rebecca Schultz Zavin Subject: Re: [PATCH 001/115] gpu: ion: Add ION Memory Manager Message-ID: <20131214214409.GA26816@kroah.com> References: <1386973529-4884-1-git-send-email-john.stultz@linaro.org> <1386973529-4884-2-git-send-email-john.stultz@linaro.org> <20131214165257.GA25393@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.22 (2013-10-16) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Dec 14, 2013 at 01:10:38PM -0800, Colin Cross wrote: > On Sat, Dec 14, 2013 at 8:52 AM, Greg KH wrote: > > On Fri, Dec 13, 2013 at 02:23:35PM -0800, John Stultz wrote: > >> + idev->debug_root = debugfs_create_dir("ion", NULL); > >> + if (IS_ERR_OR_NULL(idev->debug_root)) > >> + pr_err("ion: failed to create debug files.\n"); > > > > There's no need to check for this at all, you just printed out an error > > message if CONFIG_DEBUGFS is not enabled, which isn't all that nice. > > > > Something to clean up later, no big deal now. > > Patch 75/115 (ion: remove IS_ERR_OR_NULL) replaces this chunk with: > idev->debug_root = debugfs_create_dir("ion", NULL); > if (!idev->debug_root) > pr_err("ion: failed to create debug files.\n"); > which won't print an error if debugfs is disabled. If debugfs is disabled, debugfs_create_dir() returns ERR_PTR(-ENODEV). So are you sure you tested this? :)