mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-18 06:15:12 +00:00
fs/ntfs3: Remove unused function
At the moment, the function turned out to be unused, so I removed it. Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
This commit is contained in:
parent
1613e604df
commit
34abb4f6fd
@ -1097,36 +1097,6 @@ int ntfs_flush_inodes(struct super_block *sb, struct inode *i1,
|
||||
return ret;
|
||||
}
|
||||
|
||||
int inode_write_data(struct inode *inode, const void *data, size_t bytes)
|
||||
{
|
||||
pgoff_t idx;
|
||||
|
||||
/* Write non resident data. */
|
||||
for (idx = 0; bytes; idx++) {
|
||||
size_t op = bytes > PAGE_SIZE ? PAGE_SIZE : bytes;
|
||||
struct page *page = ntfs_map_page(inode->i_mapping, idx);
|
||||
|
||||
if (IS_ERR(page))
|
||||
return PTR_ERR(page);
|
||||
|
||||
lock_page(page);
|
||||
WARN_ON(!PageUptodate(page));
|
||||
ClearPageUptodate(page);
|
||||
|
||||
memcpy(page_address(page), data, op);
|
||||
|
||||
flush_dcache_page(page);
|
||||
SetPageUptodate(page);
|
||||
unlock_page(page);
|
||||
|
||||
ntfs_unmap_page(page);
|
||||
|
||||
bytes -= op;
|
||||
data = Add2Ptr(data, PAGE_SIZE);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* ntfs_reparse_bytes
|
||||
*
|
||||
|
@ -716,7 +716,6 @@ int ntfs3_write_inode(struct inode *inode, struct writeback_control *wbc);
|
||||
int ntfs_sync_inode(struct inode *inode);
|
||||
int ntfs_flush_inodes(struct super_block *sb, struct inode *i1,
|
||||
struct inode *i2);
|
||||
int inode_write_data(struct inode *inode, const void *data, size_t bytes);
|
||||
int ntfs_create_inode(struct mnt_idmap *idmap, struct inode *dir,
|
||||
struct dentry *dentry, const struct cpu_str *uni,
|
||||
umode_t mode, dev_t dev, const char *symname, u32 size,
|
||||
|
Loading…
x
Reference in New Issue
Block a user