summaryrefslogtreecommitdiff
path: root/fs/ntfs3
diff options
context:
space:
mode:
authorKonstantin Komarov <almaz.alexandrovich@paragon-software.com>2024-05-16 20:37:53 +0300
committerKonstantin Komarov <almaz.alexandrovich@paragon-software.com>2024-06-07 14:30:58 +0300
commit34abb4f6fd29ec70b8c7ff33c0721cd3eb1c7a20 (patch)
tree7f15a3e44157233a4c240222b3086e4018954cde /fs/ntfs3
parent1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0 (diff)
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>
Diffstat (limited to 'fs/ntfs3')
-rw-r--r--fs/ntfs3/inode.c30
-rw-r--r--fs/ntfs3/ntfs_fs.h1
2 files changed, 0 insertions, 31 deletions
diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c
index 0f1664db94ad..6dc51faeef8d 100644
--- a/fs/ntfs3/inode.c
+++ b/fs/ntfs3/inode.c
@@ -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
*
diff --git a/fs/ntfs3/ntfs_fs.h b/fs/ntfs3/ntfs_fs.h
index f9ed6d2b065d..ee0c1b76e812 100644
--- a/fs/ntfs3/ntfs_fs.h
+++ b/fs/ntfs3/ntfs_fs.h
@@ -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,