Commit afb83cf9 authored by Anton Altaparmakov's avatar Anton Altaparmakov

NTFS: Add a helper function fs/ntfs/aops.c::mark_ntfs_record_dirty() which

      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).
Signed-off-by: default avatarAnton Altaparmakov <aia21@cantab.net>
parent 90b154ba
......@@ -47,6 +47,10 @@ ToDo/Notes:
- Implement fs/ntfs/runlist.c::ntfs_rl_truncate_nolock().
- Add MFT_RECORD_OLD as a copy of MFT_RECORD in fs/ntfs/layout.h and
change MFT_RECORD to contain the NTFS 3.1+ specific fields.
- Add a helper function fs/ntfs/aops.c::mark_ntfs_record_dirty() which
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).
2.1.20 - Fix two stupid bugs introduced in 2.1.18 release.
......
......@@ -27,6 +27,7 @@
#include <linux/swap.h>
#include <linux/buffer_head.h>
#include "aops.h"
#include "ntfs.h"
/**
......@@ -2028,3 +2029,44 @@ struct address_space_operations ntfs_mst_aops = {
belonging to the page. */
#endif /* NTFS_RW */
};
#ifdef NTFS_RW
/**
* mark_ntfs_record_dirty - mark an ntfs record dirty
* @ni: ntfs inode to which the ntfs record to be marked dirty belongs
* @page: page containing the ntfs record to mark dirty
* @rec_start: byte offset within @page at which the ntfs record begins
*
* If the ntfs record is the same size as the page cache page @page, set all
* buffers in the page dirty. Otherwise, set only the buffers in which the
* ntfs record is located dirty.
*
* Also, set the page containing the ntfs record dirty, which also marks the
* vfs inode the ntfs record belongs to dirty (I_DIRTY_PAGES).
*/
void mark_ntfs_record_dirty(ntfs_inode *ni, struct page *page,
unsigned int rec_start) {
struct buffer_head *bh, *head;
unsigned int rec_end, bh_size, bh_start, bh_end;
BUG_ON(!page);
BUG_ON(!page_has_buffers(page));
if (ni->itype.index.block_size == PAGE_CACHE_SIZE) {
__set_page_dirty_buffers(page);
return;
}
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);
__set_page_dirty_nobuffers(page);
}
#endif /* NTFS_RW */
/**
* aops.h - Defines for NTFS kernel address space operations and page cache
* handling. Part of the Linux-NTFS project.
*
* Copyright (c) 2001-2004 Anton Altaparmakov
* Copyright (c) 2002 Richard Russon
*
* This program/include file is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program/include file is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (in the main directory of the Linux-NTFS
* distribution in the file COPYING); if not, write to the Free Software
* Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _LINUX_NTFS_AOPS_H
#define _LINUX_NTFS_AOPS_H
#ifdef NTFS_RW
#include "inode.h"
extern void mark_ntfs_record_dirty(ntfs_inode *ni, struct page *page,
unsigned int rec_start);
#endif /* NTFS_RW */
#endif /* _LINUX_NTFS_AOPS_H */
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