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