From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dongsheng Yang Subject: Re: [PATCH 11/25] ubifs: export read_block() from file.c Date: Wed, 22 Jul 2015 08:41:12 +0800 Message-ID: <55AEE6A8.4050604@cn.fujitsu.com> References: <1437467876-22106-1-git-send-email-yangds.fnst@cn.fujitsu.com> <1437467876-22106-12-git-send-email-yangds.fnst@cn.fujitsu.com> <55AEAD39.1070301@nod.at> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-15"; format=flowed Content-Transfer-Encoding: 7bit Cc: , To: Richard Weinberger , , , Return-path: Received: from cn.fujitsu.com ([59.151.112.132]:53095 "EHLO heian.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S934138AbbGVAqk (ORCPT ); Tue, 21 Jul 2015 20:46:40 -0400 In-Reply-To: <55AEAD39.1070301@nod.at> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On 07/22/2015 04:36 AM, Richard Weinberger wrote: > Am 21.07.2015 um 10:37 schrieb Dongsheng Yang: >> We want to use read_block to read quota file bypass the page cache. >> So export it from file.c, then we can use it in somewhere else. >> >> Signed-off-by: Dongsheng Yang >> --- >> fs/ubifs/file.c | 2 +- >> fs/ubifs/ubifs.h | 2 ++ >> 2 files changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/fs/ubifs/file.c b/fs/ubifs/file.c >> index 27de484..dc8bf0b 100644 >> --- a/fs/ubifs/file.c >> +++ b/fs/ubifs/file.c >> @@ -54,7 +54,7 @@ >> #include >> #include >> >> -static int read_block(struct inode *inode, void *addr, unsigned int block, >> +int read_block(struct inode *inode, void *addr, unsigned int block, >> struct ubifs_data_node *dn) >> { >> struct ubifs_info *c = inode->i_sb->s_fs_info; >> diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h >> index ae6723e..a6ad955 100644 >> --- a/fs/ubifs/ubifs.h >> +++ b/fs/ubifs/ubifs.h >> @@ -1749,6 +1749,8 @@ const struct ubifs_lprops *ubifs_fast_find_frdi_idx(struct ubifs_info *c); >> int ubifs_calc_dark(const struct ubifs_info *c, int spc); >> >> /* file.c */ >> +int read_block(struct inode *inode, void *addr, unsigned int block, >> + struct ubifs_data_node *dn); > > Please prefix the function name with ubifs_ to avoid namespace pollution. Good point, thanx > > Thanks, > //richard > . >