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