Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mft.h
Go to the documentation of this file.
1 /*
2  * mft.h - Defines for mft record handling in NTFS Linux kernel driver.
3  * Part of the Linux-NTFS project.
4  *
5  * Copyright (c) 2001-2004 Anton Altaparmakov
6  *
7  * This program/include file is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as published
9  * by the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program/include file is distributed in the hope that it will be
13  * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program (in the main directory of the Linux-NTFS
19  * distribution in the file COPYING); if not, write to the Free Software
20  * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  */
22 
23 #ifndef _LINUX_NTFS_MFT_H
24 #define _LINUX_NTFS_MFT_H
25 
26 #include <linux/fs.h>
27 #include <linux/highmem.h>
28 #include <linux/pagemap.h>
29 
30 #include "inode.h"
31 
32 extern MFT_RECORD *map_mft_record(ntfs_inode *ni);
33 extern void unmap_mft_record(ntfs_inode *ni);
34 
35 extern MFT_RECORD *map_extent_mft_record(ntfs_inode *base_ni, MFT_REF mref,
36  ntfs_inode **ntfs_ino);
37 
38 static inline void unmap_extent_mft_record(ntfs_inode *ni)
39 {
40  unmap_mft_record(ni);
41  return;
42 }
43 
44 #ifdef NTFS_RW
45 
55 static inline void flush_dcache_mft_record_page(ntfs_inode *ni)
56 {
58 }
59 
60 extern void __mark_mft_record_dirty(ntfs_inode *ni);
61 
73 static inline void mark_mft_record_dirty(ntfs_inode *ni)
74 {
75  if (!NInoTestSetDirty(ni))
76  __mark_mft_record_dirty(ni);
77 }
78 
79 extern int ntfs_sync_mft_mirror(ntfs_volume *vol, const unsigned long mft_no,
80  MFT_RECORD *m, int sync);
81 
82 extern int write_mft_record_nolock(ntfs_inode *ni, MFT_RECORD *m, int sync);
83 
102 static inline int write_mft_record(ntfs_inode *ni, MFT_RECORD *m, int sync)
103 {
104  struct page *page = ni->page;
105  int err;
106 
107  BUG_ON(!page);
108  lock_page(page);
109  err = write_mft_record_nolock(ni, m, sync);
110  unlock_page(page);
111  return err;
112 }
113 
114 extern bool ntfs_may_write_mft_record(ntfs_volume *vol,
115  const unsigned long mft_no, const MFT_RECORD *m,
116  ntfs_inode **locked_ni);
117 
118 extern ntfs_inode *ntfs_mft_record_alloc(ntfs_volume *vol, const int mode,
119  ntfs_inode *base_ni, MFT_RECORD **mrec);
120 extern int ntfs_extent_mft_record_free(ntfs_inode *ni, MFT_RECORD *m);
121 
122 #endif /* NTFS_RW */
123 
124 #endif /* _LINUX_NTFS_MFT_H */