Commit 29b9032b authored by Anton Altaparmakov's avatar Anton Altaparmakov

NTFS: Switch fs/ntfs/index.h::ntfs_index_entry_mark_dirty() to using the

      new helper fs/ntfs/aops.c::mark_ntfs_record_dirty() and remove the no
      longer needed fs/ntfs/index.[hc]::__ntfs_index_entry_mark_dirty().
Signed-off-by: default avatarAnton Altaparmakov <aia21@cantab.net>
parent afb83cf9
......@@ -51,6 +51,9 @@ ToDo/Notes:
marks all buffers belonging to an ntfs record dirty, followed by
marking the page the ntfs record is in dirty and also marking the vfs
inode containing the ntfs record dirty (I_DIRTY_PAGES).
- Switch fs/ntfs/index.h::ntfs_index_entry_mark_dirty() to using the
new helper fs/ntfs/aops.c::mark_ntfs_record_dirty() and remove the no
longer needed fs/ntfs/index.[hc]::__ntfs_index_entry_mark_dirty().
2.1.20 - Fix two stupid bugs introduced in 2.1.18 release.
......
......@@ -459,58 +459,3 @@ int ntfs_index_lookup(const void *key, const int key_len,
err = -EIO;
goto err_out;
}
#ifdef NTFS_RW
/**
* __ntfs_index_entry_mark_dirty - mark an index allocation entry dirty
* @ictx: ntfs index context describing the index entry
*
* NOTE: You want to use fs/ntfs/index.h::ntfs_index_entry_mark_dirty() instead!
*
* Mark the index allocation entry described by the index entry context @ictx
* dirty.
*
* The index entry must be in an index block belonging to the index allocation
* attribute. Mark the buffers belonging to the index record as well as the
* page cache page the index block is in dirty. This automatically marks the
* VFS inode of the ntfs index inode to which the index entry belongs dirty,
* too (I_DIRTY_PAGES) and this in turn ensures the page buffers, and hence the
* dirty index block, will be written out to disk later.
*/
void __ntfs_index_entry_mark_dirty(ntfs_index_context *ictx)
{
ntfs_inode *ni;
struct page *page;
struct buffer_head *bh, *head;
unsigned int rec_start, rec_end, bh_size, bh_start, bh_end;
BUG_ON(ictx->is_in_root);
ni = ictx->idx_ni;
page = ictx->page;
BUG_ON(!page_has_buffers(page));
/*
* If the index block is the same size as the page cache page, set all
* the buffers in the page, as well as the page itself, dirty.
*/
if (ni->itype.index.block_size == PAGE_CACHE_SIZE) {
__set_page_dirty_buffers(page);
return;
}
/* Set only the buffers in which the index block is located dirty. */
rec_start = (unsigned int)((u8*)ictx->ia - (u8*)page_address(page));
rec_end = rec_start + ni->itype.index.block_size;
bh_size = ni->vol->sb->s_blocksize;
bh_start = 0;
bh = head = page_buffers(page);
do {
bh_end = bh_start + bh_size;
if ((bh_start >= rec_start) && (bh_end <= rec_end))
set_buffer_dirty(bh);
bh_start = bh_end;
} while ((bh = bh->b_this_page) != head);
/* Finally, set the page itself dirty, too. */
__set_page_dirty_nobuffers(page);
}
#endif /* NTFS_RW */
......@@ -30,6 +30,7 @@
#include "inode.h"
#include "attrib.h"
#include "mft.h"
#include "aops.h"
/**
* @idx_ni: index inode containing the @entry described by this context
......@@ -115,8 +116,6 @@ static inline void ntfs_index_entry_flush_dcache_page(ntfs_index_context *ictx)
flush_dcache_page(ictx->page);
}
extern void __ntfs_index_entry_mark_dirty(ntfs_index_context *ictx);
/**
* ntfs_index_entry_mark_dirty - mark an index entry dirty
* @ictx: ntfs index context describing the index entry
......@@ -140,7 +139,8 @@ static inline void ntfs_index_entry_mark_dirty(ntfs_index_context *ictx)
if (ictx->is_in_root)
mark_mft_record_dirty(ictx->actx->ntfs_ino);
else
__ntfs_index_entry_mark_dirty(ictx);
mark_ntfs_record_dirty(ictx->idx_ni, ictx->page,
(u8*)ictx->ia - (u8*)page_address(ictx->page));
}
#endif /* NTFS_RW */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment