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