[PATCH v3 20/39] ubifs: export read_block() from file.c
Dongsheng Yang
yangds.fnst at cn.fujitsu.com
Tue Sep 15 02:02:15 PDT 2015
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 <yangds.fnst at cn.fujitsu.com>
Reviewed-by: Richard Weinberger <richard at nod.at>
---
fs/ubifs/file.c | 13 +++++++++++--
fs/ubifs/ubifs.h | 2 ++
2 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/fs/ubifs/file.c b/fs/ubifs/file.c
index c85b4fb..4cff712 100644
--- a/fs/ubifs/file.c
+++ b/fs/ubifs/file.c
@@ -53,7 +53,16 @@
#include <linux/mount.h>
#include <linux/slab.h>
-static int read_block(struct inode *inode, void *addr, unsigned int block,
+/**
+ * ubifs_read_block - read a block from inode
+ * @inode: inode we want to read
+ * @addr: memory address to put data in
+ * @block:: block number we want to read
+ * @dn: ubifs_data_node to search block
+ *
+ * This function read a specified block from tnc or media to addr.
+ */
+int ubifs_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;
@@ -140,7 +149,7 @@ static int do_readpage(struct page *page)
err = -ENOENT;
memset(addr, 0, UBIFS_BLOCK_SIZE);
} else {
- ret = read_block(inode, addr, block, dn);
+ ret = ubifs_read_block(inode, addr, block, dn);
if (ret) {
err = ret;
if (err != -ENOENT)
diff --git a/fs/ubifs/ubifs.h b/fs/ubifs/ubifs.h
index 5e1a5fe..4215c33 100644
--- a/fs/ubifs/ubifs.h
+++ b/fs/ubifs/ubifs.h
@@ -1751,6 +1751,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 ubifs_read_block(struct inode *inode, void *addr, unsigned int block,
+ struct ubifs_data_node *dn);
int ubifs_fsync(struct file *file, loff_t start, loff_t end, int datasync);
int ubifs_setattr(struct dentry *dentry, struct iattr *attr);
int ubifs_update_time(struct inode *inode, struct timespec *time, int flags);
--
1.8.4.2
More information about the linux-mtd
mailing list