From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753486AbbFQUFt (ORCPT ); Wed, 17 Jun 2015 16:05:49 -0400 Received: from mga01.intel.com ([192.55.52.88]:47866 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752062AbbFQUFi (ORCPT ); Wed, 17 Jun 2015 16:05:38 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,634,1427785200"; d="scan'208";a="509958653" Date: Thu, 18 Jun 2015 04:04:27 +0800 From: kbuild test robot To: Al Viro Cc: kbuild-all@01.org, linux-fsdevel@vger.kernel.org, Evgeniy Dushistov , linux-kernel@vger.kernel.org Subject: [PATCH vfs] ufs:: ufs_truncate_blocks() can be static Message-ID: <20150617200427.GA998@roam> References: <201506180458.e6paay0G%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201506180458.e6paay0G%fengguang.wu@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Fengguang Wu --- inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ufs/inode.c b/fs/ufs/inode.c index 443f85e..0e23a67 100644 --- a/fs/ufs/inode.c +++ b/fs/ufs/inode.c @@ -1379,7 +1379,7 @@ out: return err; } -void ufs_truncate_blocks(struct inode *inode) +static void ufs_truncate_blocks(struct inode *inode) { if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)))