]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/inode.c
Allow relatime to update atime once a day
[mirror_ubuntu-bionic-kernel.git] / fs / inode.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/inode.c
3 *
4 * (C) 1997 Linus Torvalds
5 */
6
1da177e4
LT
7#include <linux/fs.h>
8#include <linux/mm.h>
9#include <linux/dcache.h>
10#include <linux/init.h>
11#include <linux/quotaops.h>
12#include <linux/slab.h>
13#include <linux/writeback.h>
14#include <linux/module.h>
15#include <linux/backing-dev.h>
16#include <linux/wait.h>
17#include <linux/hash.h>
18#include <linux/swap.h>
19#include <linux/security.h>
20#include <linux/pagemap.h>
21#include <linux/cdev.h>
22#include <linux/bootmem.h>
0eeca283 23#include <linux/inotify.h>
fc33a7bb 24#include <linux/mount.h>
efaee192 25#include <linux/async.h>
1da177e4
LT
26
27/*
28 * This is needed for the following functions:
29 * - inode_has_buffers
30 * - invalidate_inode_buffers
1da177e4
LT
31 * - invalidate_bdev
32 *
33 * FIXME: remove all knowledge of the buffer layer from this file
34 */
35#include <linux/buffer_head.h>
36
37/*
38 * New inode.c implementation.
39 *
40 * This implementation has the basic premise of trying
41 * to be extremely low-overhead and SMP-safe, yet be
42 * simple enough to be "obviously correct".
43 *
44 * Famous last words.
45 */
46
47/* inode dynamic allocation 1999, Andrea Arcangeli <andrea@suse.de> */
48
49/* #define INODE_PARANOIA 1 */
50/* #define INODE_DEBUG 1 */
51
52/*
53 * Inode lookup is no longer as critical as it used to be:
54 * most of the lookups are going to be through the dcache.
55 */
56#define I_HASHBITS i_hash_shift
57#define I_HASHMASK i_hash_mask
58
fa3536cc
ED
59static unsigned int i_hash_mask __read_mostly;
60static unsigned int i_hash_shift __read_mostly;
1da177e4
LT
61
62/*
63 * Each inode can be on two separate lists. One is
64 * the hash list of the inode, used for lookups. The
65 * other linked list is the "type" list:
66 * "in_use" - valid inode, i_count > 0, i_nlink > 0
67 * "dirty" - as "in_use" but also dirty
68 * "unused" - valid inode, i_count = 0
69 *
70 * A "dirty" list is maintained for each super block,
71 * allowing for low-overhead inode sync() operations.
72 */
73
74LIST_HEAD(inode_in_use);
75LIST_HEAD(inode_unused);
fa3536cc 76static struct hlist_head *inode_hashtable __read_mostly;
1da177e4
LT
77
78/*
79 * A simple spinlock to protect the list manipulations.
80 *
81 * NOTE! You also have to own the lock if you change
82 * the i_state of an inode while it is in use..
83 */
84DEFINE_SPINLOCK(inode_lock);
85
86/*
f24075bd 87 * iprune_mutex provides exclusion between the kswapd or try_to_free_pages
1da177e4
LT
88 * icache shrinking path, and the umount path. Without this exclusion,
89 * by the time prune_icache calls iput for the inode whose pages it has
90 * been invalidating, or by the time it calls clear_inode & destroy_inode
91 * from its final dispose_list, the struct super_block they refer to
92 * (for inode->i_sb->s_op) may already have been freed and reused.
93 */
bdfc3266 94static DEFINE_MUTEX(iprune_mutex);
1da177e4
LT
95
96/*
97 * Statistics gathering..
98 */
99struct inodes_stat_t inodes_stat;
100
e18b890b 101static struct kmem_cache * inode_cachep __read_mostly;
1da177e4 102
1c0eeaf5
JE
103static void wake_up_inode(struct inode *inode)
104{
105 /*
106 * Prevent speculative execution through spin_unlock(&inode_lock);
107 */
108 smp_mb();
109 wake_up_bit(&inode->i_state, __I_LOCK);
110}
111
2cb1599f
DC
112/**
113 * inode_init_always - perform inode structure intialisation
0bc02f3f
RD
114 * @sb: superblock inode belongs to
115 * @inode: inode to initialise
2cb1599f
DC
116 *
117 * These are initializations that need to be done on every inode
118 * allocation as the fields are not initialised by slab allocation.
119 */
120struct inode *inode_init_always(struct super_block *sb, struct inode *inode)
1da177e4 121{
f5e54d6e 122 static const struct address_space_operations empty_aops;
1da177e4 123 static struct inode_operations empty_iops;
99ac48f5 124 static const struct file_operations empty_fops;
1da177e4 125
2cb1599f
DC
126 struct address_space * const mapping = &inode->i_data;
127
128 inode->i_sb = sb;
129 inode->i_blkbits = sb->s_blocksize_bits;
130 inode->i_flags = 0;
131 atomic_set(&inode->i_count, 1);
132 inode->i_op = &empty_iops;
133 inode->i_fop = &empty_fops;
134 inode->i_nlink = 1;
56ff5efa
AV
135 inode->i_uid = 0;
136 inode->i_gid = 0;
2cb1599f
DC
137 atomic_set(&inode->i_writecount, 0);
138 inode->i_size = 0;
139 inode->i_blocks = 0;
140 inode->i_bytes = 0;
141 inode->i_generation = 0;
1da177e4 142#ifdef CONFIG_QUOTA
2cb1599f 143 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
1da177e4 144#endif
2cb1599f
DC
145 inode->i_pipe = NULL;
146 inode->i_bdev = NULL;
147 inode->i_cdev = NULL;
148 inode->i_rdev = 0;
149 inode->dirtied_when = 0;
150 if (security_inode_alloc(inode)) {
151 if (inode->i_sb->s_op->destroy_inode)
152 inode->i_sb->s_op->destroy_inode(inode);
153 else
154 kmem_cache_free(inode_cachep, (inode));
155 return NULL;
1da177e4 156 }
2cb1599f
DC
157
158 spin_lock_init(&inode->i_lock);
159 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
160
161 mutex_init(&inode->i_mutex);
162 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
163
164 init_rwsem(&inode->i_alloc_sem);
165 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
166
167 mapping->a_ops = &empty_aops;
168 mapping->host = inode;
169 mapping->flags = 0;
3c1d4378 170 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
2cb1599f
DC
171 mapping->assoc_mapping = NULL;
172 mapping->backing_dev_info = &default_backing_dev_info;
173 mapping->writeback_index = 0;
174
175 /*
176 * If the block_device provides a backing_dev_info for client
177 * inodes then use that. Otherwise the inode share the bdev's
178 * backing_dev_info.
179 */
180 if (sb->s_bdev) {
181 struct backing_dev_info *bdi;
182
183 bdi = sb->s_bdev->bd_inode_backing_dev_info;
184 if (!bdi)
185 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
186 mapping->backing_dev_info = bdi;
187 }
188 inode->i_private = NULL;
189 inode->i_mapping = mapping;
190
1da177e4
LT
191 return inode;
192}
2cb1599f
DC
193EXPORT_SYMBOL(inode_init_always);
194
195static struct inode *alloc_inode(struct super_block *sb)
196{
197 struct inode *inode;
198
199 if (sb->s_op->alloc_inode)
200 inode = sb->s_op->alloc_inode(sb);
201 else
202 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
203
204 if (inode)
205 return inode_init_always(sb, inode);
206 return NULL;
207}
1da177e4
LT
208
209void destroy_inode(struct inode *inode)
210{
b7542f8c 211 BUG_ON(inode_has_buffers(inode));
1da177e4
LT
212 security_inode_free(inode);
213 if (inode->i_sb->s_op->destroy_inode)
214 inode->i_sb->s_op->destroy_inode(inode);
215 else
216 kmem_cache_free(inode_cachep, (inode));
217}
087e3b04 218EXPORT_SYMBOL(destroy_inode);
1da177e4
LT
219
220
221/*
222 * These are initializations that only need to be done
223 * once, because the fields are idempotent across use
224 * of the inode, so let the slab aware of that.
225 */
226void inode_init_once(struct inode *inode)
227{
228 memset(inode, 0, sizeof(*inode));
229 INIT_HLIST_NODE(&inode->i_hash);
230 INIT_LIST_HEAD(&inode->i_dentry);
231 INIT_LIST_HEAD(&inode->i_devices);
1da177e4 232 INIT_RADIX_TREE(&inode->i_data.page_tree, GFP_ATOMIC);
19fd6231 233 spin_lock_init(&inode->i_data.tree_lock);
1da177e4
LT
234 spin_lock_init(&inode->i_data.i_mmap_lock);
235 INIT_LIST_HEAD(&inode->i_data.private_list);
236 spin_lock_init(&inode->i_data.private_lock);
237 INIT_RAW_PRIO_TREE_ROOT(&inode->i_data.i_mmap);
238 INIT_LIST_HEAD(&inode->i_data.i_mmap_nonlinear);
1da177e4 239 i_size_ordered_init(inode);
0eeca283
RL
240#ifdef CONFIG_INOTIFY
241 INIT_LIST_HEAD(&inode->inotify_watches);
d4f9af9d 242 mutex_init(&inode->inotify_mutex);
0eeca283 243#endif
1da177e4
LT
244}
245
246EXPORT_SYMBOL(inode_init_once);
247
51cc5068 248static void init_once(void *foo)
1da177e4
LT
249{
250 struct inode * inode = (struct inode *) foo;
251
a35afb83 252 inode_init_once(inode);
1da177e4
LT
253}
254
255/*
256 * inode_lock must be held
257 */
258void __iget(struct inode * inode)
259{
260 if (atomic_read(&inode->i_count)) {
261 atomic_inc(&inode->i_count);
262 return;
263 }
264 atomic_inc(&inode->i_count);
1c0eeaf5 265 if (!(inode->i_state & (I_DIRTY|I_SYNC)))
1da177e4
LT
266 list_move(&inode->i_list, &inode_in_use);
267 inodes_stat.nr_unused--;
268}
269
270/**
271 * clear_inode - clear an inode
272 * @inode: inode to clear
273 *
274 * This is called by the filesystem to tell us
275 * that the inode is no longer useful. We just
276 * terminate it with extreme prejudice.
277 */
278void clear_inode(struct inode *inode)
279{
280 might_sleep();
281 invalidate_inode_buffers(inode);
282
b7542f8c
ES
283 BUG_ON(inode->i_data.nrpages);
284 BUG_ON(!(inode->i_state & I_FREEING));
285 BUG_ON(inode->i_state & I_CLEAR);
1c0eeaf5 286 inode_sync_wait(inode);
1da177e4 287 DQUOT_DROP(inode);
acb0c854 288 if (inode->i_sb->s_op->clear_inode)
1da177e4 289 inode->i_sb->s_op->clear_inode(inode);
eaf796e7 290 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
1da177e4 291 bd_forget(inode);
577c4eb0 292 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
1da177e4
LT
293 cd_forget(inode);
294 inode->i_state = I_CLEAR;
295}
296
297EXPORT_SYMBOL(clear_inode);
298
299/*
300 * dispose_list - dispose of the contents of a local list
301 * @head: the head of the list to free
302 *
303 * Dispose-list gets a local list with local inodes in it, so it doesn't
304 * need to worry about list corruption and SMP locks.
305 */
306static void dispose_list(struct list_head *head)
307{
308 int nr_disposed = 0;
309
310 while (!list_empty(head)) {
311 struct inode *inode;
312
b5e61818 313 inode = list_first_entry(head, struct inode, i_list);
1da177e4
LT
314 list_del(&inode->i_list);
315
316 if (inode->i_data.nrpages)
317 truncate_inode_pages(&inode->i_data, 0);
318 clear_inode(inode);
4120db47
AB
319
320 spin_lock(&inode_lock);
321 hlist_del_init(&inode->i_hash);
322 list_del_init(&inode->i_sb_list);
323 spin_unlock(&inode_lock);
324
325 wake_up_inode(inode);
1da177e4
LT
326 destroy_inode(inode);
327 nr_disposed++;
328 }
329 spin_lock(&inode_lock);
330 inodes_stat.nr_inodes -= nr_disposed;
331 spin_unlock(&inode_lock);
332}
333
334/*
335 * Invalidate all inodes for a device.
336 */
337static int invalidate_list(struct list_head *head, struct list_head *dispose)
338{
339 struct list_head *next;
340 int busy = 0, count = 0;
341
342 next = head->next;
343 for (;;) {
344 struct list_head * tmp = next;
345 struct inode * inode;
346
347 /*
348 * We can reschedule here without worrying about the list's
349 * consistency because the per-sb list of inodes must not
f24075bd 350 * change during umount anymore, and because iprune_mutex keeps
1da177e4
LT
351 * shrink_icache_memory() away.
352 */
353 cond_resched_lock(&inode_lock);
354
355 next = next->next;
356 if (tmp == head)
357 break;
358 inode = list_entry(tmp, struct inode, i_sb_list);
359 invalidate_inode_buffers(inode);
360 if (!atomic_read(&inode->i_count)) {
1da177e4 361 list_move(&inode->i_list, dispose);
7ef0d737 362 WARN_ON(inode->i_state & I_NEW);
1da177e4
LT
363 inode->i_state |= I_FREEING;
364 count++;
365 continue;
366 }
367 busy = 1;
368 }
369 /* only unused inodes may be cached with i_count zero */
370 inodes_stat.nr_unused -= count;
371 return busy;
372}
373
1da177e4
LT
374/**
375 * invalidate_inodes - discard the inodes on a device
376 * @sb: superblock
377 *
378 * Discard all of the inodes for a given superblock. If the discard
379 * fails because there are busy inodes then a non zero value is returned.
380 * If the discard is successful all the inodes have been discarded.
381 */
382int invalidate_inodes(struct super_block * sb)
383{
384 int busy;
385 LIST_HEAD(throw_away);
386
f24075bd 387 mutex_lock(&iprune_mutex);
1da177e4 388 spin_lock(&inode_lock);
0eeca283 389 inotify_unmount_inodes(&sb->s_inodes);
1da177e4
LT
390 busy = invalidate_list(&sb->s_inodes, &throw_away);
391 spin_unlock(&inode_lock);
392
393 dispose_list(&throw_away);
f24075bd 394 mutex_unlock(&iprune_mutex);
1da177e4
LT
395
396 return busy;
397}
398
399EXPORT_SYMBOL(invalidate_inodes);
1da177e4
LT
400
401static int can_unuse(struct inode *inode)
402{
403 if (inode->i_state)
404 return 0;
405 if (inode_has_buffers(inode))
406 return 0;
407 if (atomic_read(&inode->i_count))
408 return 0;
409 if (inode->i_data.nrpages)
410 return 0;
411 return 1;
412}
413
414/*
415 * Scan `goal' inodes on the unused list for freeable ones. They are moved to
416 * a temporary list and then are freed outside inode_lock by dispose_list().
417 *
418 * Any inodes which are pinned purely because of attached pagecache have their
419 * pagecache removed. We expect the final iput() on that inode to add it to
420 * the front of the inode_unused list. So look for it there and if the
421 * inode is still freeable, proceed. The right inode is found 99.9% of the
422 * time in testing on a 4-way.
423 *
424 * If the inode has metadata buffers attached to mapping->private_list then
425 * try to remove them.
426 */
427static void prune_icache(int nr_to_scan)
428{
429 LIST_HEAD(freeable);
430 int nr_pruned = 0;
431 int nr_scanned;
432 unsigned long reap = 0;
433
f24075bd 434 mutex_lock(&iprune_mutex);
1da177e4
LT
435 spin_lock(&inode_lock);
436 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
437 struct inode *inode;
438
439 if (list_empty(&inode_unused))
440 break;
441
442 inode = list_entry(inode_unused.prev, struct inode, i_list);
443
444 if (inode->i_state || atomic_read(&inode->i_count)) {
445 list_move(&inode->i_list, &inode_unused);
446 continue;
447 }
448 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
449 __iget(inode);
450 spin_unlock(&inode_lock);
451 if (remove_inode_buffers(inode))
fc0ecff6
AM
452 reap += invalidate_mapping_pages(&inode->i_data,
453 0, -1);
1da177e4
LT
454 iput(inode);
455 spin_lock(&inode_lock);
456
457 if (inode != list_entry(inode_unused.next,
458 struct inode, i_list))
459 continue; /* wrong inode or list_empty */
460 if (!can_unuse(inode))
461 continue;
462 }
1da177e4 463 list_move(&inode->i_list, &freeable);
7ef0d737 464 WARN_ON(inode->i_state & I_NEW);
1da177e4
LT
465 inode->i_state |= I_FREEING;
466 nr_pruned++;
467 }
468 inodes_stat.nr_unused -= nr_pruned;
f8891e5e
CL
469 if (current_is_kswapd())
470 __count_vm_events(KSWAPD_INODESTEAL, reap);
471 else
472 __count_vm_events(PGINODESTEAL, reap);
1da177e4
LT
473 spin_unlock(&inode_lock);
474
475 dispose_list(&freeable);
f24075bd 476 mutex_unlock(&iprune_mutex);
1da177e4
LT
477}
478
479/*
480 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
481 * "unused" means that no dentries are referring to the inodes: the files are
482 * not open and the dcache references to those inodes have already been
483 * reclaimed.
484 *
485 * This function is passed the number of inodes to scan, and it returns the
486 * total number of remaining possibly-reclaimable inodes.
487 */
27496a8c 488static int shrink_icache_memory(int nr, gfp_t gfp_mask)
1da177e4
LT
489{
490 if (nr) {
491 /*
492 * Nasty deadlock avoidance. We may hold various FS locks,
493 * and we don't want to recurse into the FS that called us
494 * in clear_inode() and friends..
495 */
496 if (!(gfp_mask & __GFP_FS))
497 return -1;
498 prune_icache(nr);
499 }
500 return (inodes_stat.nr_unused / 100) * sysctl_vfs_cache_pressure;
501}
502
8e1f936b
RR
503static struct shrinker icache_shrinker = {
504 .shrink = shrink_icache_memory,
505 .seeks = DEFAULT_SEEKS,
506};
507
1da177e4
LT
508static void __wait_on_freeing_inode(struct inode *inode);
509/*
510 * Called with the inode lock held.
511 * NOTE: we are not increasing the inode-refcount, you must call __iget()
512 * by hand after calling find_inode now! This simplifies iunique and won't
513 * add any additional branch in the common code.
514 */
515static struct inode * find_inode(struct super_block * sb, struct hlist_head *head, int (*test)(struct inode *, void *), void *data)
516{
517 struct hlist_node *node;
518 struct inode * inode = NULL;
519
520repeat:
c5c8be3c 521 hlist_for_each_entry(inode, node, head, i_hash) {
1da177e4
LT
522 if (inode->i_sb != sb)
523 continue;
524 if (!test(inode, data))
525 continue;
991114c6 526 if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)) {
1da177e4
LT
527 __wait_on_freeing_inode(inode);
528 goto repeat;
529 }
530 break;
531 }
532 return node ? inode : NULL;
533}
534
535/*
536 * find_inode_fast is the fast path version of find_inode, see the comment at
537 * iget_locked for details.
538 */
539static struct inode * find_inode_fast(struct super_block * sb, struct hlist_head *head, unsigned long ino)
540{
541 struct hlist_node *node;
542 struct inode * inode = NULL;
543
544repeat:
c5c8be3c 545 hlist_for_each_entry(inode, node, head, i_hash) {
1da177e4
LT
546 if (inode->i_ino != ino)
547 continue;
548 if (inode->i_sb != sb)
549 continue;
991114c6 550 if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)) {
1da177e4
LT
551 __wait_on_freeing_inode(inode);
552 goto repeat;
553 }
554 break;
555 }
556 return node ? inode : NULL;
557}
558
8290c35f
DC
559static unsigned long hash(struct super_block *sb, unsigned long hashval)
560{
561 unsigned long tmp;
562
563 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
564 L1_CACHE_BYTES;
565 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
566 return tmp & I_HASHMASK;
567}
568
569static inline void
570__inode_add_to_lists(struct super_block *sb, struct hlist_head *head,
571 struct inode *inode)
572{
573 inodes_stat.nr_inodes++;
574 list_add(&inode->i_list, &inode_in_use);
575 list_add(&inode->i_sb_list, &sb->s_inodes);
576 if (head)
577 hlist_add_head(&inode->i_hash, head);
578}
579
580/**
581 * inode_add_to_lists - add a new inode to relevant lists
0bc02f3f
RD
582 * @sb: superblock inode belongs to
583 * @inode: inode to mark in use
8290c35f
DC
584 *
585 * When an inode is allocated it needs to be accounted for, added to the in use
586 * list, the owning superblock and the inode hash. This needs to be done under
587 * the inode_lock, so export a function to do this rather than the inode lock
588 * itself. We calculate the hash list to add to here so it is all internal
589 * which requires the caller to have already set up the inode number in the
590 * inode to add.
591 */
592void inode_add_to_lists(struct super_block *sb, struct inode *inode)
593{
594 struct hlist_head *head = inode_hashtable + hash(sb, inode->i_ino);
595
596 spin_lock(&inode_lock);
597 __inode_add_to_lists(sb, head, inode);
598 spin_unlock(&inode_lock);
599}
600EXPORT_SYMBOL_GPL(inode_add_to_lists);
601
1da177e4
LT
602/**
603 * new_inode - obtain an inode
604 * @sb: superblock
605 *
769848c0 606 * Allocates a new inode for given superblock. The default gfp_mask
3c1d4378 607 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
769848c0
MG
608 * If HIGHMEM pages are unsuitable or it is known that pages allocated
609 * for the page cache are not reclaimable or migratable,
610 * mapping_set_gfp_mask() must be called with suitable flags on the
611 * newly created inode's mapping
612 *
1da177e4
LT
613 */
614struct inode *new_inode(struct super_block *sb)
615{
866b04fc
JL
616 /*
617 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
618 * error if st_ino won't fit in target struct field. Use 32bit counter
619 * here to attempt to avoid that.
620 */
621 static unsigned int last_ino;
1da177e4
LT
622 struct inode * inode;
623
624 spin_lock_prefetch(&inode_lock);
625
626 inode = alloc_inode(sb);
627 if (inode) {
628 spin_lock(&inode_lock);
8290c35f 629 __inode_add_to_lists(sb, NULL, inode);
1da177e4
LT
630 inode->i_ino = ++last_ino;
631 inode->i_state = 0;
632 spin_unlock(&inode_lock);
633 }
634 return inode;
635}
636
637EXPORT_SYMBOL(new_inode);
638
639void unlock_new_inode(struct inode *inode)
640{
14358e6d 641#ifdef CONFIG_DEBUG_LOCK_ALLOC
1e89a5e1
PZ
642 if (inode->i_mode & S_IFDIR) {
643 struct file_system_type *type = inode->i_sb->s_type;
644
645 /*
646 * ensure nobody is actually holding i_mutex
647 */
648 mutex_destroy(&inode->i_mutex);
649 mutex_init(&inode->i_mutex);
14358e6d 650 lockdep_set_class(&inode->i_mutex, &type->i_mutex_dir_key);
1e89a5e1 651 }
14358e6d 652#endif
1da177e4
LT
653 /*
654 * This is special! We do not need the spinlock
655 * when clearing I_LOCK, because we're guaranteed
656 * that nobody else tries to do anything about the
657 * state of the inode when it is locked, as we
658 * just created it (so there can be no old holders
659 * that haven't tested I_LOCK).
660 */
7ef0d737 661 WARN_ON((inode->i_state & (I_LOCK|I_NEW)) != (I_LOCK|I_NEW));
1da177e4
LT
662 inode->i_state &= ~(I_LOCK|I_NEW);
663 wake_up_inode(inode);
664}
665
666EXPORT_SYMBOL(unlock_new_inode);
667
668/*
669 * This is called without the inode lock held.. Be careful.
670 *
671 * We no longer cache the sb_flags in i_flags - see fs.h
672 * -- rmk@arm.uk.linux.org
673 */
674static struct inode * get_new_inode(struct super_block *sb, struct hlist_head *head, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *data)
675{
676 struct inode * inode;
677
678 inode = alloc_inode(sb);
679 if (inode) {
680 struct inode * old;
681
682 spin_lock(&inode_lock);
683 /* We released the lock, so.. */
684 old = find_inode(sb, head, test, data);
685 if (!old) {
686 if (set(inode, data))
687 goto set_failed;
688
8290c35f 689 __inode_add_to_lists(sb, head, inode);
1da177e4
LT
690 inode->i_state = I_LOCK|I_NEW;
691 spin_unlock(&inode_lock);
692
693 /* Return the locked inode with I_NEW set, the
694 * caller is responsible for filling in the contents
695 */
696 return inode;
697 }
698
699 /*
700 * Uhhuh, somebody else created the same inode under
701 * us. Use the old inode instead of the one we just
702 * allocated.
703 */
704 __iget(old);
705 spin_unlock(&inode_lock);
706 destroy_inode(inode);
707 inode = old;
708 wait_on_inode(inode);
709 }
710 return inode;
711
712set_failed:
713 spin_unlock(&inode_lock);
714 destroy_inode(inode);
715 return NULL;
716}
717
718/*
719 * get_new_inode_fast is the fast path version of get_new_inode, see the
720 * comment at iget_locked for details.
721 */
722static struct inode * get_new_inode_fast(struct super_block *sb, struct hlist_head *head, unsigned long ino)
723{
724 struct inode * inode;
725
726 inode = alloc_inode(sb);
727 if (inode) {
728 struct inode * old;
729
730 spin_lock(&inode_lock);
731 /* We released the lock, so.. */
732 old = find_inode_fast(sb, head, ino);
733 if (!old) {
734 inode->i_ino = ino;
8290c35f 735 __inode_add_to_lists(sb, head, inode);
1da177e4
LT
736 inode->i_state = I_LOCK|I_NEW;
737 spin_unlock(&inode_lock);
738
739 /* Return the locked inode with I_NEW set, the
740 * caller is responsible for filling in the contents
741 */
742 return inode;
743 }
744
745 /*
746 * Uhhuh, somebody else created the same inode under
747 * us. Use the old inode instead of the one we just
748 * allocated.
749 */
750 __iget(old);
751 spin_unlock(&inode_lock);
752 destroy_inode(inode);
753 inode = old;
754 wait_on_inode(inode);
755 }
756 return inode;
757}
758
1da177e4
LT
759/**
760 * iunique - get a unique inode number
761 * @sb: superblock
762 * @max_reserved: highest reserved inode number
763 *
764 * Obtain an inode number that is unique on the system for a given
765 * superblock. This is used by file systems that have no natural
766 * permanent inode numbering system. An inode number is returned that
767 * is higher than the reserved limit but unique.
768 *
769 * BUGS:
770 * With a large number of inodes live on the file system this function
771 * currently becomes quite slow.
772 */
773ino_t iunique(struct super_block *sb, ino_t max_reserved)
774{
866b04fc
JL
775 /*
776 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
777 * error if st_ino won't fit in target struct field. Use 32bit counter
778 * here to attempt to avoid that.
779 */
780 static unsigned int counter;
1da177e4 781 struct inode *inode;
3361c7be 782 struct hlist_head *head;
1da177e4 783 ino_t res;
3361c7be 784
1da177e4 785 spin_lock(&inode_lock);
3361c7be
JL
786 do {
787 if (counter <= max_reserved)
788 counter = max_reserved + 1;
1da177e4 789 res = counter++;
3361c7be 790 head = inode_hashtable + hash(sb, res);
1da177e4 791 inode = find_inode_fast(sb, head, res);
3361c7be
JL
792 } while (inode != NULL);
793 spin_unlock(&inode_lock);
1da177e4 794
3361c7be
JL
795 return res;
796}
1da177e4
LT
797EXPORT_SYMBOL(iunique);
798
799struct inode *igrab(struct inode *inode)
800{
801 spin_lock(&inode_lock);
4a3b0a49 802 if (!(inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)))
1da177e4
LT
803 __iget(inode);
804 else
805 /*
806 * Handle the case where s_op->clear_inode is not been
807 * called yet, and somebody is calling igrab
808 * while the inode is getting freed.
809 */
810 inode = NULL;
811 spin_unlock(&inode_lock);
812 return inode;
813}
814
815EXPORT_SYMBOL(igrab);
816
817/**
818 * ifind - internal function, you want ilookup5() or iget5().
819 * @sb: super block of file system to search
820 * @head: the head of the list to search
821 * @test: callback used for comparisons between inodes
822 * @data: opaque data pointer to pass to @test
88bd5121 823 * @wait: if true wait for the inode to be unlocked, if false do not
1da177e4
LT
824 *
825 * ifind() searches for the inode specified by @data in the inode
826 * cache. This is a generalized version of ifind_fast() for file systems where
827 * the inode number is not sufficient for unique identification of an inode.
828 *
829 * If the inode is in the cache, the inode is returned with an incremented
830 * reference count.
831 *
832 * Otherwise NULL is returned.
833 *
834 * Note, @test is called with the inode_lock held, so can't sleep.
835 */
5d2bea45 836static struct inode *ifind(struct super_block *sb,
1da177e4 837 struct hlist_head *head, int (*test)(struct inode *, void *),
88bd5121 838 void *data, const int wait)
1da177e4
LT
839{
840 struct inode *inode;
841
842 spin_lock(&inode_lock);
843 inode = find_inode(sb, head, test, data);
844 if (inode) {
845 __iget(inode);
846 spin_unlock(&inode_lock);
88bd5121
AA
847 if (likely(wait))
848 wait_on_inode(inode);
1da177e4
LT
849 return inode;
850 }
851 spin_unlock(&inode_lock);
852 return NULL;
853}
854
855/**
856 * ifind_fast - internal function, you want ilookup() or iget().
857 * @sb: super block of file system to search
858 * @head: head of the list to search
859 * @ino: inode number to search for
860 *
861 * ifind_fast() searches for the inode @ino in the inode cache. This is for
862 * file systems where the inode number is sufficient for unique identification
863 * of an inode.
864 *
865 * If the inode is in the cache, the inode is returned with an incremented
866 * reference count.
867 *
868 * Otherwise NULL is returned.
869 */
5d2bea45 870static struct inode *ifind_fast(struct super_block *sb,
1da177e4
LT
871 struct hlist_head *head, unsigned long ino)
872{
873 struct inode *inode;
874
875 spin_lock(&inode_lock);
876 inode = find_inode_fast(sb, head, ino);
877 if (inode) {
878 __iget(inode);
879 spin_unlock(&inode_lock);
880 wait_on_inode(inode);
881 return inode;
882 }
883 spin_unlock(&inode_lock);
884 return NULL;
885}
886
887/**
88bd5121 888 * ilookup5_nowait - search for an inode in the inode cache
1da177e4
LT
889 * @sb: super block of file system to search
890 * @hashval: hash value (usually inode number) to search for
891 * @test: callback used for comparisons between inodes
892 * @data: opaque data pointer to pass to @test
893 *
894 * ilookup5() uses ifind() to search for the inode specified by @hashval and
895 * @data in the inode cache. This is a generalized version of ilookup() for
896 * file systems where the inode number is not sufficient for unique
897 * identification of an inode.
898 *
899 * If the inode is in the cache, the inode is returned with an incremented
88bd5121
AA
900 * reference count. Note, the inode lock is not waited upon so you have to be
901 * very careful what you do with the returned inode. You probably should be
902 * using ilookup5() instead.
903 *
904 * Otherwise NULL is returned.
905 *
906 * Note, @test is called with the inode_lock held, so can't sleep.
907 */
908struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
909 int (*test)(struct inode *, void *), void *data)
910{
911 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
912
913 return ifind(sb, head, test, data, 0);
914}
915
916EXPORT_SYMBOL(ilookup5_nowait);
917
918/**
919 * ilookup5 - search for an inode in the inode cache
920 * @sb: super block of file system to search
921 * @hashval: hash value (usually inode number) to search for
922 * @test: callback used for comparisons between inodes
923 * @data: opaque data pointer to pass to @test
924 *
925 * ilookup5() uses ifind() to search for the inode specified by @hashval and
926 * @data in the inode cache. This is a generalized version of ilookup() for
927 * file systems where the inode number is not sufficient for unique
928 * identification of an inode.
929 *
930 * If the inode is in the cache, the inode lock is waited upon and the inode is
931 * returned with an incremented reference count.
1da177e4
LT
932 *
933 * Otherwise NULL is returned.
934 *
935 * Note, @test is called with the inode_lock held, so can't sleep.
936 */
937struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
938 int (*test)(struct inode *, void *), void *data)
939{
940 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
941
88bd5121 942 return ifind(sb, head, test, data, 1);
1da177e4
LT
943}
944
945EXPORT_SYMBOL(ilookup5);
946
947/**
948 * ilookup - search for an inode in the inode cache
949 * @sb: super block of file system to search
950 * @ino: inode number to search for
951 *
952 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
953 * This is for file systems where the inode number is sufficient for unique
954 * identification of an inode.
955 *
956 * If the inode is in the cache, the inode is returned with an incremented
957 * reference count.
958 *
959 * Otherwise NULL is returned.
960 */
961struct inode *ilookup(struct super_block *sb, unsigned long ino)
962{
963 struct hlist_head *head = inode_hashtable + hash(sb, ino);
964
965 return ifind_fast(sb, head, ino);
966}
967
968EXPORT_SYMBOL(ilookup);
969
970/**
971 * iget5_locked - obtain an inode from a mounted file system
972 * @sb: super block of file system
973 * @hashval: hash value (usually inode number) to get
974 * @test: callback used for comparisons between inodes
975 * @set: callback used to initialize a new struct inode
976 * @data: opaque data pointer to pass to @test and @set
977 *
1da177e4
LT
978 * iget5_locked() uses ifind() to search for the inode specified by @hashval
979 * and @data in the inode cache and if present it is returned with an increased
980 * reference count. This is a generalized version of iget_locked() for file
981 * systems where the inode number is not sufficient for unique identification
982 * of an inode.
983 *
984 * If the inode is not in cache, get_new_inode() is called to allocate a new
985 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
986 * file system gets to fill it in before unlocking it via unlock_new_inode().
987 *
988 * Note both @test and @set are called with the inode_lock held, so can't sleep.
989 */
990struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
991 int (*test)(struct inode *, void *),
992 int (*set)(struct inode *, void *), void *data)
993{
994 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
995 struct inode *inode;
996
88bd5121 997 inode = ifind(sb, head, test, data, 1);
1da177e4
LT
998 if (inode)
999 return inode;
1000 /*
1001 * get_new_inode() will do the right thing, re-trying the search
1002 * in case it had to block at any point.
1003 */
1004 return get_new_inode(sb, head, test, set, data);
1005}
1006
1007EXPORT_SYMBOL(iget5_locked);
1008
1009/**
1010 * iget_locked - obtain an inode from a mounted file system
1011 * @sb: super block of file system
1012 * @ino: inode number to get
1013 *
1da177e4
LT
1014 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1015 * the inode cache and if present it is returned with an increased reference
1016 * count. This is for file systems where the inode number is sufficient for
1017 * unique identification of an inode.
1018 *
1019 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1020 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1021 * The file system gets to fill it in before unlocking it via
1022 * unlock_new_inode().
1023 */
1024struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1025{
1026 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1027 struct inode *inode;
1028
1029 inode = ifind_fast(sb, head, ino);
1030 if (inode)
1031 return inode;
1032 /*
1033 * get_new_inode_fast() will do the right thing, re-trying the search
1034 * in case it had to block at any point.
1035 */
1036 return get_new_inode_fast(sb, head, ino);
1037}
1038
1039EXPORT_SYMBOL(iget_locked);
1040
261bca86
AV
1041int insert_inode_locked(struct inode *inode)
1042{
1043 struct super_block *sb = inode->i_sb;
1044 ino_t ino = inode->i_ino;
1045 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1046 struct inode *old;
1047
1048 inode->i_state |= I_LOCK|I_NEW;
1049 while (1) {
1050 spin_lock(&inode_lock);
1051 old = find_inode_fast(sb, head, ino);
1052 if (likely(!old)) {
1053 hlist_add_head(&inode->i_hash, head);
1054 spin_unlock(&inode_lock);
1055 return 0;
1056 }
1057 __iget(old);
1058 spin_unlock(&inode_lock);
1059 wait_on_inode(old);
1060 if (unlikely(!hlist_unhashed(&old->i_hash))) {
1061 iput(old);
1062 return -EBUSY;
1063 }
1064 iput(old);
1065 }
1066}
1067
1068EXPORT_SYMBOL(insert_inode_locked);
1069
1070int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1071 int (*test)(struct inode *, void *), void *data)
1072{
1073 struct super_block *sb = inode->i_sb;
1074 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1075 struct inode *old;
1076
1077 inode->i_state |= I_LOCK|I_NEW;
1078
1079 while (1) {
1080 spin_lock(&inode_lock);
1081 old = find_inode(sb, head, test, data);
1082 if (likely(!old)) {
1083 hlist_add_head(&inode->i_hash, head);
1084 spin_unlock(&inode_lock);
1085 return 0;
1086 }
1087 __iget(old);
1088 spin_unlock(&inode_lock);
1089 wait_on_inode(old);
1090 if (unlikely(!hlist_unhashed(&old->i_hash))) {
1091 iput(old);
1092 return -EBUSY;
1093 }
1094 iput(old);
1095 }
1096}
1097
1098EXPORT_SYMBOL(insert_inode_locked4);
1099
1da177e4
LT
1100/**
1101 * __insert_inode_hash - hash an inode
1102 * @inode: unhashed inode
1103 * @hashval: unsigned long value used to locate this object in the
1104 * inode_hashtable.
1105 *
1106 * Add an inode to the inode hash for this superblock.
1107 */
1108void __insert_inode_hash(struct inode *inode, unsigned long hashval)
1109{
1110 struct hlist_head *head = inode_hashtable + hash(inode->i_sb, hashval);
1111 spin_lock(&inode_lock);
1112 hlist_add_head(&inode->i_hash, head);
1113 spin_unlock(&inode_lock);
1114}
1115
1116EXPORT_SYMBOL(__insert_inode_hash);
1117
1118/**
1119 * remove_inode_hash - remove an inode from the hash
1120 * @inode: inode to unhash
1121 *
1122 * Remove an inode from the superblock.
1123 */
1124void remove_inode_hash(struct inode *inode)
1125{
1126 spin_lock(&inode_lock);
1127 hlist_del_init(&inode->i_hash);
1128 spin_unlock(&inode_lock);
1129}
1130
1131EXPORT_SYMBOL(remove_inode_hash);
1132
1133/*
1134 * Tell the filesystem that this inode is no longer of any interest and should
1135 * be completely destroyed.
1136 *
1137 * We leave the inode in the inode hash table until *after* the filesystem's
1138 * ->delete_inode completes. This ensures that an iget (such as nfsd might
1139 * instigate) will always find up-to-date information either in the hash or on
1140 * disk.
1141 *
1142 * I_FREEING is set so that no-one will take a new reference to the inode while
1143 * it is being deleted.
1144 */
b32714ba 1145void generic_delete_inode(struct inode *inode)
1da177e4 1146{
ee9b6d61 1147 const struct super_operations *op = inode->i_sb->s_op;
1da177e4 1148
b32714ba
AV
1149 list_del_init(&inode->i_list);
1150 list_del_init(&inode->i_sb_list);
7ef0d737 1151 WARN_ON(inode->i_state & I_NEW);
b32714ba
AV
1152 inode->i_state |= I_FREEING;
1153 inodes_stat.nr_inodes--;
1154 spin_unlock(&inode_lock);
1155
1da177e4
LT
1156 security_inode_delete(inode);
1157
1158 if (op->delete_inode) {
1159 void (*delete)(struct inode *) = op->delete_inode;
1160 if (!is_bad_inode(inode))
1161 DQUOT_INIT(inode);
e85b5652
MF
1162 /* Filesystems implementing their own
1163 * s_op->delete_inode are required to call
1164 * truncate_inode_pages and clear_inode()
1165 * internally */
1da177e4 1166 delete(inode);
e85b5652
MF
1167 } else {
1168 truncate_inode_pages(&inode->i_data, 0);
1da177e4 1169 clear_inode(inode);
e85b5652 1170 }
1da177e4
LT
1171 spin_lock(&inode_lock);
1172 hlist_del_init(&inode->i_hash);
1173 spin_unlock(&inode_lock);
1174 wake_up_inode(inode);
b7542f8c 1175 BUG_ON(inode->i_state != I_CLEAR);
1da177e4
LT
1176 destroy_inode(inode);
1177}
1178
1179EXPORT_SYMBOL(generic_delete_inode);
1180
1181static void generic_forget_inode(struct inode *inode)
1182{
1183 struct super_block *sb = inode->i_sb;
1184
1185 if (!hlist_unhashed(&inode->i_hash)) {
1c0eeaf5 1186 if (!(inode->i_state & (I_DIRTY|I_SYNC)))
1da177e4
LT
1187 list_move(&inode->i_list, &inode_unused);
1188 inodes_stat.nr_unused++;
acb0c854 1189 if (sb->s_flags & MS_ACTIVE) {
991114c6 1190 spin_unlock(&inode_lock);
1da177e4 1191 return;
991114c6 1192 }
7ef0d737 1193 WARN_ON(inode->i_state & I_NEW);
991114c6
AV
1194 inode->i_state |= I_WILL_FREE;
1195 spin_unlock(&inode_lock);
1da177e4
LT
1196 write_inode_now(inode, 1);
1197 spin_lock(&inode_lock);
7ef0d737 1198 WARN_ON(inode->i_state & I_NEW);
991114c6 1199 inode->i_state &= ~I_WILL_FREE;
1da177e4
LT
1200 inodes_stat.nr_unused--;
1201 hlist_del_init(&inode->i_hash);
1202 }
1203 list_del_init(&inode->i_list);
1204 list_del_init(&inode->i_sb_list);
7ef0d737 1205 WARN_ON(inode->i_state & I_NEW);
991114c6 1206 inode->i_state |= I_FREEING;
1da177e4
LT
1207 inodes_stat.nr_inodes--;
1208 spin_unlock(&inode_lock);
1209 if (inode->i_data.nrpages)
1210 truncate_inode_pages(&inode->i_data, 0);
1211 clear_inode(inode);
7f04c26d 1212 wake_up_inode(inode);
1da177e4
LT
1213 destroy_inode(inode);
1214}
1215
1216/*
1217 * Normal UNIX filesystem behaviour: delete the
1218 * inode when the usage count drops to zero, and
1219 * i_nlink is zero.
1220 */
cb2c0233 1221void generic_drop_inode(struct inode *inode)
1da177e4
LT
1222{
1223 if (!inode->i_nlink)
1224 generic_delete_inode(inode);
1225 else
1226 generic_forget_inode(inode);
1227}
1228
cb2c0233
MF
1229EXPORT_SYMBOL_GPL(generic_drop_inode);
1230
1da177e4
LT
1231/*
1232 * Called when we're dropping the last reference
1233 * to an inode.
1234 *
1235 * Call the FS "drop()" function, defaulting to
1236 * the legacy UNIX filesystem behaviour..
1237 *
1238 * NOTE! NOTE! NOTE! We're called with the inode lock
1239 * held, and the drop function is supposed to release
1240 * the lock!
1241 */
1242static inline void iput_final(struct inode *inode)
1243{
ee9b6d61 1244 const struct super_operations *op = inode->i_sb->s_op;
1da177e4
LT
1245 void (*drop)(struct inode *) = generic_drop_inode;
1246
1247 if (op && op->drop_inode)
1248 drop = op->drop_inode;
1249 drop(inode);
1250}
1251
1252/**
1253 * iput - put an inode
1254 * @inode: inode to put
1255 *
1256 * Puts an inode, dropping its usage count. If the inode use count hits
1257 * zero, the inode is then freed and may also be destroyed.
1258 *
1259 * Consequently, iput() can sleep.
1260 */
1261void iput(struct inode *inode)
1262{
1263 if (inode) {
1da177e4
LT
1264 BUG_ON(inode->i_state == I_CLEAR);
1265
1da177e4
LT
1266 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1267 iput_final(inode);
1268 }
1269}
1270
1271EXPORT_SYMBOL(iput);
1272
1273/**
1274 * bmap - find a block number in a file
1275 * @inode: inode of file
1276 * @block: block to find
1277 *
1278 * Returns the block number on the device holding the inode that
1279 * is the disk block number for the block of the file requested.
1280 * That is, asked for block 4 of inode 1 the function will return the
1281 * disk block relative to the disk start that holds that block of the
1282 * file.
1283 */
1284sector_t bmap(struct inode * inode, sector_t block)
1285{
1286 sector_t res = 0;
1287 if (inode->i_mapping->a_ops->bmap)
1288 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1289 return res;
1290}
1da177e4
LT
1291EXPORT_SYMBOL(bmap);
1292
11ff6f05
MG
1293/*
1294 * With relative atime, only update atime if the previous atime is
1295 * earlier than either the ctime or mtime or if at least a day has
1296 * passed since the last atime update.
1297 */
1298static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1299 struct timespec now)
1300{
1301
1302 if (!(mnt->mnt_flags & MNT_RELATIME))
1303 return 1;
1304 /*
1305 * Is mtime younger than atime? If yes, update atime:
1306 */
1307 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1308 return 1;
1309 /*
1310 * Is ctime younger than atime? If yes, update atime:
1311 */
1312 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1313 return 1;
1314
1315 /*
1316 * Is the previous atime value older than a day? If yes,
1317 * update atime:
1318 */
1319 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1320 return 1;
1321 /*
1322 * Good, we can skip the atime update:
1323 */
1324 return 0;
1325}
1326
1da177e4 1327/**
869243a0
CH
1328 * touch_atime - update the access time
1329 * @mnt: mount the inode is accessed on
7045f37b 1330 * @dentry: dentry accessed
1da177e4
LT
1331 *
1332 * Update the accessed time on an inode and mark it for writeback.
1333 * This function automatically handles read only file systems and media,
1334 * as well as the "noatime" flag and inode specific "noatime" markers.
1335 */
869243a0 1336void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
1da177e4 1337{
869243a0 1338 struct inode *inode = dentry->d_inode;
1da177e4
LT
1339 struct timespec now;
1340
cdb70f3f 1341 if (mnt_want_write(mnt))
b2276138 1342 return;
cdb70f3f
DH
1343 if (inode->i_flags & S_NOATIME)
1344 goto out;
37756ced 1345 if (IS_NOATIME(inode))
cdb70f3f 1346 goto out;
b2276138 1347 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
cdb70f3f 1348 goto out;
47ae32d6 1349
cdb70f3f
DH
1350 if (mnt->mnt_flags & MNT_NOATIME)
1351 goto out;
1352 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
1353 goto out;
1da177e4
LT
1354
1355 now = current_fs_time(inode->i_sb);
11ff6f05
MG
1356
1357 if (!relatime_need_update(mnt, inode, now))
1358 goto out;
1359
47ae32d6 1360 if (timespec_equal(&inode->i_atime, &now))
cdb70f3f 1361 goto out;
47ae32d6
VH
1362
1363 inode->i_atime = now;
1364 mark_inode_dirty_sync(inode);
cdb70f3f
DH
1365out:
1366 mnt_drop_write(mnt);
1da177e4 1367}
869243a0 1368EXPORT_SYMBOL(touch_atime);
1da177e4
LT
1369
1370/**
870f4817
CH
1371 * file_update_time - update mtime and ctime time
1372 * @file: file accessed
1da177e4 1373 *
870f4817
CH
1374 * Update the mtime and ctime members of an inode and mark the inode
1375 * for writeback. Note that this function is meant exclusively for
1376 * usage in the file write path of filesystems, and filesystems may
1377 * choose to explicitly ignore update via this function with the
1378 * S_NOCTIME inode flag, e.g. for network filesystem where these
1379 * timestamps are handled by the server.
1da177e4
LT
1380 */
1381
870f4817 1382void file_update_time(struct file *file)
1da177e4 1383{
0f7fc9e4 1384 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
1385 struct timespec now;
1386 int sync_it = 0;
20ddee2c 1387 int err;
1da177e4
LT
1388
1389 if (IS_NOCMTIME(inode))
1390 return;
20ddee2c
DH
1391
1392 err = mnt_want_write(file->f_path.mnt);
1393 if (err)
1da177e4
LT
1394 return;
1395
1396 now = current_fs_time(inode->i_sb);
ed97bd37
AM
1397 if (!timespec_equal(&inode->i_mtime, &now)) {
1398 inode->i_mtime = now;
1da177e4 1399 sync_it = 1;
ed97bd37 1400 }
1da177e4 1401
ed97bd37
AM
1402 if (!timespec_equal(&inode->i_ctime, &now)) {
1403 inode->i_ctime = now;
870f4817 1404 sync_it = 1;
ed97bd37 1405 }
870f4817 1406
7a224228
JNC
1407 if (IS_I_VERSION(inode)) {
1408 inode_inc_iversion(inode);
1409 sync_it = 1;
1410 }
1411
1da177e4
LT
1412 if (sync_it)
1413 mark_inode_dirty_sync(inode);
20ddee2c 1414 mnt_drop_write(file->f_path.mnt);
1da177e4
LT
1415}
1416
870f4817 1417EXPORT_SYMBOL(file_update_time);
1da177e4
LT
1418
1419int inode_needs_sync(struct inode *inode)
1420{
1421 if (IS_SYNC(inode))
1422 return 1;
1423 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1424 return 1;
1425 return 0;
1426}
1427
1428EXPORT_SYMBOL(inode_needs_sync);
1429
1da177e4
LT
1430int inode_wait(void *word)
1431{
1432 schedule();
1433 return 0;
1434}
d44dab8d 1435EXPORT_SYMBOL(inode_wait);
1da177e4
LT
1436
1437/*
168a9fd6
MS
1438 * If we try to find an inode in the inode hash while it is being
1439 * deleted, we have to wait until the filesystem completes its
1440 * deletion before reporting that it isn't found. This function waits
1441 * until the deletion _might_ have completed. Callers are responsible
1442 * to recheck inode state.
1443 *
1444 * It doesn't matter if I_LOCK is not set initially, a call to
1445 * wake_up_inode() after removing from the hash list will DTRT.
1446 *
1da177e4
LT
1447 * This is called with inode_lock held.
1448 */
1449static void __wait_on_freeing_inode(struct inode *inode)
1450{
1451 wait_queue_head_t *wq;
1452 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_LOCK);
1da177e4
LT
1453 wq = bit_waitqueue(&inode->i_state, __I_LOCK);
1454 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1455 spin_unlock(&inode_lock);
1456 schedule();
1457 finish_wait(wq, &wait.wait);
1458 spin_lock(&inode_lock);
1459}
1460
62752ee1
MF
1461/*
1462 * We rarely want to lock two inodes that do not have a parent/child
1463 * relationship (such as directory, child inode) simultaneously. The
1464 * vast majority of file systems should be able to get along fine
1465 * without this. Do not use these functions except as a last resort.
1466 */
1467void inode_double_lock(struct inode *inode1, struct inode *inode2)
1468{
1469 if (inode1 == NULL || inode2 == NULL || inode1 == inode2) {
1470 if (inode1)
1471 mutex_lock(&inode1->i_mutex);
1472 else if (inode2)
1473 mutex_lock(&inode2->i_mutex);
1474 return;
1475 }
1476
1477 if (inode1 < inode2) {
1478 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
1479 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
1480 } else {
1481 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_PARENT);
1482 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_CHILD);
1483 }
1484}
1485EXPORT_SYMBOL(inode_double_lock);
1486
1487void inode_double_unlock(struct inode *inode1, struct inode *inode2)
1488{
1489 if (inode1)
1490 mutex_unlock(&inode1->i_mutex);
1491
1492 if (inode2 && inode2 != inode1)
1493 mutex_unlock(&inode2->i_mutex);
1494}
1495EXPORT_SYMBOL(inode_double_unlock);
1496
1da177e4
LT
1497static __initdata unsigned long ihash_entries;
1498static int __init set_ihash_entries(char *str)
1499{
1500 if (!str)
1501 return 0;
1502 ihash_entries = simple_strtoul(str, &str, 0);
1503 return 1;
1504}
1505__setup("ihash_entries=", set_ihash_entries);
1506
1507/*
1508 * Initialize the waitqueues and inode hash table.
1509 */
1510void __init inode_init_early(void)
1511{
1512 int loop;
1513
1514 /* If hashes are distributed across NUMA nodes, defer
1515 * hash allocation until vmalloc space is available.
1516 */
1517 if (hashdist)
1518 return;
1519
1520 inode_hashtable =
1521 alloc_large_system_hash("Inode-cache",
1522 sizeof(struct hlist_head),
1523 ihash_entries,
1524 14,
1525 HASH_EARLY,
1526 &i_hash_shift,
1527 &i_hash_mask,
1528 0);
1529
1530 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1531 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1532}
1533
74bf17cf 1534void __init inode_init(void)
1da177e4
LT
1535{
1536 int loop;
1537
1538 /* inode slab cache */
b0196009
PJ
1539 inode_cachep = kmem_cache_create("inode_cache",
1540 sizeof(struct inode),
1541 0,
1542 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1543 SLAB_MEM_SPREAD),
20c2df83 1544 init_once);
8e1f936b 1545 register_shrinker(&icache_shrinker);
1da177e4
LT
1546
1547 /* Hash may have been set up in inode_init_early */
1548 if (!hashdist)
1549 return;
1550
1551 inode_hashtable =
1552 alloc_large_system_hash("Inode-cache",
1553 sizeof(struct hlist_head),
1554 ihash_entries,
1555 14,
1556 0,
1557 &i_hash_shift,
1558 &i_hash_mask,
1559 0);
1560
1561 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1562 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1563}
1564
1565void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1566{
1567 inode->i_mode = mode;
1568 if (S_ISCHR(mode)) {
1569 inode->i_fop = &def_chr_fops;
1570 inode->i_rdev = rdev;
1571 } else if (S_ISBLK(mode)) {
1572 inode->i_fop = &def_blk_fops;
1573 inode->i_rdev = rdev;
1574 } else if (S_ISFIFO(mode))
1575 inode->i_fop = &def_fifo_fops;
1576 else if (S_ISSOCK(mode))
1577 inode->i_fop = &bad_sock_fops;
1578 else
1579 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o)\n",
1580 mode);
1581}
1582EXPORT_SYMBOL(init_special_inode);