Merge remote-tracking branch 'omap_dss2/for-next'
[deliverable/linux.git] / Documentation / filesystems / Locking
CommitLineData
1da177e4
LT
1 The text below describes the locking rules for VFS-related methods.
2It is (believed to be) up-to-date. *Please*, if you change anything in
3prototypes or locking protocols - update this file. And update the relevant
4instances in the tree, don't leave that to maintainers of filesystems/devices/
5etc. At the very least, put the list of dubious cases in the end of this file.
6Don't turn it into log - maintainers of out-of-the-tree code are supposed to
7be able to use diff(1).
8 Thing currently missing here: socket operations. Alexey?
9
10--------------------------- dentry_operations --------------------------
11prototypes:
0b728e19 12 int (*d_revalidate)(struct dentry *, unsigned int);
ecf3d1f1 13 int (*d_weak_revalidate)(struct dentry *, unsigned int);
da53be12 14 int (*d_hash)(const struct dentry *, struct qstr *);
6fa67e70 15 int (*d_compare)(const struct dentry *,
621e155a 16 unsigned int, const char *, const struct qstr *);
1da177e4 17 int (*d_delete)(struct dentry *);
285b102d 18 int (*d_init)(struct dentry *);
1da177e4
LT
19 void (*d_release)(struct dentry *);
20 void (*d_iput)(struct dentry *, struct inode *);
c23fbb6b 21 char *(*d_dname)((struct dentry *dentry, char *buffer, int buflen);
9875cf80 22 struct vfsmount *(*d_automount)(struct path *path);
cc53ce53 23 int (*d_manage)(struct dentry *, bool);
e698b8a4
MS
24 struct dentry *(*d_real)(struct dentry *, const struct inode *,
25 unsigned int);
1da177e4
LT
26
27locking rules:
34286d66
NP
28 rename_lock ->d_lock may block rcu-walk
29d_revalidate: no no yes (ref-walk) maybe
ecf3d1f1 30d_weak_revalidate:no no yes no
34286d66
NP
31d_hash no no no maybe
32d_compare: yes no no maybe
33d_delete: no yes no no
285b102d 34d_init: no no yes no
34286d66 35d_release: no no yes no
f0023bc6 36d_prune: no yes no no
34286d66
NP
37d_iput: no no yes no
38d_dname: no no no no
9875cf80 39d_automount: no no yes no
ab90911f 40d_manage: no no yes (ref-walk) maybe
e698b8a4 41d_real no no yes no
1da177e4
LT
42
43--------------------------- inode_operations ---------------------------
44prototypes:
ebfc3b49 45 int (*create) (struct inode *,struct dentry *,umode_t, bool);
00cd8dd3 46 struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int);
1da177e4
LT
47 int (*link) (struct dentry *,struct inode *,struct dentry *);
48 int (*unlink) (struct inode *,struct dentry *);
49 int (*symlink) (struct inode *,struct dentry *,const char *);
18bb1db3 50 int (*mkdir) (struct inode *,struct dentry *,umode_t);
1da177e4 51 int (*rmdir) (struct inode *,struct dentry *);
1a67aafb 52 int (*mknod) (struct inode *,struct dentry *,umode_t,dev_t);
34332745 53 int (*rename) (struct inode *, struct dentry *,
520c8b16 54 struct inode *, struct dentry *, unsigned int);
1da177e4 55 int (*readlink) (struct dentry *, char __user *,int);
6b255391 56 const char *(*get_link) (struct dentry *, struct inode *, void **);
1da177e4 57 void (*truncate) (struct inode *);
b74c79e9 58 int (*permission) (struct inode *, int, unsigned int);
4e34e719 59 int (*get_acl)(struct inode *, int);
1da177e4
LT
60 int (*setattr) (struct dentry *, struct iattr *);
61 int (*getattr) (struct vfsmount *, struct dentry *, struct kstat *);
62 int (*setxattr) (struct dentry *, const char *,const void *,size_t,int);
63 ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
64 ssize_t (*listxattr) (struct dentry *, char *, size_t);
65 int (*removexattr) (struct dentry *, const char *);
b83be6f2 66 int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start, u64 len);
c3b2da31 67 void (*update_time)(struct inode *, struct timespec *, int);
d9585277 68 int (*atomic_open)(struct inode *, struct dentry *,
30d90494 69 struct file *, unsigned open_flag,
47237687 70 umode_t create_mode, int *opened);
48bde8d3 71 int (*tmpfile) (struct inode *, struct dentry *, umode_t);
1da177e4
LT
72
73locking rules:
b83be6f2 74 all may block
a7bc02f4 75 i_mutex(inode)
1da177e4
LT
76lookup: yes
77create: yes
78link: yes (both)
79mknod: yes
80symlink: yes
81mkdir: yes
82unlink: yes (both)
83rmdir: yes (both) (see below)
34332745 84rename: yes (all) (see below)
1da177e4 85readlink: no
6b255391 86get_link: no
1da177e4 87setattr: yes
b74c79e9 88permission: no (may not block if called in rcu-walk mode)
4e34e719 89get_acl: no
1da177e4
LT
90getattr: no
91setxattr: yes
92getxattr: no
93listxattr: no
94removexattr: yes
b83be6f2 95fiemap: no
c3b2da31 96update_time: no
d18e9008 97atomic_open: yes
48bde8d3 98tmpfile: no
c3b2da31 99
a7bc02f4 100 Additionally, ->rmdir(), ->unlink() and ->rename() have ->i_mutex on
1da177e4 101victim.
34332745 102 cross-directory ->rename() has (per-superblock) ->s_vfs_rename_sem.
1da177e4
LT
103
104See Documentation/filesystems/directory-locking for more detailed discussion
105of the locking scheme for directory operations.
106
107--------------------------- super_operations ---------------------------
108prototypes:
109 struct inode *(*alloc_inode)(struct super_block *sb);
110 void (*destroy_inode)(struct inode *);
aa385729 111 void (*dirty_inode) (struct inode *, int flags);
b83be6f2 112 int (*write_inode) (struct inode *, struct writeback_control *wbc);
336fb3b9
AV
113 int (*drop_inode) (struct inode *);
114 void (*evict_inode) (struct inode *);
1da177e4 115 void (*put_super) (struct super_block *);
1da177e4 116 int (*sync_fs)(struct super_block *sb, int wait);
c4be0c1d
TS
117 int (*freeze_fs) (struct super_block *);
118 int (*unfreeze_fs) (struct super_block *);
726c3342 119 int (*statfs) (struct dentry *, struct kstatfs *);
1da177e4 120 int (*remount_fs) (struct super_block *, int *, char *);
1da177e4 121 void (*umount_begin) (struct super_block *);
34c80b1d 122 int (*show_options)(struct seq_file *, struct dentry *);
1da177e4
LT
123 ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t);
124 ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t);
b83be6f2 125 int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t);
1da177e4
LT
126
127locking rules:
336fb3b9 128 All may block [not true, see below]
7e325d3a
CH
129 s_umount
130alloc_inode:
131destroy_inode:
aa385729 132dirty_inode:
7e325d3a 133write_inode:
f283c86a 134drop_inode: !!!inode->i_lock!!!
336fb3b9 135evict_inode:
7e325d3a 136put_super: write
7e325d3a 137sync_fs: read
06fd516c
VA
138freeze_fs: write
139unfreeze_fs: write
336fb3b9
AV
140statfs: maybe(read) (see below)
141remount_fs: write
7e325d3a
CH
142umount_begin: no
143show_options: no (namespace_sem)
144quota_read: no (see below)
145quota_write: no (see below)
b83be6f2 146bdev_try_to_free_page: no (see below)
1da177e4 147
336fb3b9
AV
148->statfs() has s_umount (shared) when called by ustat(2) (native or
149compat), but that's an accident of bad API; s_umount is used to pin
150the superblock down when we only have dev_t given us by userland to
151identify the superblock. Everything else (statfs(), fstatfs(), etc.)
152doesn't hold it when calling ->statfs() - superblock is pinned down
153by resolving the pathname passed to syscall.
1da177e4
LT
154->quota_read() and ->quota_write() functions are both guaranteed to
155be the only ones operating on the quota file by the quota code (via
156dqio_sem) (unless an admin really wants to screw up something and
157writes to quota files with quotas on). For other details about locking
158see also dquot_operations section.
b83be6f2
CH
159->bdev_try_to_free_page is called from the ->releasepage handler of
160the block device inode. See there for more details.
1da177e4
LT
161
162--------------------------- file_system_type ---------------------------
163prototypes:
b83be6f2
CH
164 struct dentry *(*mount) (struct file_system_type *, int,
165 const char *, void *);
1da177e4
LT
166 void (*kill_sb) (struct super_block *);
167locking rules:
b83be6f2 168 may block
b83be6f2
CH
169mount yes
170kill_sb yes
1da177e4 171
1a102ff9
AV
172->mount() returns ERR_PTR or the root dentry; its superblock should be locked
173on return.
1da177e4
LT
174->kill_sb() takes a write-locked superblock, does all shutdown work on it,
175unlocks and drops the reference.
176
177--------------------------- address_space_operations --------------------------
178prototypes:
179 int (*writepage)(struct page *page, struct writeback_control *wbc);
180 int (*readpage)(struct file *, struct page *);
1da177e4
LT
181 int (*writepages)(struct address_space *, struct writeback_control *);
182 int (*set_page_dirty)(struct page *page);
183 int (*readpages)(struct file *filp, struct address_space *mapping,
184 struct list_head *pages, unsigned nr_pages);
4e02ed4b
NP
185 int (*write_begin)(struct file *, struct address_space *mapping,
186 loff_t pos, unsigned len, unsigned flags,
187 struct page **pagep, void **fsdata);
188 int (*write_end)(struct file *, struct address_space *mapping,
189 loff_t pos, unsigned len, unsigned copied,
190 struct page *page, void *fsdata);
1da177e4 191 sector_t (*bmap)(struct address_space *, sector_t);
d47992f8 192 void (*invalidatepage) (struct page *, unsigned int, unsigned int);
1da177e4 193 int (*releasepage) (struct page *, int);
6072d13c 194 void (*freepage)(struct page *);
c8b8e32d 195 int (*direct_IO)(struct kiocb *, struct iov_iter *iter);
bda807d4 196 bool (*isolate_page) (struct page *, isolate_mode_t);
b83be6f2 197 int (*migratepage)(struct address_space *, struct page *, struct page *);
bda807d4 198 void (*putback_page) (struct page *);
b83be6f2 199 int (*launder_page)(struct page *);
c186afb4 200 int (*is_partially_uptodate)(struct page *, unsigned long, unsigned long);
b83be6f2 201 int (*error_remove_page)(struct address_space *, struct page *);
62c230bc
MG
202 int (*swap_activate)(struct file *);
203 int (*swap_deactivate)(struct file *);
1da177e4
LT
204
205locking rules:
6072d13c 206 All except set_page_dirty and freepage may block
1da177e4 207
b83be6f2
CH
208 PageLocked(page) i_mutex
209writepage: yes, unlocks (see below)
210readpage: yes, unlocks
b83be6f2
CH
211writepages:
212set_page_dirty no
213readpages:
214write_begin: locks the page yes
215write_end: yes, unlocks yes
216bmap:
217invalidatepage: yes
218releasepage: yes
219freepage: yes
220direct_IO:
bda807d4 221isolate_page: yes
b83be6f2 222migratepage: yes (both)
bda807d4 223putback_page: yes
b83be6f2
CH
224launder_page: yes
225is_partially_uptodate: yes
226error_remove_page: yes
62c230bc
MG
227swap_activate: no
228swap_deactivate: no
1da177e4 229
f4e6d844
MW
230 ->write_begin(), ->write_end() and ->readpage() may be called from
231the request handler (/dev/loop).
1da177e4
LT
232
233 ->readpage() unlocks the page, either synchronously or via I/O
234completion.
235
236 ->readpages() populates the pagecache with the passed pages and starts
237I/O against them. They come unlocked upon I/O completion.
238
239 ->writepage() is used for two purposes: for "memory cleansing" and for
240"sync". These are quite different operations and the behaviour may differ
241depending upon the mode.
242
243If writepage is called for sync (wbc->sync_mode != WBC_SYNC_NONE) then
244it *must* start I/O against the page, even if that would involve
245blocking on in-progress I/O.
246
247If writepage is called for memory cleansing (sync_mode ==
248WBC_SYNC_NONE) then its role is to get as much writeout underway as
249possible. So writepage should try to avoid blocking against
250currently-in-progress I/O.
251
252If the filesystem is not called for "sync" and it determines that it
253would need to block against in-progress I/O to be able to start new I/O
254against the page the filesystem should redirty the page with
255redirty_page_for_writepage(), then unlock the page and return zero.
256This may also be done to avoid internal deadlocks, but rarely.
257
3a4fa0a2 258If the filesystem is called for sync then it must wait on any
1da177e4
LT
259in-progress I/O and then start new I/O.
260
2054606a
ND
261The filesystem should unlock the page synchronously, before returning to the
262caller, unless ->writepage() returns special WRITEPAGE_ACTIVATE
263value. WRITEPAGE_ACTIVATE means that page cannot really be written out
264currently, and VM should stop calling ->writepage() on this page for some
265time. VM does this by moving page to the head of the active list, hence the
266name.
1da177e4
LT
267
268Unless the filesystem is going to redirty_page_for_writepage(), unlock the page
269and return zero, writepage *must* run set_page_writeback() against the page,
270followed by unlocking it. Once set_page_writeback() has been run against the
271page, write I/O can be submitted and the write I/O completion handler must run
272end_page_writeback() once the I/O is complete. If no I/O is submitted, the
273filesystem must run end_page_writeback() against the page before returning from
274writepage.
275
276That is: after 2.5.12, pages which are under writeout are *not* locked. Note,
277if the filesystem needs the page to be locked during writeout, that is ok, too,
278the page is allowed to be unlocked at any point in time between the calls to
279set_page_writeback() and end_page_writeback().
280
281Note, failure to run either redirty_page_for_writepage() or the combination of
282set_page_writeback()/end_page_writeback() on a page submitted to writepage
283will leave the page itself marked clean but it will be tagged as dirty in the
284radix tree. This incoherency can lead to all sorts of hard-to-debug problems
285in the filesystem like having dirty inodes at umount and losing written data.
286
1da177e4
LT
287 ->writepages() is used for periodic writeback and for syscall-initiated
288sync operations. The address_space should start I/O against at least
289*nr_to_write pages. *nr_to_write must be decremented for each page which is
290written. The address_space implementation may write more (or less) pages
291than *nr_to_write asks for, but it should try to be reasonably close. If
292nr_to_write is NULL, all dirty pages must be written.
293
294writepages should _only_ write pages which are present on
295mapping->io_pages.
296
297 ->set_page_dirty() is called from various places in the kernel
298when the target page is marked as needing writeback. It may be called
299under spinlock (it cannot block) and is sometimes called with the page
300not locked.
301
302 ->bmap() is currently used by legacy ioctl() (FIBMAP) provided by some
b83be6f2
CH
303filesystems and by the swapper. The latter will eventually go away. Please,
304keep it that way and don't breed new callers.
1da177e4
LT
305
306 ->invalidatepage() is called when the filesystem must attempt to drop
d47992f8
LC
307some or all of the buffers from the page when it is being truncated. It
308returns zero on success. If ->invalidatepage is zero, the kernel uses
1da177e4
LT
309block_invalidatepage() instead.
310
311 ->releasepage() is called when the kernel is about to try to drop the
312buffers from the page in preparation for freeing it. It returns zero to
313indicate that the buffers are (or may be) freeable. If ->releasepage is zero,
314the kernel assumes that the fs has no private interest in the buffers.
315
6072d13c
LT
316 ->freepage() is called when the kernel is done dropping the page
317from the page cache.
318
e3db7691
TM
319 ->launder_page() may be called prior to releasing a page if
320it is still found to be dirty. It returns zero if the page was successfully
321cleaned, or an error value if not. Note that in order to prevent the page
322getting mapped back in and redirtied, it needs to be kept locked
323across the entire operation.
324
62c230bc
MG
325 ->swap_activate will be called with a non-zero argument on
326files backing (non block device backed) swapfiles. A return value
327of zero indicates success, in which case this file can be used for
328backing swapspace. The swapspace operations will be proxied to the
329address space operations.
330
331 ->swap_deactivate() will be called in the sys_swapoff()
332path after ->swap_activate() returned success.
333
1da177e4
LT
334----------------------- file_lock_operations ------------------------------
335prototypes:
1da177e4
LT
336 void (*fl_copy_lock)(struct file_lock *, struct file_lock *);
337 void (*fl_release_private)(struct file_lock *);
338
339
340locking rules:
1c8c601a 341 inode->i_lock may block
b83be6f2 342fl_copy_lock: yes no
2ece173e
JL
343fl_release_private: maybe maybe[1]
344
345[1]: ->fl_release_private for flock or POSIX locks is currently allowed
346to block. Leases however can still be freed while the i_lock is held and
347so fl_release_private called on a lease should not block.
1da177e4
LT
348
349----------------------- lock_manager_operations ---------------------------
350prototypes:
8fb47a4f 351 int (*lm_compare_owner)(struct file_lock *, struct file_lock *);
3999e493 352 unsigned long (*lm_owner_key)(struct file_lock *);
8fb47a4f
BF
353 void (*lm_notify)(struct file_lock *); /* unblock callback */
354 int (*lm_grant)(struct file_lock *, struct file_lock *, int);
8fb47a4f
BF
355 void (*lm_break)(struct file_lock *); /* break_lease callback */
356 int (*lm_change)(struct file_lock **, int);
1da177e4
LT
357
358locking rules:
1c8c601a 359
7b2296af
JL
360 inode->i_lock blocked_lock_lock may block
361lm_compare_owner: yes[1] maybe no
362lm_owner_key yes[1] yes no
363lm_notify: yes yes no
364lm_grant: no no no
365lm_break: yes no no
366lm_change yes no no
1c8c601a 367
3999e493
JL
368[1]: ->lm_compare_owner and ->lm_owner_key are generally called with
369*an* inode->i_lock held. It may not be the i_lock of the inode
370associated with either file_lock argument! This is the case with deadlock
371detection, since the code has to chase down the owners of locks that may
372be entirely unrelated to the one on which the lock is being acquired.
7b2296af 373For deadlock detection however, the blocked_lock_lock is also held. The
3999e493
JL
374fact that these locks are held ensures that the file_locks do not
375disappear out from under you while doing the comparison or generating an
376owner key.
b83be6f2 377
1da177e4
LT
378--------------------------- buffer_head -----------------------------------
379prototypes:
380 void (*b_end_io)(struct buffer_head *bh, int uptodate);
381
382locking rules:
383 called from interrupts. In other words, extreme care is needed here.
384bh is locked, but that's all warranties we have here. Currently only RAID1,
385highmem, fs/buffer.c, and fs/ntfs/aops.c are providing these. Block devices
386call this method upon the IO completion.
387
388--------------------------- block_device_operations -----------------------
389prototypes:
e1455d1b
CH
390 int (*open) (struct block_device *, fmode_t);
391 int (*release) (struct gendisk *, fmode_t);
392 int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
393 int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
7a9eb206 394 int (*direct_access) (struct block_device *, sector_t, void **,
e2e05394 395 unsigned long *);
1da177e4 396 int (*media_changed) (struct gendisk *);
e1455d1b 397 void (*unlock_native_capacity) (struct gendisk *);
1da177e4 398 int (*revalidate_disk) (struct gendisk *);
e1455d1b
CH
399 int (*getgeo)(struct block_device *, struct hd_geometry *);
400 void (*swap_slot_free_notify) (struct block_device *, unsigned long);
1da177e4
LT
401
402locking rules:
b83be6f2
CH
403 bd_mutex
404open: yes
405release: yes
406ioctl: no
407compat_ioctl: no
408direct_access: no
409media_changed: no
410unlock_native_capacity: no
411revalidate_disk: no
412getgeo: no
413swap_slot_free_notify: no (see below)
e1455d1b
CH
414
415media_changed, unlock_native_capacity and revalidate_disk are called only from
416check_disk_change().
417
418swap_slot_free_notify is called with swap_lock and sometimes the page lock
419held.
1da177e4 420
1da177e4
LT
421
422--------------------------- file_operations -------------------------------
423prototypes:
424 loff_t (*llseek) (struct file *, loff_t, int);
425 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
1da177e4 426 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
293bc982
AV
427 ssize_t (*read_iter) (struct kiocb *, struct iov_iter *);
428 ssize_t (*write_iter) (struct kiocb *, struct iov_iter *);
2233f31a 429 int (*iterate) (struct file *, struct dir_context *);
1da177e4 430 unsigned int (*poll) (struct file *, struct poll_table_struct *);
1da177e4
LT
431 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
432 long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
433 int (*mmap) (struct file *, struct vm_area_struct *);
434 int (*open) (struct inode *, struct file *);
435 int (*flush) (struct file *);
436 int (*release) (struct inode *, struct file *);
02c24a82 437 int (*fsync) (struct file *, loff_t start, loff_t end, int datasync);
1da177e4
LT
438 int (*aio_fsync) (struct kiocb *, int datasync);
439 int (*fasync) (int, struct file *, int);
440 int (*lock) (struct file *, int, struct file_lock *);
441 ssize_t (*readv) (struct file *, const struct iovec *, unsigned long,
442 loff_t *);
443 ssize_t (*writev) (struct file *, const struct iovec *, unsigned long,
444 loff_t *);
445 ssize_t (*sendfile) (struct file *, loff_t *, size_t, read_actor_t,
446 void __user *);
447 ssize_t (*sendpage) (struct file *, struct page *, int, size_t,
448 loff_t *, int);
449 unsigned long (*get_unmapped_area)(struct file *, unsigned long,
450 unsigned long, unsigned long, unsigned long);
451 int (*check_flags)(int);
b83be6f2
CH
452 int (*flock) (struct file *, int, struct file_lock *);
453 ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *,
454 size_t, unsigned int);
455 ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *,
456 size_t, unsigned int);
e6f5c789 457 int (*setlease)(struct file *, long, struct file_lock **, void **);
2fe17c10 458 long (*fallocate)(struct file *, int, loff_t, loff_t);
1da177e4
LT
459};
460
461locking rules:
c45198ed 462 All may block.
b83be6f2 463
1da177e4
LT
464->llseek() locking has moved from llseek to the individual llseek
465implementations. If your fs is not using generic_file_llseek, you
466need to acquire and release the appropriate locks in your ->llseek().
467For many filesystems, it is probably safe to acquire the inode
866707fc
JB
468mutex or just to use i_size_read() instead.
469Note: this does not protect the file->f_pos against concurrent modifications
470since this is something the userspace has to take care about.
1da177e4 471
b83be6f2
CH
472->fasync() is responsible for maintaining the FASYNC bit in filp->f_flags.
473Most instances call fasync_helper(), which does that maintenance, so it's
474not normally something one needs to worry about. Return values > 0 will be
475mapped to zero in the VFS layer.
1da177e4
LT
476
477->readdir() and ->ioctl() on directories must be changed. Ideally we would
478move ->readdir() to inode_operations and use a separate method for directory
479->ioctl() or kill the latter completely. One of the problems is that for
480anything that resembles union-mount we won't have a struct file for all
481components. And there are other reasons why the current interface is a mess...
482
1da177e4
LT
483->read on directories probably must go away - we should just enforce -EISDIR
484in sys_read() and friends.
485
f82b4b67
JL
486->setlease operations should call generic_setlease() before or after setting
487the lease within the individual filesystem to record the result of the
488operation
489
1da177e4
LT
490--------------------------- dquot_operations -------------------------------
491prototypes:
1da177e4
LT
492 int (*write_dquot) (struct dquot *);
493 int (*acquire_dquot) (struct dquot *);
494 int (*release_dquot) (struct dquot *);
495 int (*mark_dirty) (struct dquot *);
496 int (*write_info) (struct super_block *, int);
497
498These operations are intended to be more or less wrapping functions that ensure
499a proper locking wrt the filesystem and call the generic quota operations.
500
501What filesystem should expect from the generic quota functions:
502
503 FS recursion Held locks when called
1da177e4
LT
504write_dquot: yes dqonoff_sem or dqptr_sem
505acquire_dquot: yes dqonoff_sem or dqptr_sem
506release_dquot: yes dqonoff_sem or dqptr_sem
507mark_dirty: no -
508write_info: yes dqonoff_sem
509
510FS recursion means calling ->quota_read() and ->quota_write() from superblock
511operations.
512
1da177e4
LT
513More details about quota locking can be found in fs/dquot.c.
514
515--------------------------- vm_operations_struct -----------------------------
516prototypes:
517 void (*open)(struct vm_area_struct*);
518 void (*close)(struct vm_area_struct*);
d0217ac0 519 int (*fault)(struct vm_area_struct*, struct vm_fault *);
c2ec175c 520 int (*page_mkwrite)(struct vm_area_struct *, struct vm_fault *);
dd906184 521 int (*pfn_mkwrite)(struct vm_area_struct *, struct vm_fault *);
28b2ee20 522 int (*access)(struct vm_area_struct *, unsigned long, void*, int, int);
1da177e4
LT
523
524locking rules:
b83be6f2
CH
525 mmap_sem PageLocked(page)
526open: yes
527close: yes
528fault: yes can return with page locked
8c6e50b0 529map_pages: yes
b83be6f2 530page_mkwrite: yes can return with page locked
dd906184 531pfn_mkwrite: yes
b83be6f2 532access: yes
ed2f2f9b 533
b827e496
NP
534 ->fault() is called when a previously not present pte is about
535to be faulted in. The filesystem must find and return the page associated
536with the passed in "pgoff" in the vm_fault structure. If it is possible that
537the page may be truncated and/or invalidated, then the filesystem must lock
538the page, then ensure it is not already truncated (the page lock will block
539subsequent truncate), and then return with VM_FAULT_LOCKED, and the page
540locked. The VM will unlock the page.
541
8c6e50b0 542 ->map_pages() is called when VM asks to map easy accessible pages.
bae473a4
KS
543Filesystem should find and map pages associated with offsets from "start_pgoff"
544till "end_pgoff". ->map_pages() is called with page table locked and must
8c6e50b0
KS
545not block. If it's not possible to reach a page without blocking,
546filesystem should skip it. Filesystem should use do_set_pte() to setup
bae473a4
KS
547page table entry. Pointer to entry associated with the page is passed in
548"pte" field in fault_env structure. Pointers to entries for other offsets
549should be calculated relative to "pte".
8c6e50b0 550
b827e496
NP
551 ->page_mkwrite() is called when a previously read-only pte is
552about to become writeable. The filesystem again must ensure that there are
553no truncate/invalidate races, and then return with the page locked. If
554the page has been truncated, the filesystem should not look up a new page
555like the ->fault() handler, but simply return with VM_FAULT_NOPAGE, which
556will cause the VM to retry the fault.
1da177e4 557
dd906184
BH
558 ->pfn_mkwrite() is the same as page_mkwrite but when the pte is
559VM_PFNMAP or VM_MIXEDMAP with a page-less entry. Expected return is
560VM_FAULT_NOPAGE. Or one of the VM_FAULT_ERROR types. The default behavior
561after this call is to make the pte read-write, unless pfn_mkwrite returns
562an error.
563
28b2ee20 564 ->access() is called when get_user_pages() fails in
507da6a1 565access_process_vm(), typically used to debug a process through
28b2ee20
RR
566/proc/pid/mem or ptrace. This function is needed only for
567VM_IO | VM_PFNMAP VMAs.
568
1da177e4
LT
569================================================================================
570 Dubious stuff
571
572(if you break something or notice that it is broken and do not fix it yourself
573- at least put it here)
This page took 0.795535 seconds and 5 git commands to generate.