1
2
3
4
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#include <linux/bootmem.h>
24
25
26
27
28
29
30
31
32
33
34#include <linux/buffer_head.h>
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55#define I_HASHBITS i_hash_shift
56#define I_HASHMASK i_hash_mask
57
58static unsigned int i_hash_mask;
59static unsigned int i_hash_shift;
60
61
62
63
64
65
66
67
68
69
70
71
72
73LIST_HEAD(inode_in_use);
74LIST_HEAD(inode_unused);
75static struct hlist_head *inode_hashtable;
76
77
78
79
80
81
82
83spinlock_t inode_lock = SPIN_LOCK_UNLOCKED;
84
85
86
87
88
89
90
91
92
93DECLARE_MUTEX(iprune_sem);
94
95
96
97
98struct inodes_stat_t inodes_stat;
99
100static kmem_cache_t * inode_cachep;
101
102static struct inode *alloc_inode(struct super_block *sb)
103{
104 static struct address_space_operations empty_aops;
105 static struct inode_operations empty_iops;
106 static struct file_operations empty_fops;
107 struct inode *inode;
108
109 if (sb->s_op->alloc_inode)
110 inode = sb->s_op->alloc_inode(sb);
111 else
112 inode = (struct inode *) kmem_cache_alloc(inode_cachep, SLAB_KERNEL);
113
114 if (inode) {
115 struct address_space * const mapping = &inode->i_data;
116
117 inode->i_sb = sb;
118 inode->i_blkbits = sb->s_blocksize_bits;
119 inode->i_flags = 0;
120 atomic_set(&inode->i_count, 1);
121 inode->i_sock = 0;
122 inode->i_op = &empty_iops;
123 inode->i_fop = &empty_fops;
124 inode->i_nlink = 1;
125 atomic_set(&inode->i_writecount, 0);
126 inode->i_size = 0;
127 inode->i_blocks = 0;
128 inode->i_bytes = 0;
129 inode->i_generation = 0;
130#ifdef CONFIG_QUOTA
131 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
132#endif
133 inode->i_pipe = NULL;
134 inode->i_bdev = NULL;
135 inode->i_cdev = NULL;
136 inode->i_rdev = 0;
137 inode->i_security = NULL;
138 inode->dirtied_when = 0;
139 if (security_inode_alloc(inode)) {
140 if (inode->i_sb->s_op->destroy_inode)
141 inode->i_sb->s_op->destroy_inode(inode);
142 else
143 kmem_cache_free(inode_cachep, (inode));
144 return NULL;
145 }
146
147 mapping->a_ops = &empty_aops;
148 mapping->host = inode;
149 mapping->flags = 0;
150 mapping_set_gfp_mask(mapping, GFP_HIGHUSER);
151 mapping->assoc_mapping = NULL;
152 mapping->backing_dev_info = &default_backing_dev_info;
153
154
155
156
157
158
159 if (sb->s_bdev) {
160 struct backing_dev_info *bdi;
161
162 bdi = sb->s_bdev->bd_inode_backing_dev_info;
163 if (!bdi)
164 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
165 mapping->backing_dev_info = bdi;
166 }
167 memset(&inode->u, 0, sizeof(inode->u));
168 inode->i_mapping = mapping;
169 }
170 return inode;
171}
172
173void destroy_inode(struct inode *inode)
174{
175 if (inode_has_buffers(inode))
176 BUG();
177 security_inode_free(inode);
178 if (inode->i_sb->s_op->destroy_inode)
179 inode->i_sb->s_op->destroy_inode(inode);
180 else
181 kmem_cache_free(inode_cachep, (inode));
182}
183
184
185
186
187
188
189
190void inode_init_once(struct inode *inode)
191{
192 memset(inode, 0, sizeof(*inode));
193 INIT_HLIST_NODE(&inode->i_hash);
194 INIT_LIST_HEAD(&inode->i_dentry);
195 INIT_LIST_HEAD(&inode->i_devices);
196 sema_init(&inode->i_sem, 1);
197 init_rwsem(&inode->i_alloc_sem);
198 INIT_RADIX_TREE(&inode->i_data.page_tree, GFP_ATOMIC);
199 spin_lock_init(&inode->i_data.tree_lock);
200 spin_lock_init(&inode->i_data.i_mmap_lock);
201 atomic_set(&inode->i_data.truncate_count, 0);
202 INIT_LIST_HEAD(&inode->i_data.private_list);
203 spin_lock_init(&inode->i_data.private_lock);
204 INIT_PRIO_TREE_ROOT(&inode->i_data.i_mmap);
205 INIT_LIST_HEAD(&inode->i_data.i_mmap_nonlinear);
206 spin_lock_init(&inode->i_lock);
207 i_size_ordered_init(inode);
208}
209
210EXPORT_SYMBOL(inode_init_once);
211
212static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
213{
214 struct inode * inode = (struct inode *) foo;
215
216 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
217 SLAB_CTOR_CONSTRUCTOR)
218 inode_init_once(inode);
219}
220
221
222
223
224void __iget(struct inode * inode)
225{
226 if (atomic_read(&inode->i_count)) {
227 atomic_inc(&inode->i_count);
228 return;
229 }
230 atomic_inc(&inode->i_count);
231 if (!(inode->i_state & (I_DIRTY|I_LOCK)))
232 list_move(&inode->i_list, &inode_in_use);
233 inodes_stat.nr_unused--;
234}
235
236
237
238
239
240
241
242
243
244void clear_inode(struct inode *inode)
245{
246 might_sleep();
247 invalidate_inode_buffers(inode);
248
249 if (inode->i_data.nrpages)
250 BUG();
251 if (!(inode->i_state & I_FREEING))
252 BUG();
253 if (inode->i_state & I_CLEAR)
254 BUG();
255 wait_on_inode(inode);
256 DQUOT_DROP(inode);
257 if (inode->i_sb && inode->i_sb->s_op->clear_inode)
258 inode->i_sb->s_op->clear_inode(inode);
259 if (inode->i_bdev)
260 bd_forget(inode);
261 if (inode->i_cdev)
262 cd_forget(inode);
263 inode->i_state = I_CLEAR;
264}
265
266EXPORT_SYMBOL(clear_inode);
267
268
269
270
271
272
273
274
275static void dispose_list(struct list_head *head)
276{
277 int nr_disposed = 0;
278
279 while (!list_empty(head)) {
280 struct inode *inode;
281
282 inode = list_entry(head->next, struct inode, i_list);
283 list_del(&inode->i_list);
284
285 if (inode->i_data.nrpages)
286 truncate_inode_pages(&inode->i_data, 0);
287 clear_inode(inode);
288 destroy_inode(inode);
289 nr_disposed++;
290 }
291 spin_lock(&inode_lock);
292 inodes_stat.nr_inodes -= nr_disposed;
293 spin_unlock(&inode_lock);
294}
295
296
297
298
299static int invalidate_list(struct list_head *head, struct super_block * sb, struct list_head * dispose)
300{
301 struct list_head *next;
302 int busy = 0, count = 0;
303
304 next = head->next;
305 for (;;) {
306 struct list_head * tmp = next;
307 struct inode * inode;
308
309 next = next->next;
310 if (tmp == head)
311 break;
312 inode = list_entry(tmp, struct inode, i_list);
313 if (inode->i_sb != sb)
314 continue;
315 invalidate_inode_buffers(inode);
316 if (!atomic_read(&inode->i_count)) {
317 hlist_del_init(&inode->i_hash);
318 list_move(&inode->i_list, dispose);
319 inode->i_state |= I_FREEING;
320 count++;
321 continue;
322 }
323 busy = 1;
324 }
325
326 inodes_stat.nr_unused -= count;
327 return busy;
328}
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346int invalidate_inodes(struct super_block * sb)
347{
348 int busy;
349 LIST_HEAD(throw_away);
350
351 down(&iprune_sem);
352 spin_lock(&inode_lock);
353 busy = invalidate_list(&inode_in_use, sb, &throw_away);
354 busy |= invalidate_list(&inode_unused, sb, &throw_away);
355 busy |= invalidate_list(&sb->s_dirty, sb, &throw_away);
356 busy |= invalidate_list(&sb->s_io, sb, &throw_away);
357 spin_unlock(&inode_lock);
358
359 dispose_list(&throw_away);
360 up(&iprune_sem);
361
362 return busy;
363}
364
365EXPORT_SYMBOL(invalidate_inodes);
366
367int __invalidate_device(struct block_device *bdev, int do_sync)
368{
369 struct super_block *sb;
370 int res;
371
372 if (do_sync)
373 fsync_bdev(bdev);
374
375 res = 0;
376 sb = get_super(bdev);
377 if (sb) {
378
379
380
381
382
383
384 shrink_dcache_sb(sb);
385 res = invalidate_inodes(sb);
386 drop_super(sb);
387 }
388 invalidate_bdev(bdev, 0);
389 return res;
390}
391
392EXPORT_SYMBOL(__invalidate_device);
393
394static int can_unuse(struct inode *inode)
395{
396 if (inode->i_state)
397 return 0;
398 if (inode_has_buffers(inode))
399 return 0;
400 if (atomic_read(&inode->i_count))
401 return 0;
402 if (inode->i_data.nrpages)
403 return 0;
404 return 1;
405}
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420static void prune_icache(int nr_to_scan)
421{
422 LIST_HEAD(freeable);
423 int nr_pruned = 0;
424 int nr_scanned;
425 unsigned long reap = 0;
426
427 down(&iprune_sem);
428 spin_lock(&inode_lock);
429 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
430 struct inode *inode;
431
432 if (list_empty(&inode_unused))
433 break;
434
435 inode = list_entry(inode_unused.prev, struct inode, i_list);
436
437 if (inode->i_state || atomic_read(&inode->i_count)) {
438 list_move(&inode->i_list, &inode_unused);
439 continue;
440 }
441 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
442 __iget(inode);
443 spin_unlock(&inode_lock);
444 if (remove_inode_buffers(inode))
445 reap += invalidate_inode_pages(&inode->i_data);
446 iput(inode);
447 spin_lock(&inode_lock);
448
449 if (inode != list_entry(inode_unused.next,
450 struct inode, i_list))
451 continue;
452 if (!can_unuse(inode))
453 continue;
454 }
455 hlist_del_init(&inode->i_hash);
456 list_move(&inode->i_list, &freeable);
457 inode->i_state |= I_FREEING;
458 nr_pruned++;
459 }
460 inodes_stat.nr_unused -= nr_pruned;
461 spin_unlock(&inode_lock);
462
463 dispose_list(&freeable);
464 up(&iprune_sem);
465
466 if (current_is_kswapd())
467 mod_page_state(kswapd_inodesteal, reap);
468 else
469 mod_page_state(pginodesteal, reap);
470}
471
472
473
474
475
476
477
478
479
480
481static int shrink_icache_memory(int nr, unsigned int gfp_mask)
482{
483 if (nr) {
484
485
486
487
488
489 if (!(gfp_mask & __GFP_FS))
490 return -1;
491 prune_icache(nr);
492 }
493 return (inodes_stat.nr_unused / 100) * sysctl_vfs_cache_pressure;
494}
495
496static void __wait_on_freeing_inode(struct inode *inode);
497
498
499
500
501
502
503static struct inode * find_inode(struct super_block * sb, struct hlist_head *head, int (*test)(struct inode *, void *), void *data)
504{
505 struct hlist_node *node;
506 struct inode * inode = NULL;
507
508repeat:
509 hlist_for_each (node, head) {
510 inode = hlist_entry(node, struct inode, i_hash);
511 if (inode->i_sb != sb)
512 continue;
513 if (!test(inode, data))
514 continue;
515 if (inode->i_state & (I_FREEING|I_CLEAR)) {
516 __wait_on_freeing_inode(inode);
517 goto repeat;
518 }
519 break;
520 }
521 return node ? inode : NULL;
522}
523
524
525
526
527
528static struct inode * find_inode_fast(struct super_block * sb, struct hlist_head *head, unsigned long ino)
529{
530 struct hlist_node *node;
531 struct inode * inode = NULL;
532
533repeat:
534 hlist_for_each (node, head) {
535 inode = hlist_entry(node, struct inode, i_hash);
536 if (inode->i_ino != ino)
537 continue;
538 if (inode->i_sb != sb)
539 continue;
540 if (inode->i_state & (I_FREEING|I_CLEAR)) {
541 __wait_on_freeing_inode(inode);
542 goto repeat;
543 }
544 break;
545 }
546 return node ? inode : NULL;
547}
548
549
550
551
552
553
554
555struct inode *new_inode(struct super_block *sb)
556{
557 static unsigned long last_ino;
558 struct inode * inode;
559
560 spin_lock_prefetch(&inode_lock);
561
562 inode = alloc_inode(sb);
563 if (inode) {
564 spin_lock(&inode_lock);
565 inodes_stat.nr_inodes++;
566 list_add(&inode->i_list, &inode_in_use);
567 inode->i_ino = ++last_ino;
568 inode->i_state = 0;
569 spin_unlock(&inode_lock);
570 }
571 return inode;
572}
573
574EXPORT_SYMBOL(new_inode);
575
576void unlock_new_inode(struct inode *inode)
577{
578
579
580
581
582
583
584
585
586 inode->i_state &= ~(I_LOCK|I_NEW);
587 wake_up_inode(inode);
588}
589
590EXPORT_SYMBOL(unlock_new_inode);
591
592
593
594
595
596
597
598static 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)
599{
600 struct inode * inode;
601
602 inode = alloc_inode(sb);
603 if (inode) {
604 struct inode * old;
605
606 spin_lock(&inode_lock);
607
608 old = find_inode(sb, head, test, data);
609 if (!old) {
610 if (set(inode, data))
611 goto set_failed;
612
613 inodes_stat.nr_inodes++;
614 list_add(&inode->i_list, &inode_in_use);
615 hlist_add_head(&inode->i_hash, head);
616 inode->i_state = I_LOCK|I_NEW;
617 spin_unlock(&inode_lock);
618
619
620
621
622 return inode;
623 }
624
625
626
627
628
629
630 __iget(old);
631 spin_unlock(&inode_lock);
632 destroy_inode(inode);
633 inode = old;
634 wait_on_inode(inode);
635 }
636 return inode;
637
638set_failed:
639 spin_unlock(&inode_lock);
640 destroy_inode(inode);
641 return NULL;
642}
643
644
645
646
647
648static struct inode * get_new_inode_fast(struct super_block *sb, struct hlist_head *head, unsigned long ino)
649{
650 struct inode * inode;
651
652 inode = alloc_inode(sb);
653 if (inode) {
654 struct inode * old;
655
656 spin_lock(&inode_lock);
657
658 old = find_inode_fast(sb, head, ino);
659 if (!old) {
660 inode->i_ino = ino;
661 inodes_stat.nr_inodes++;
662 list_add(&inode->i_list, &inode_in_use);
663 hlist_add_head(&inode->i_hash, head);
664 inode->i_state = I_LOCK|I_NEW;
665 spin_unlock(&inode_lock);
666
667
668
669
670 return inode;
671 }
672
673
674
675
676
677
678 __iget(old);
679 spin_unlock(&inode_lock);
680 destroy_inode(inode);
681 inode = old;
682 wait_on_inode(inode);
683 }
684 return inode;
685}
686
687static inline unsigned long hash(struct super_block *sb, unsigned long hashval)
688{
689 unsigned long tmp;
690
691 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
692 L1_CACHE_BYTES;
693 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
694 return tmp & I_HASHMASK;
695}
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711ino_t iunique(struct super_block *sb, ino_t max_reserved)
712{
713 static ino_t counter;
714 struct inode *inode;
715 struct hlist_head * head;
716 ino_t res;
717 spin_lock(&inode_lock);
718retry:
719 if (counter > max_reserved) {
720 head = inode_hashtable + hash(sb,counter);
721 res = counter++;
722 inode = find_inode_fast(sb, head, res);
723 if (!inode) {
724 spin_unlock(&inode_lock);
725 return res;
726 }
727 } else {
728 counter = max_reserved + 1;
729 }
730 goto retry;
731
732}
733
734EXPORT_SYMBOL(iunique);
735
736struct inode *igrab(struct inode *inode)
737{
738 spin_lock(&inode_lock);
739 if (!(inode->i_state & I_FREEING))
740 __iget(inode);
741 else
742
743
744
745
746
747 inode = NULL;
748 spin_unlock(&inode_lock);
749 return inode;
750}
751
752EXPORT_SYMBOL(igrab);
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772static inline struct inode *ifind(struct super_block *sb,
773 struct hlist_head *head, int (*test)(struct inode *, void *),
774 void *data)
775{
776 struct inode *inode;
777
778 spin_lock(&inode_lock);
779 inode = find_inode(sb, head, test, data);
780 if (inode) {
781 __iget(inode);
782 spin_unlock(&inode_lock);
783 wait_on_inode(inode);
784 return inode;
785 }
786 spin_unlock(&inode_lock);
787 return NULL;
788}
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805static inline struct inode *ifind_fast(struct super_block *sb,
806 struct hlist_head *head, unsigned long ino)
807{
808 struct inode *inode;
809
810 spin_lock(&inode_lock);
811 inode = find_inode_fast(sb, head, ino);
812 if (inode) {
813 __iget(inode);
814 spin_unlock(&inode_lock);
815 wait_on_inode(inode);
816 return inode;
817 }
818 spin_unlock(&inode_lock);
819 return NULL;
820}
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
842 int (*test)(struct inode *, void *), void *data)
843{
844 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
845
846 return ifind(sb, head, test, data);
847}
848
849EXPORT_SYMBOL(ilookup5);
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865struct inode *ilookup(struct super_block *sb, unsigned long ino)
866{
867 struct hlist_head *head = inode_hashtable + hash(sb, ino);
868
869 return ifind_fast(sb, head, ino);
870}
871
872EXPORT_SYMBOL(ilookup);
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
897 int (*test)(struct inode *, void *),
898 int (*set)(struct inode *, void *), void *data)
899{
900 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
901 struct inode *inode;
902
903 inode = ifind(sb, head, test, data);
904 if (inode)
905 return inode;
906
907
908
909
910 return get_new_inode(sb, head, test, set, data);
911}
912
913EXPORT_SYMBOL(iget5_locked);
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932struct inode *iget_locked(struct super_block *sb, unsigned long ino)
933{
934 struct hlist_head *head = inode_hashtable + hash(sb, ino);
935 struct inode *inode;
936
937 inode = ifind_fast(sb, head, ino);
938 if (inode)
939 return inode;
940
941
942
943
944 return get_new_inode_fast(sb, head, ino);
945}
946
947EXPORT_SYMBOL(iget_locked);
948
949
950
951
952
953
954
955
956
957void __insert_inode_hash(struct inode *inode, unsigned long hashval)
958{
959 struct hlist_head *head = inode_hashtable + hash(inode->i_sb, hashval);
960 spin_lock(&inode_lock);
961 hlist_add_head(&inode->i_hash, head);
962 spin_unlock(&inode_lock);
963}
964
965EXPORT_SYMBOL(__insert_inode_hash);
966
967
968
969
970
971
972
973void remove_inode_hash(struct inode *inode)
974{
975 spin_lock(&inode_lock);
976 hlist_del_init(&inode->i_hash);
977 spin_unlock(&inode_lock);
978}
979
980EXPORT_SYMBOL(remove_inode_hash);
981
982
983
984
985
986
987
988
989
990
991
992
993
994void generic_delete_inode(struct inode *inode)
995{
996 struct super_operations *op = inode->i_sb->s_op;
997
998 list_del_init(&inode->i_list);
999 inode->i_state|=I_FREEING;
1000 inodes_stat.nr_inodes--;
1001 spin_unlock(&inode_lock);
1002
1003 if (inode->i_data.nrpages)
1004 truncate_inode_pages(&inode->i_data, 0);
1005
1006 security_inode_delete(inode);
1007
1008 if (op->delete_inode) {
1009 void (*delete)(struct inode *) = op->delete_inode;
1010 if (!is_bad_inode(inode))
1011 DQUOT_INIT(inode);
1012
1013 delete(inode);
1014 } else
1015 clear_inode(inode);
1016 spin_lock(&inode_lock);
1017 hlist_del_init(&inode->i_hash);
1018 spin_unlock(&inode_lock);
1019 wake_up_inode(inode);
1020 if (inode->i_state != I_CLEAR)
1021 BUG();
1022 destroy_inode(inode);
1023}
1024
1025EXPORT_SYMBOL(generic_delete_inode);
1026
1027static void generic_forget_inode(struct inode *inode)
1028{
1029 struct super_block *sb = inode->i_sb;
1030
1031 if (!hlist_unhashed(&inode->i_hash)) {
1032 if (!(inode->i_state & (I_DIRTY|I_LOCK)))
1033 list_move(&inode->i_list, &inode_unused);
1034 inodes_stat.nr_unused++;
1035 spin_unlock(&inode_lock);
1036 if (!sb || (sb->s_flags & MS_ACTIVE))
1037 return;
1038 write_inode_now(inode, 1);
1039 spin_lock(&inode_lock);
1040 inodes_stat.nr_unused--;
1041 hlist_del_init(&inode->i_hash);
1042 }
1043 list_del_init(&inode->i_list);
1044 inode->i_state|=I_FREEING;
1045 inodes_stat.nr_inodes--;
1046 spin_unlock(&inode_lock);
1047 if (inode->i_data.nrpages)
1048 truncate_inode_pages(&inode->i_data, 0);
1049 clear_inode(inode);
1050 destroy_inode(inode);
1051}
1052
1053
1054
1055
1056
1057
1058static void generic_drop_inode(struct inode *inode)
1059{
1060 if (!inode->i_nlink)
1061 generic_delete_inode(inode);
1062 else
1063 generic_forget_inode(inode);
1064}
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077static inline void iput_final(struct inode *inode)
1078{
1079 struct super_operations *op = inode->i_sb->s_op;
1080 void (*drop)(struct inode *) = generic_drop_inode;
1081
1082 if (op && op->drop_inode)
1083 drop = op->drop_inode;
1084 drop(inode);
1085}
1086
1087
1088
1089
1090
1091
1092
1093
1094void iput(struct inode *inode)
1095{
1096 if (inode) {
1097 struct super_operations *op = inode->i_sb->s_op;
1098
1099 if (inode->i_state == I_CLEAR)
1100 BUG();
1101
1102 if (op && op->put_inode)
1103 op->put_inode(inode);
1104
1105 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1106 iput_final(inode);
1107 }
1108}
1109
1110EXPORT_SYMBOL(iput);
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123sector_t bmap(struct inode * inode, sector_t block)
1124{
1125 sector_t res = 0;
1126 if (inode->i_mapping->a_ops->bmap)
1127 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1128 return res;
1129}
1130
1131EXPORT_SYMBOL(bmap);
1132
1133
1134
1135
1136
1137
1138static int inode_times_differ(struct inode *inode,
1139 struct timespec *old, struct timespec *new)
1140{
1141 if (IS_ONE_SECOND(inode))
1142 return old->tv_sec != new->tv_sec;
1143 return !timespec_equal(old, new);
1144}
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154void update_atime(struct inode *inode)
1155{
1156 struct timespec now;
1157
1158 if (IS_NOATIME(inode))
1159 return;
1160 if (IS_NODIRATIME(inode) && S_ISDIR(inode->i_mode))
1161 return;
1162 if (IS_RDONLY(inode))
1163 return;
1164
1165 now = current_kernel_time();
1166 if (inode_times_differ(inode, &inode->i_atime, &now)) {
1167 inode->i_atime = now;
1168 mark_inode_dirty_sync(inode);
1169 } else {
1170 if (!timespec_equal(&inode->i_atime, &now))
1171 inode->i_atime = now;
1172 }
1173}
1174
1175EXPORT_SYMBOL(update_atime);
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186void inode_update_time(struct inode *inode, int ctime_too)
1187{
1188 struct timespec now;
1189 int sync_it = 0;
1190
1191 if (IS_NOCMTIME(inode))
1192 return;
1193 if (IS_RDONLY(inode))
1194 return;
1195
1196 now = current_kernel_time();
1197
1198 if (inode_times_differ(inode, &inode->i_mtime, &now))
1199 sync_it = 1;
1200 inode->i_mtime = now;
1201
1202 if (ctime_too) {
1203 if (inode_times_differ(inode, &inode->i_ctime, &now))
1204 sync_it = 1;
1205 inode->i_ctime = now;
1206 }
1207 if (sync_it)
1208 mark_inode_dirty_sync(inode);
1209}
1210
1211EXPORT_SYMBOL(inode_update_time);
1212
1213int inode_needs_sync(struct inode *inode)
1214{
1215 if (IS_SYNC(inode))
1216 return 1;
1217 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1218 return 1;
1219 return 0;
1220}
1221
1222EXPORT_SYMBOL(inode_needs_sync);
1223
1224
1225
1226
1227#ifdef CONFIG_QUOTA
1228
1229
1230int remove_inode_dquot_ref(struct inode *, int, struct list_head *);
1231
1232void remove_dquot_ref(struct super_block *sb, int type, struct list_head *tofree_head)
1233{
1234 struct inode *inode;
1235 struct list_head *act_head;
1236
1237 if (!sb->dq_op)
1238 return;
1239 spin_lock(&inode_lock);
1240
1241
1242 list_for_each(act_head, &inode_in_use) {
1243 inode = list_entry(act_head, struct inode, i_list);
1244 if (inode->i_sb == sb && !IS_NOQUOTA(inode))
1245 remove_inode_dquot_ref(inode, type, tofree_head);
1246 }
1247 list_for_each(act_head, &inode_unused) {
1248 inode = list_entry(act_head, struct inode, i_list);
1249 if (inode->i_sb == sb && !IS_NOQUOTA(inode))
1250 remove_inode_dquot_ref(inode, type, tofree_head);
1251 }
1252 list_for_each(act_head, &sb->s_dirty) {
1253 inode = list_entry(act_head, struct inode, i_list);
1254 if (!IS_NOQUOTA(inode))
1255 remove_inode_dquot_ref(inode, type, tofree_head);
1256 }
1257 list_for_each(act_head, &sb->s_io) {
1258 inode = list_entry(act_head, struct inode, i_list);
1259 if (!IS_NOQUOTA(inode))
1260 remove_inode_dquot_ref(inode, type, tofree_head);
1261 }
1262 spin_unlock(&inode_lock);
1263}
1264
1265#endif
1266
1267int inode_wait(void *word)
1268{
1269 schedule();
1270 return 0;
1271}
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281static void __wait_on_freeing_inode(struct inode *inode)
1282{
1283 wait_queue_head_t *wq;
1284 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_LOCK);
1285
1286
1287
1288
1289
1290
1291 if (!(inode->i_state & I_LOCK)) {
1292 spin_unlock(&inode_lock);
1293 yield();
1294 spin_lock(&inode_lock);
1295 return;
1296 }
1297 wq = bit_waitqueue(&inode->i_state, __I_LOCK);
1298 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1299 spin_unlock(&inode_lock);
1300 schedule();
1301 finish_wait(wq, &wait.wait);
1302 spin_lock(&inode_lock);
1303}
1304
1305void wake_up_inode(struct inode *inode)
1306{
1307
1308
1309
1310 smp_mb();
1311 wake_up_bit(&inode->i_state, __I_LOCK);
1312}
1313
1314static __initdata unsigned long ihash_entries;
1315static int __init set_ihash_entries(char *str)
1316{
1317 if (!str)
1318 return 0;
1319 ihash_entries = simple_strtoul(str, &str, 0);
1320 return 1;
1321}
1322__setup("ihash_entries=", set_ihash_entries);
1323
1324
1325
1326
1327void __init inode_init_early(void)
1328{
1329 int loop;
1330
1331 inode_hashtable =
1332 alloc_large_system_hash("Inode-cache",
1333 sizeof(struct hlist_head),
1334 ihash_entries,
1335 14,
1336 0,
1337 &i_hash_shift,
1338 &i_hash_mask);
1339
1340 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1341 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1342}
1343
1344void __init inode_init(unsigned long mempages)
1345{
1346
1347 inode_cachep = kmem_cache_create("inode_cache", sizeof(struct inode),
1348 0, SLAB_PANIC, init_once, NULL);
1349 set_shrinker(DEFAULT_SEEKS, shrink_icache_memory);
1350}
1351
1352void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1353{
1354 inode->i_mode = mode;
1355 if (S_ISCHR(mode)) {
1356 inode->i_fop = &def_chr_fops;
1357 inode->i_rdev = rdev;
1358 } else if (S_ISBLK(mode)) {
1359 inode->i_fop = &def_blk_fops;
1360 inode->i_rdev = rdev;
1361 } else if (S_ISFIFO(mode))
1362 inode->i_fop = &def_fifo_fops;
1363 else if (S_ISSOCK(mode))
1364 inode->i_fop = &bad_sock_fops;
1365 else
1366 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o)\n",
1367 mode);
1368}
1369EXPORT_SYMBOL(init_special_inode);
1370