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