1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#include <linux/kernel.h>
22#include <linux/syscalls.h>
23#include <linux/fs.h>
24#include <linux/mm.h>
25#include <linux/percpu.h>
26#include <linux/slab.h>
27#include <linux/smp_lock.h>
28#include <linux/capability.h>
29#include <linux/blkdev.h>
30#include <linux/file.h>
31#include <linux/quotaops.h>
32#include <linux/highmem.h>
33#include <linux/module.h>
34#include <linux/writeback.h>
35#include <linux/hash.h>
36#include <linux/suspend.h>
37#include <linux/buffer_head.h>
38#include <linux/bio.h>
39#include <linux/notifier.h>
40#include <linux/cpu.h>
41#include <linux/bitops.h>
42#include <linux/mpage.h>
43#include <linux/bit_spinlock.h>
44
45static int fsync_buffers_list(spinlock_t *lock, struct list_head *list);
46static void invalidate_bh_lrus(void);
47
48#define BH_ENTRY(list) list_entry((list), struct buffer_head, b_assoc_buffers)
49
50inline void
51init_buffer(struct buffer_head *bh, bh_end_io_t *handler, void *private)
52{
53 bh->b_end_io = handler;
54 bh->b_private = private;
55}
56
57static int sync_buffer(void *word)
58{
59 struct block_device *bd;
60 struct buffer_head *bh
61 = container_of(word, struct buffer_head, b_state);
62
63 smp_mb();
64 bd = bh->b_bdev;
65 if (bd)
66 blk_run_address_space(bd->bd_inode->i_mapping);
67 io_schedule();
68 return 0;
69}
70
71void fastcall __lock_buffer(struct buffer_head *bh)
72{
73 wait_on_bit_lock(&bh->b_state, BH_Lock, sync_buffer,
74 TASK_UNINTERRUPTIBLE);
75}
76EXPORT_SYMBOL(__lock_buffer);
77
78void fastcall unlock_buffer(struct buffer_head *bh)
79{
80 clear_buffer_locked(bh);
81 smp_mb__after_clear_bit();
82 wake_up_bit(&bh->b_state, BH_Lock);
83}
84
85
86
87
88
89
90void __wait_on_buffer(struct buffer_head * bh)
91{
92 wait_on_bit(&bh->b_state, BH_Lock, sync_buffer, TASK_UNINTERRUPTIBLE);
93}
94
95static void
96__clear_page_buffers(struct page *page)
97{
98 ClearPagePrivate(page);
99 set_page_private(page, 0);
100 page_cache_release(page);
101}
102
103static void buffer_io_error(struct buffer_head *bh)
104{
105 char b[BDEVNAME_SIZE];
106
107 printk(KERN_ERR "Buffer I/O error on device %s, logical block %Lu\n",
108 bdevname(bh->b_bdev, b),
109 (unsigned long long)bh->b_blocknr);
110}
111
112
113
114
115
116void end_buffer_read_sync(struct buffer_head *bh, int uptodate)
117{
118 if (uptodate) {
119 set_buffer_uptodate(bh);
120 } else {
121
122 clear_buffer_uptodate(bh);
123 }
124 unlock_buffer(bh);
125 put_bh(bh);
126}
127
128void end_buffer_write_sync(struct buffer_head *bh, int uptodate)
129{
130 char b[BDEVNAME_SIZE];
131
132 if (uptodate) {
133 set_buffer_uptodate(bh);
134 } else {
135 if (!buffer_eopnotsupp(bh) && printk_ratelimit()) {
136 buffer_io_error(bh);
137 printk(KERN_WARNING "lost page write due to "
138 "I/O error on %s\n",
139 bdevname(bh->b_bdev, b));
140 }
141 set_buffer_write_io_error(bh);
142 clear_buffer_uptodate(bh);
143 }
144 unlock_buffer(bh);
145 put_bh(bh);
146}
147
148
149
150
151
152int sync_blockdev(struct block_device *bdev)
153{
154 int ret = 0;
155
156 if (bdev)
157 ret = filemap_write_and_wait(bdev->bd_inode->i_mapping);
158 return ret;
159}
160EXPORT_SYMBOL(sync_blockdev);
161
162static void __fsync_super(struct super_block *sb)
163{
164 sync_inodes_sb(sb, 0);
165 DQUOT_SYNC(sb);
166 lock_super(sb);
167 if (sb->s_dirt && sb->s_op->write_super)
168 sb->s_op->write_super(sb);
169 unlock_super(sb);
170 if (sb->s_op->sync_fs)
171 sb->s_op->sync_fs(sb, 1);
172 sync_blockdev(sb->s_bdev);
173 sync_inodes_sb(sb, 1);
174}
175
176
177
178
179
180
181int fsync_super(struct super_block *sb)
182{
183 __fsync_super(sb);
184 return sync_blockdev(sb->s_bdev);
185}
186
187
188
189
190
191
192int fsync_bdev(struct block_device *bdev)
193{
194 struct super_block *sb = get_super(bdev);
195 if (sb) {
196 int res = fsync_super(sb);
197 drop_super(sb);
198 return res;
199 }
200 return sync_blockdev(bdev);
201}
202
203
204
205
206
207
208
209
210
211
212struct super_block *freeze_bdev(struct block_device *bdev)
213{
214 struct super_block *sb;
215
216 mutex_lock(&bdev->bd_mount_mutex);
217 sb = get_super(bdev);
218 if (sb && !(sb->s_flags & MS_RDONLY)) {
219 sb->s_frozen = SB_FREEZE_WRITE;
220 smp_wmb();
221
222 __fsync_super(sb);
223
224 sb->s_frozen = SB_FREEZE_TRANS;
225 smp_wmb();
226
227 sync_blockdev(sb->s_bdev);
228
229 if (sb->s_op->write_super_lockfs)
230 sb->s_op->write_super_lockfs(sb);
231 }
232
233 sync_blockdev(bdev);
234 return sb;
235}
236EXPORT_SYMBOL(freeze_bdev);
237
238
239
240
241
242
243
244
245void thaw_bdev(struct block_device *bdev, struct super_block *sb)
246{
247 if (sb) {
248 BUG_ON(sb->s_bdev != bdev);
249
250 if (sb->s_op->unlockfs)
251 sb->s_op->unlockfs(sb);
252 sb->s_frozen = SB_UNFROZEN;
253 smp_wmb();
254 wake_up(&sb->s_wait_unfrozen);
255 drop_super(sb);
256 }
257
258 mutex_unlock(&bdev->bd_mount_mutex);
259}
260EXPORT_SYMBOL(thaw_bdev);
261
262
263
264
265
266static void do_sync(unsigned long wait)
267{
268 wakeup_pdflush(0);
269 sync_inodes(0);
270 DQUOT_SYNC(NULL);
271 sync_supers();
272 sync_filesystems(0);
273 sync_filesystems(wait);
274 sync_inodes(wait);
275 if (!wait)
276 printk("Emergency Sync complete\n");
277 if (unlikely(laptop_mode))
278 laptop_sync_completion();
279}
280
281asmlinkage long sys_sync(void)
282{
283 do_sync(1);
284 return 0;
285}
286
287void emergency_sync(void)
288{
289 pdflush_operation(do_sync, 0);
290}
291
292
293
294
295
296
297
298int file_fsync(struct file *filp, struct dentry *dentry, int datasync)
299{
300 struct inode * inode = dentry->d_inode;
301 struct super_block * sb;
302 int ret, err;
303
304
305 ret = write_inode_now(inode, 0);
306
307
308 sb = inode->i_sb;
309 lock_super(sb);
310 if (sb->s_op->write_super)
311 sb->s_op->write_super(sb);
312 unlock_super(sb);
313
314
315 err = sync_blockdev(sb->s_bdev);
316 if (!ret)
317 ret = err;
318 return ret;
319}
320
321long do_fsync(struct file *file, int datasync)
322{
323 int ret;
324 int err;
325 struct address_space *mapping = file->f_mapping;
326
327 if (!file->f_op || !file->f_op->fsync) {
328
329 ret = -EINVAL;
330 goto out;
331 }
332
333 ret = filemap_fdatawrite(mapping);
334
335
336
337
338
339 mutex_lock(&mapping->host->i_mutex);
340 err = file->f_op->fsync(file, file->f_dentry, datasync);
341 if (!ret)
342 ret = err;
343 mutex_unlock(&mapping->host->i_mutex);
344 err = filemap_fdatawait(mapping);
345 if (!ret)
346 ret = err;
347out:
348 return ret;
349}
350
351static long __do_fsync(unsigned int fd, int datasync)
352{
353 struct file *file;
354 int ret = -EBADF;
355
356 file = fget(fd);
357 if (file) {
358 ret = do_fsync(file, datasync);
359 fput(file);
360 }
361 return ret;
362}
363
364asmlinkage long sys_fsync(unsigned int fd)
365{
366 return __do_fsync(fd, 0);
367}
368
369asmlinkage long sys_fdatasync(unsigned int fd)
370{
371 return __do_fsync(fd, 1);
372}
373
374
375
376
377
378
379
380
381
382
383
384
385static struct buffer_head *
386__find_get_block_slow(struct block_device *bdev, sector_t block)
387{
388 struct inode *bd_inode = bdev->bd_inode;
389 struct address_space *bd_mapping = bd_inode->i_mapping;
390 struct buffer_head *ret = NULL;
391 pgoff_t index;
392 struct buffer_head *bh;
393 struct buffer_head *head;
394 struct page *page;
395 int all_mapped = 1;
396
397 index = block >> (PAGE_CACHE_SHIFT - bd_inode->i_blkbits);
398 page = find_get_page(bd_mapping, index);
399 if (!page)
400 goto out;
401
402 spin_lock(&bd_mapping->private_lock);
403 if (!page_has_buffers(page))
404 goto out_unlock;
405 head = page_buffers(page);
406 bh = head;
407 do {
408 if (bh->b_blocknr == block) {
409 ret = bh;
410 get_bh(bh);
411 goto out_unlock;
412 }
413 if (!buffer_mapped(bh))
414 all_mapped = 0;
415 bh = bh->b_this_page;
416 } while (bh != head);
417
418
419
420
421
422
423 if (all_mapped) {
424 printk("__find_get_block_slow() failed. "
425 "block=%llu, b_blocknr=%llu\n",
426 (unsigned long long)block,
427 (unsigned long long)bh->b_blocknr);
428 printk("b_state=0x%08lx, b_size=%zu\n",
429 bh->b_state, bh->b_size);
430 printk("device blocksize: %d\n", 1 << bd_inode->i_blkbits);
431 }
432out_unlock:
433 spin_unlock(&bd_mapping->private_lock);
434 page_cache_release(page);
435out:
436 return ret;
437}
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471void invalidate_bdev(struct block_device *bdev, int destroy_dirty_buffers)
472{
473 struct address_space *mapping = bdev->bd_inode->i_mapping;
474
475 if (mapping->nrpages == 0)
476 return;
477
478 invalidate_bh_lrus();
479
480
481
482
483
484 invalidate_inode_pages(mapping);
485}
486
487
488
489
490static void free_more_memory(void)
491{
492 struct zone **zones;
493 pg_data_t *pgdat;
494
495 wakeup_pdflush(1024);
496 yield();
497
498 for_each_online_pgdat(pgdat) {
499 zones = pgdat->node_zonelists[gfp_zone(GFP_NOFS)].zones;
500 if (*zones)
501 try_to_free_pages(zones, GFP_NOFS);
502 }
503}
504
505
506
507
508
509static void end_buffer_async_read(struct buffer_head *bh, int uptodate)
510{
511 unsigned long flags;
512 struct buffer_head *first;
513 struct buffer_head *tmp;
514 struct page *page;
515 int page_uptodate = 1;
516
517 BUG_ON(!buffer_async_read(bh));
518
519 page = bh->b_page;
520 if (uptodate) {
521 set_buffer_uptodate(bh);
522 } else {
523 clear_buffer_uptodate(bh);
524 if (printk_ratelimit())
525 buffer_io_error(bh);
526 SetPageError(page);
527 }
528
529
530
531
532
533
534 first = page_buffers(page);
535 local_irq_save(flags);
536 bit_spin_lock(BH_Uptodate_Lock, &first->b_state);
537 clear_buffer_async_read(bh);
538 unlock_buffer(bh);
539 tmp = bh;
540 do {
541 if (!buffer_uptodate(tmp))
542 page_uptodate = 0;
543 if (buffer_async_read(tmp)) {
544 BUG_ON(!buffer_locked(tmp));
545 goto still_busy;
546 }
547 tmp = tmp->b_this_page;
548 } while (tmp != bh);
549 bit_spin_unlock(BH_Uptodate_Lock, &first->b_state);
550 local_irq_restore(flags);
551
552
553
554
555
556 if (page_uptodate && !PageError(page))
557 SetPageUptodate(page);
558 unlock_page(page);
559 return;
560
561still_busy:
562 bit_spin_unlock(BH_Uptodate_Lock, &first->b_state);
563 local_irq_restore(flags);
564 return;
565}
566
567
568
569
570
571static void end_buffer_async_write(struct buffer_head *bh, int uptodate)
572{
573 char b[BDEVNAME_SIZE];
574 unsigned long flags;
575 struct buffer_head *first;
576 struct buffer_head *tmp;
577 struct page *page;
578
579 BUG_ON(!buffer_async_write(bh));
580
581 page = bh->b_page;
582 if (uptodate) {
583 set_buffer_uptodate(bh);
584 } else {
585 if (printk_ratelimit()) {
586 buffer_io_error(bh);
587 printk(KERN_WARNING "lost page write due to "
588 "I/O error on %s\n",
589 bdevname(bh->b_bdev, b));
590 }
591 set_bit(AS_EIO, &page->mapping->flags);
592 clear_buffer_uptodate(bh);
593 SetPageError(page);
594 }
595
596 first = page_buffers(page);
597 local_irq_save(flags);
598 bit_spin_lock(BH_Uptodate_Lock, &first->b_state);
599
600 clear_buffer_async_write(bh);
601 unlock_buffer(bh);
602 tmp = bh->b_this_page;
603 while (tmp != bh) {
604 if (buffer_async_write(tmp)) {
605 BUG_ON(!buffer_locked(tmp));
606 goto still_busy;
607 }
608 tmp = tmp->b_this_page;
609 }
610 bit_spin_unlock(BH_Uptodate_Lock, &first->b_state);
611 local_irq_restore(flags);
612 end_page_writeback(page);
613 return;
614
615still_busy:
616 bit_spin_unlock(BH_Uptodate_Lock, &first->b_state);
617 local_irq_restore(flags);
618 return;
619}
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642static void mark_buffer_async_read(struct buffer_head *bh)
643{
644 bh->b_end_io = end_buffer_async_read;
645 set_buffer_async_read(bh);
646}
647
648void mark_buffer_async_write(struct buffer_head *bh)
649{
650 bh->b_end_io = end_buffer_async_write;
651 set_buffer_async_write(bh);
652}
653EXPORT_SYMBOL(mark_buffer_async_write);
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708static inline void __remove_assoc_queue(struct buffer_head *bh)
709{
710 list_del_init(&bh->b_assoc_buffers);
711}
712
713int inode_has_buffers(struct inode *inode)
714{
715 return !list_empty(&inode->i_data.private_list);
716}
717
718
719
720
721
722
723
724
725
726
727
728static int osync_buffers_list(spinlock_t *lock, struct list_head *list)
729{
730 struct buffer_head *bh;
731 struct list_head *p;
732 int err = 0;
733
734 spin_lock(lock);
735repeat:
736 list_for_each_prev(p, list) {
737 bh = BH_ENTRY(p);
738 if (buffer_locked(bh)) {
739 get_bh(bh);
740 spin_unlock(lock);
741 wait_on_buffer(bh);
742 if (!buffer_uptodate(bh))
743 err = -EIO;
744 brelse(bh);
745 spin_lock(lock);
746 goto repeat;
747 }
748 }
749 spin_unlock(lock);
750 return err;
751}
752
753
754
755
756
757
758
759
760
761
762
763
764
765int sync_mapping_buffers(struct address_space *mapping)
766{
767 struct address_space *buffer_mapping = mapping->assoc_mapping;
768
769 if (buffer_mapping == NULL || list_empty(&mapping->private_list))
770 return 0;
771
772 return fsync_buffers_list(&buffer_mapping->private_lock,
773 &mapping->private_list);
774}
775EXPORT_SYMBOL(sync_mapping_buffers);
776
777
778
779
780
781
782
783void write_boundary_block(struct block_device *bdev,
784 sector_t bblock, unsigned blocksize)
785{
786 struct buffer_head *bh = __find_get_block(bdev, bblock + 1, blocksize);
787 if (bh) {
788 if (buffer_dirty(bh))
789 ll_rw_block(WRITE, 1, &bh);
790 put_bh(bh);
791 }
792}
793
794void mark_buffer_dirty_inode(struct buffer_head *bh, struct inode *inode)
795{
796 struct address_space *mapping = inode->i_mapping;
797 struct address_space *buffer_mapping = bh->b_page->mapping;
798
799 mark_buffer_dirty(bh);
800 if (!mapping->assoc_mapping) {
801 mapping->assoc_mapping = buffer_mapping;
802 } else {
803 BUG_ON(mapping->assoc_mapping != buffer_mapping);
804 }
805 if (list_empty(&bh->b_assoc_buffers)) {
806 spin_lock(&buffer_mapping->private_lock);
807 list_move_tail(&bh->b_assoc_buffers,
808 &mapping->private_list);
809 spin_unlock(&buffer_mapping->private_lock);
810 }
811}
812EXPORT_SYMBOL(mark_buffer_dirty_inode);
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839int __set_page_dirty_buffers(struct page *page)
840{
841 struct address_space * const mapping = page->mapping;
842
843 spin_lock(&mapping->private_lock);
844 if (page_has_buffers(page)) {
845 struct buffer_head *head = page_buffers(page);
846 struct buffer_head *bh = head;
847
848 do {
849 set_buffer_dirty(bh);
850 bh = bh->b_this_page;
851 } while (bh != head);
852 }
853 spin_unlock(&mapping->private_lock);
854
855 if (!TestSetPageDirty(page)) {
856 write_lock_irq(&mapping->tree_lock);
857 if (page->mapping) {
858 if (mapping_cap_account_dirty(mapping))
859 __inc_zone_page_state(page, NR_FILE_DIRTY);
860 radix_tree_tag_set(&mapping->page_tree,
861 page_index(page),
862 PAGECACHE_TAG_DIRTY);
863 }
864 write_unlock_irq(&mapping->tree_lock);
865 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
866 return 1;
867 }
868 return 0;
869}
870EXPORT_SYMBOL(__set_page_dirty_buffers);
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891static int fsync_buffers_list(spinlock_t *lock, struct list_head *list)
892{
893 struct buffer_head *bh;
894 struct list_head tmp;
895 int err = 0, err2;
896
897 INIT_LIST_HEAD(&tmp);
898
899 spin_lock(lock);
900 while (!list_empty(list)) {
901 bh = BH_ENTRY(list->next);
902 list_del_init(&bh->b_assoc_buffers);
903 if (buffer_dirty(bh) || buffer_locked(bh)) {
904 list_add(&bh->b_assoc_buffers, &tmp);
905 if (buffer_dirty(bh)) {
906 get_bh(bh);
907 spin_unlock(lock);
908
909
910
911
912
913
914 ll_rw_block(SWRITE, 1, &bh);
915 brelse(bh);
916 spin_lock(lock);
917 }
918 }
919 }
920
921 while (!list_empty(&tmp)) {
922 bh = BH_ENTRY(tmp.prev);
923 __remove_assoc_queue(bh);
924 get_bh(bh);
925 spin_unlock(lock);
926 wait_on_buffer(bh);
927 if (!buffer_uptodate(bh))
928 err = -EIO;
929 brelse(bh);
930 spin_lock(lock);
931 }
932
933 spin_unlock(lock);
934 err2 = osync_buffers_list(lock, list);
935 if (err)
936 return err;
937 else
938 return err2;
939}
940
941
942
943
944
945
946
947
948
949
950void invalidate_inode_buffers(struct inode *inode)
951{
952 if (inode_has_buffers(inode)) {
953 struct address_space *mapping = &inode->i_data;
954 struct list_head *list = &mapping->private_list;
955 struct address_space *buffer_mapping = mapping->assoc_mapping;
956
957 spin_lock(&buffer_mapping->private_lock);
958 while (!list_empty(list))
959 __remove_assoc_queue(BH_ENTRY(list->next));
960 spin_unlock(&buffer_mapping->private_lock);
961 }
962}
963
964
965
966
967
968
969
970int remove_inode_buffers(struct inode *inode)
971{
972 int ret = 1;
973
974 if (inode_has_buffers(inode)) {
975 struct address_space *mapping = &inode->i_data;
976 struct list_head *list = &mapping->private_list;
977 struct address_space *buffer_mapping = mapping->assoc_mapping;
978
979 spin_lock(&buffer_mapping->private_lock);
980 while (!list_empty(list)) {
981 struct buffer_head *bh = BH_ENTRY(list->next);
982 if (buffer_dirty(bh)) {
983 ret = 0;
984 break;
985 }
986 __remove_assoc_queue(bh);
987 }
988 spin_unlock(&buffer_mapping->private_lock);
989 }
990 return ret;
991}
992
993
994
995
996
997
998
999
1000
1001
1002struct buffer_head *alloc_page_buffers(struct page *page, unsigned long size,
1003 int retry)
1004{
1005 struct buffer_head *bh, *head;
1006 long offset;
1007
1008try_again:
1009 head = NULL;
1010 offset = PAGE_SIZE;
1011 while ((offset -= size) >= 0) {
1012 bh = alloc_buffer_head(GFP_NOFS);
1013 if (!bh)
1014 goto no_grow;
1015
1016 bh->b_bdev = NULL;
1017 bh->b_this_page = head;
1018 bh->b_blocknr = -1;
1019 head = bh;
1020
1021 bh->b_state = 0;
1022 atomic_set(&bh->b_count, 0);
1023 bh->b_private = NULL;
1024 bh->b_size = size;
1025
1026
1027 set_bh_page(bh, page, offset);
1028
1029 init_buffer(bh, NULL, NULL);
1030 }
1031 return head;
1032
1033
1034
1035no_grow:
1036 if (head) {
1037 do {
1038 bh = head;
1039 head = head->b_this_page;
1040 free_buffer_head(bh);
1041 } while (head);
1042 }
1043
1044
1045
1046
1047
1048
1049
1050 if (!retry)
1051 return NULL;
1052
1053
1054
1055
1056
1057
1058
1059 free_more_memory();
1060 goto try_again;
1061}
1062EXPORT_SYMBOL_GPL(alloc_page_buffers);
1063
1064static inline void
1065link_dev_buffers(struct page *page, struct buffer_head *head)
1066{
1067 struct buffer_head *bh, *tail;
1068
1069 bh = head;
1070 do {
1071 tail = bh;
1072 bh = bh->b_this_page;
1073 } while (bh);
1074 tail->b_this_page = head;
1075 attach_page_buffers(page, head);
1076}
1077
1078
1079
1080
1081static void
1082init_page_buffers(struct page *page, struct block_device *bdev,
1083 sector_t block, int size)
1084{
1085 struct buffer_head *head = page_buffers(page);
1086 struct buffer_head *bh = head;
1087 int uptodate = PageUptodate(page);
1088
1089 do {
1090 if (!buffer_mapped(bh)) {
1091 init_buffer(bh, NULL, NULL);
1092 bh->b_bdev = bdev;
1093 bh->b_blocknr = block;
1094 if (uptodate)
1095 set_buffer_uptodate(bh);
1096 set_buffer_mapped(bh);
1097 }
1098 block++;
1099 bh = bh->b_this_page;
1100 } while (bh != head);
1101}
1102
1103
1104
1105
1106
1107
1108static struct page *
1109grow_dev_page(struct block_device *bdev, sector_t block,
1110 pgoff_t index, int size)
1111{
1112 struct inode *inode = bdev->bd_inode;
1113 struct page *page;
1114 struct buffer_head *bh;
1115
1116 page = find_or_create_page(inode->i_mapping, index, GFP_NOFS);
1117 if (!page)
1118 return NULL;
1119
1120 BUG_ON(!PageLocked(page));
1121
1122 if (page_has_buffers(page)) {
1123 bh = page_buffers(page);
1124 if (bh->b_size == size) {
1125 init_page_buffers(page, bdev, block, size);
1126 return page;
1127 }
1128 if (!try_to_free_buffers(page))
1129 goto failed;
1130 }
1131
1132
1133
1134
1135 bh = alloc_page_buffers(page, size, 0);
1136 if (!bh)
1137 goto failed;
1138
1139
1140
1141
1142
1143
1144 spin_lock(&inode->i_mapping->private_lock);
1145 link_dev_buffers(page, bh);
1146 init_page_buffers(page, bdev, block, size);
1147 spin_unlock(&inode->i_mapping->private_lock);
1148 return page;
1149
1150failed:
1151 BUG();
1152 unlock_page(page);
1153 page_cache_release(page);
1154 return NULL;
1155}
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166static int
1167grow_buffers(struct block_device *bdev, sector_t block, int size)
1168{
1169 struct page *page;
1170 pgoff_t index;
1171 int sizebits;
1172
1173 sizebits = -1;
1174 do {
1175 sizebits++;
1176 } while ((size << sizebits) < PAGE_SIZE);
1177
1178 index = block >> sizebits;
1179 block = index << sizebits;
1180
1181
1182 page = grow_dev_page(bdev, block, index, size);
1183 if (!page)
1184 return 0;
1185 unlock_page(page);
1186 page_cache_release(page);
1187 return 1;
1188}
1189
1190static struct buffer_head *
1191__getblk_slow(struct block_device *bdev, sector_t block, int size)
1192{
1193
1194 if (unlikely(size & (bdev_hardsect_size(bdev)-1) ||
1195 (size < 512 || size > PAGE_SIZE))) {
1196 printk(KERN_ERR "getblk(): invalid block size %d requested\n",
1197 size);
1198 printk(KERN_ERR "hardsect size: %d\n",
1199 bdev_hardsect_size(bdev));
1200
1201 dump_stack();
1202 return NULL;
1203 }
1204
1205 for (;;) {
1206 struct buffer_head * bh;
1207
1208 bh = __find_get_block(bdev, block, size);
1209 if (bh)
1210 return bh;
1211
1212 if (!grow_buffers(bdev, block, size))
1213 free_more_memory();
1214 }
1215}
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252void fastcall mark_buffer_dirty(struct buffer_head *bh)
1253{
1254 if (!buffer_dirty(bh) && !test_set_buffer_dirty(bh))
1255 __set_page_dirty_nobuffers(bh->b_page);
1256}
1257
1258
1259
1260
1261
1262
1263
1264
1265void __brelse(struct buffer_head * buf)
1266{
1267 if (atomic_read(&buf->b_count)) {
1268 put_bh(buf);
1269 return;
1270 }
1271 printk(KERN_ERR "VFS: brelse: Trying to free free buffer\n");
1272 WARN_ON(1);
1273}
1274
1275
1276
1277
1278
1279void __bforget(struct buffer_head *bh)
1280{
1281 clear_buffer_dirty(bh);
1282 if (!list_empty(&bh->b_assoc_buffers)) {
1283 struct address_space *buffer_mapping = bh->b_page->mapping;
1284
1285 spin_lock(&buffer_mapping->private_lock);
1286 list_del_init(&bh->b_assoc_buffers);
1287 spin_unlock(&buffer_mapping->private_lock);
1288 }
1289 __brelse(bh);
1290}
1291
1292static struct buffer_head *__bread_slow(struct buffer_head *bh)
1293{
1294 lock_buffer(bh);
1295 if (buffer_uptodate(bh)) {
1296 unlock_buffer(bh);
1297 return bh;
1298 } else {
1299 get_bh(bh);
1300 bh->b_end_io = end_buffer_read_sync;
1301 submit_bh(READ, bh);
1302 wait_on_buffer(bh);
1303 if (buffer_uptodate(bh))
1304 return bh;
1305 }
1306 brelse(bh);
1307 return NULL;
1308}
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324#define BH_LRU_SIZE 8
1325
1326struct bh_lru {
1327 struct buffer_head *bhs[BH_LRU_SIZE];
1328};
1329
1330static DEFINE_PER_CPU(struct bh_lru, bh_lrus) = {{ NULL }};
1331
1332#ifdef CONFIG_SMP
1333#define bh_lru_lock() local_irq_disable()
1334#define bh_lru_unlock() local_irq_enable()
1335#else
1336#define bh_lru_lock() preempt_disable()
1337#define bh_lru_unlock() preempt_enable()
1338#endif
1339
1340static inline void check_irqs_on(void)
1341{
1342#ifdef irqs_disabled
1343 BUG_ON(irqs_disabled());
1344#endif
1345}
1346
1347
1348
1349
1350static void bh_lru_install(struct buffer_head *bh)
1351{
1352 struct buffer_head *evictee = NULL;
1353 struct bh_lru *lru;
1354
1355 check_irqs_on();
1356 bh_lru_lock();
1357 lru = &__get_cpu_var(bh_lrus);
1358 if (lru->bhs[0] != bh) {
1359 struct buffer_head *bhs[BH_LRU_SIZE];
1360 int in;
1361 int out = 0;
1362
1363 get_bh(bh);
1364 bhs[out++] = bh;
1365 for (in = 0; in < BH_LRU_SIZE; in++) {
1366 struct buffer_head *bh2 = lru->bhs[in];
1367
1368 if (bh2 == bh) {
1369 __brelse(bh2);
1370 } else {
1371 if (out >= BH_LRU_SIZE) {
1372 BUG_ON(evictee != NULL);
1373 evictee = bh2;
1374 } else {
1375 bhs[out++] = bh2;
1376 }
1377 }
1378 }
1379 while (out < BH_LRU_SIZE)
1380 bhs[out++] = NULL;
1381 memcpy(lru->bhs, bhs, sizeof(bhs));
1382 }
1383 bh_lru_unlock();
1384
1385 if (evictee)
1386 __brelse(evictee);
1387}
1388
1389
1390
1391
1392static struct buffer_head *
1393lookup_bh_lru(struct block_device *bdev, sector_t block, int size)
1394{
1395 struct buffer_head *ret = NULL;
1396 struct bh_lru *lru;
1397 int i;
1398
1399 check_irqs_on();
1400 bh_lru_lock();
1401 lru = &__get_cpu_var(bh_lrus);
1402 for (i = 0; i < BH_LRU_SIZE; i++) {
1403 struct buffer_head *bh = lru->bhs[i];
1404
1405 if (bh && bh->b_bdev == bdev &&
1406 bh->b_blocknr == block && bh->b_size == size) {
1407 if (i) {
1408 while (i) {
1409 lru->bhs[i] = lru->bhs[i - 1];
1410 i--;
1411 }
1412 lru->bhs[0] = bh;
1413 }
1414 get_bh(bh);
1415 ret = bh;
1416 break;
1417 }
1418 }
1419 bh_lru_unlock();
1420 return ret;
1421}
1422
1423
1424
1425
1426
1427
1428struct buffer_head *
1429__find_get_block(struct block_device *bdev, sector_t block, int size)
1430{
1431 struct buffer_head *bh = lookup_bh_lru(bdev, block, size);
1432
1433 if (bh == NULL) {
1434 bh = __find_get_block_slow(bdev, block);
1435 if (bh)
1436 bh_lru_install(bh);
1437 }
1438 if (bh)
1439 touch_buffer(bh);
1440 return bh;
1441}
1442EXPORT_SYMBOL(__find_get_block);
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456struct buffer_head *
1457__getblk(struct block_device *bdev, sector_t block, int size)
1458{
1459 struct buffer_head *bh = __find_get_block(bdev, block, size);
1460
1461 might_sleep();
1462 if (bh == NULL)
1463 bh = __getblk_slow(bdev, block, size);
1464 return bh;
1465}
1466EXPORT_SYMBOL(__getblk);
1467
1468
1469
1470
1471void __breadahead(struct block_device *bdev, sector_t block, int size)
1472{
1473 struct buffer_head *bh = __getblk(bdev, block, size);
1474 if (likely(bh)) {
1475 ll_rw_block(READA, 1, &bh);
1476 brelse(bh);
1477 }
1478}
1479EXPORT_SYMBOL(__breadahead);
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490struct buffer_head *
1491__bread(struct block_device *bdev, sector_t block, int size)
1492{
1493 struct buffer_head *bh = __getblk(bdev, block, size);
1494
1495 if (likely(bh) && !buffer_uptodate(bh))
1496 bh = __bread_slow(bh);
1497 return bh;
1498}
1499EXPORT_SYMBOL(__bread);
1500
1501
1502
1503
1504
1505
1506static void invalidate_bh_lru(void *arg)
1507{
1508 struct bh_lru *b = &get_cpu_var(bh_lrus);
1509 int i;
1510
1511 for (i = 0; i < BH_LRU_SIZE; i++) {
1512 brelse(b->bhs[i]);
1513 b->bhs[i] = NULL;
1514 }
1515 put_cpu_var(bh_lrus);
1516}
1517
1518static void invalidate_bh_lrus(void)
1519{
1520 on_each_cpu(invalidate_bh_lru, NULL, 1, 1);
1521}
1522
1523void set_bh_page(struct buffer_head *bh,
1524 struct page *page, unsigned long offset)
1525{
1526 bh->b_page = page;
1527 BUG_ON(offset >= PAGE_SIZE);
1528 if (PageHighMem(page))
1529
1530
1531
1532 bh->b_data = (char *)(0 + offset);
1533 else
1534 bh->b_data = page_address(page) + offset;
1535}
1536EXPORT_SYMBOL(set_bh_page);
1537
1538
1539
1540
1541static void discard_buffer(struct buffer_head * bh)
1542{
1543 lock_buffer(bh);
1544 clear_buffer_dirty(bh);
1545 bh->b_bdev = NULL;
1546 clear_buffer_mapped(bh);
1547 clear_buffer_req(bh);
1548 clear_buffer_new(bh);
1549 clear_buffer_delay(bh);
1550 unlock_buffer(bh);
1551}
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568int try_to_release_page(struct page *page, gfp_t gfp_mask)
1569{
1570 struct address_space * const mapping = page->mapping;
1571
1572 BUG_ON(!PageLocked(page));
1573 if (PageWriteback(page))
1574 return 0;
1575
1576 if (mapping && mapping->a_ops->releasepage)
1577 return mapping->a_ops->releasepage(page, gfp_mask);
1578 return try_to_free_buffers(page);
1579}
1580EXPORT_SYMBOL(try_to_release_page);
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597void block_invalidatepage(struct page *page, unsigned long offset)
1598{
1599 struct buffer_head *head, *bh, *next;
1600 unsigned int curr_off = 0;
1601
1602 BUG_ON(!PageLocked(page));
1603 if (!page_has_buffers(page))
1604 goto out;
1605
1606 head = page_buffers(page);
1607 bh = head;
1608 do {
1609 unsigned int next_off = curr_off + bh->b_size;
1610 next = bh->b_this_page;
1611
1612
1613
1614
1615 if (offset <= curr_off)
1616 discard_buffer(bh);
1617 curr_off = next_off;
1618 bh = next;
1619 } while (bh != head);
1620
1621
1622
1623
1624
1625
1626 if (offset == 0)
1627 try_to_release_page(page, 0);
1628out:
1629 return;
1630}
1631EXPORT_SYMBOL(block_invalidatepage);
1632
1633void do_invalidatepage(struct page *page, unsigned long offset)
1634{
1635 void (*invalidatepage)(struct page *, unsigned long);
1636 invalidatepage = page->mapping->a_ops->invalidatepage ? :
1637 block_invalidatepage;
1638 (*invalidatepage)(page, offset);
1639}
1640
1641
1642
1643
1644
1645
1646void create_empty_buffers(struct page *page,
1647 unsigned long blocksize, unsigned long b_state)
1648{
1649 struct buffer_head *bh, *head, *tail;
1650
1651 head = alloc_page_buffers(page, blocksize, 1);
1652 bh = head;
1653 do {
1654 bh->b_state |= b_state;
1655 tail = bh;
1656 bh = bh->b_this_page;
1657 } while (bh);
1658 tail->b_this_page = head;
1659
1660 spin_lock(&page->mapping->private_lock);
1661 if (PageUptodate(page) || PageDirty(page)) {
1662 bh = head;
1663 do {
1664 if (PageDirty(page))
1665 set_buffer_dirty(bh);
1666 if (PageUptodate(page))
1667 set_buffer_uptodate(bh);
1668 bh = bh->b_this_page;
1669 } while (bh != head);
1670 }
1671 attach_page_buffers(page, head);
1672 spin_unlock(&page->mapping->private_lock);
1673}
1674EXPORT_SYMBOL(create_empty_buffers);
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692void unmap_underlying_metadata(struct block_device *bdev, sector_t block)
1693{
1694 struct buffer_head *old_bh;
1695
1696 might_sleep();
1697
1698 old_bh = __find_get_block_slow(bdev, block);
1699 if (old_bh) {
1700 clear_buffer_dirty(old_bh);
1701 wait_on_buffer(old_bh);
1702 clear_buffer_req(old_bh);
1703 __brelse(old_bh);
1704 }
1705}
1706EXPORT_SYMBOL(unmap_underlying_metadata);
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733static int __block_write_full_page(struct inode *inode, struct page *page,
1734 get_block_t *get_block, struct writeback_control *wbc)
1735{
1736 int err;
1737 sector_t block;
1738 sector_t last_block;
1739 struct buffer_head *bh, *head;
1740 const unsigned blocksize = 1 << inode->i_blkbits;
1741 int nr_underway = 0;
1742
1743 BUG_ON(!PageLocked(page));
1744
1745 last_block = (i_size_read(inode) - 1) >> inode->i_blkbits;
1746
1747 if (!page_has_buffers(page)) {
1748 create_empty_buffers(page, blocksize,
1749 (1 << BH_Dirty)|(1 << BH_Uptodate));
1750 }
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762 block = (sector_t)page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
1763 head = page_buffers(page);
1764 bh = head;
1765
1766
1767
1768
1769
1770 do {
1771 if (block > last_block) {
1772
1773
1774
1775
1776
1777
1778
1779
1780 clear_buffer_dirty(bh);
1781 set_buffer_uptodate(bh);
1782 } else if (!buffer_mapped(bh) && buffer_dirty(bh)) {
1783 WARN_ON(bh->b_size != blocksize);
1784 err = get_block(inode, block, bh, 1);
1785 if (err)
1786 goto recover;
1787 if (buffer_new(bh)) {
1788
1789 clear_buffer_new(bh);
1790 unmap_underlying_metadata(bh->b_bdev,
1791 bh->b_blocknr);
1792 }
1793 }
1794 bh = bh->b_this_page;
1795 block++;
1796 } while (bh != head);
1797
1798 do {
1799 if (!buffer_mapped(bh))
1800 continue;
1801
1802
1803
1804
1805
1806
1807
1808 if (wbc->sync_mode != WB_SYNC_NONE || !wbc->nonblocking) {
1809 lock_buffer(bh);
1810 } else if (test_set_buffer_locked(bh)) {
1811 redirty_page_for_writepage(wbc, page);
1812 continue;
1813 }
1814 if (test_clear_buffer_dirty(bh)) {
1815 mark_buffer_async_write(bh);
1816 } else {
1817 unlock_buffer(bh);
1818 }
1819 } while ((bh = bh->b_this_page) != head);
1820
1821
1822
1823
1824
1825 BUG_ON(PageWriteback(page));
1826 set_page_writeback(page);
1827
1828 do {
1829 struct buffer_head *next = bh->b_this_page;
1830 if (buffer_async_write(bh)) {
1831 submit_bh(WRITE, bh);
1832 nr_underway++;
1833 }
1834 bh = next;
1835 } while (bh != head);
1836 unlock_page(page);
1837
1838 err = 0;
1839done:
1840 if (nr_underway == 0) {
1841
1842
1843
1844
1845
1846 int uptodate = 1;
1847 do {
1848 if (!buffer_uptodate(bh)) {
1849 uptodate = 0;
1850 break;
1851 }
1852 bh = bh->b_this_page;
1853 } while (bh != head);
1854 if (uptodate)
1855 SetPageUptodate(page);
1856 end_page_writeback(page);
1857
1858
1859
1860
1861 wbc->pages_skipped++;
1862 }
1863 return err;
1864
1865recover:
1866
1867
1868
1869
1870
1871
1872 bh = head;
1873
1874 do {
1875 if (buffer_mapped(bh) && buffer_dirty(bh)) {
1876 lock_buffer(bh);
1877 mark_buffer_async_write(bh);
1878 } else {
1879
1880
1881
1882
1883 clear_buffer_dirty(bh);
1884 }
1885 } while ((bh = bh->b_this_page) != head);
1886 SetPageError(page);
1887 BUG_ON(PageWriteback(page));
1888 set_page_writeback(page);
1889 unlock_page(page);
1890 do {
1891 struct buffer_head *next = bh->b_this_page;
1892 if (buffer_async_write(bh)) {
1893 clear_buffer_dirty(bh);
1894 submit_bh(WRITE, bh);
1895 nr_underway++;
1896 }
1897 bh = next;
1898 } while (bh != head);
1899 goto done;
1900}
1901
1902static int __block_prepare_write(struct inode *inode, struct page *page,
1903 unsigned from, unsigned to, get_block_t *get_block)
1904{
1905 unsigned block_start, block_end;
1906 sector_t block;
1907 int err = 0;
1908 unsigned blocksize, bbits;
1909 struct buffer_head *bh, *head, *wait[2], **wait_bh=wait;
1910
1911 BUG_ON(!PageLocked(page));
1912 BUG_ON(from > PAGE_CACHE_SIZE);
1913 BUG_ON(to > PAGE_CACHE_SIZE);
1914 BUG_ON(from > to);
1915
1916 blocksize = 1 << inode->i_blkbits;
1917 if (!page_has_buffers(page))
1918 create_empty_buffers(page, blocksize, 0);
1919 head = page_buffers(page);
1920
1921 bbits = inode->i_blkbits;
1922 block = (sector_t)page->index << (PAGE_CACHE_SHIFT - bbits);
1923
1924 for(bh = head, block_start = 0; bh != head || !block_start;
1925 block++, block_start=block_end, bh = bh->b_this_page) {
1926 block_end = block_start + blocksize;
1927 if (block_end <= from || block_start >= to) {
1928 if (PageUptodate(page)) {
1929 if (!buffer_uptodate(bh))
1930 set_buffer_uptodate(bh);
1931 }
1932 continue;
1933 }
1934 if (buffer_new(bh))
1935 clear_buffer_new(bh);
1936 if (!buffer_mapped(bh)) {
1937 WARN_ON(bh->b_size != blocksize);
1938 err = get_block(inode, block, bh, 1);
1939 if (err)
1940 break;
1941 if (buffer_new(bh)) {
1942 unmap_underlying_metadata(bh->b_bdev,
1943 bh->b_blocknr);
1944 if (PageUptodate(page)) {
1945 set_buffer_uptodate(bh);
1946 continue;
1947 }
1948 if (block_end > to || block_start < from) {
1949 void *kaddr;
1950
1951 kaddr = kmap_atomic(page, KM_USER0);
1952 if (block_end > to)
1953 memset(kaddr+to, 0,
1954 block_end-to);
1955 if (block_start < from)
1956 memset(kaddr+block_start,
1957 0, from-block_start);
1958 flush_dcache_page(page);
1959 kunmap_atomic(kaddr, KM_USER0);
1960 }
1961 continue;
1962 }
1963 }
1964 if (PageUptodate(page)) {
1965 if (!buffer_uptodate(bh))
1966 set_buffer_uptodate(bh);
1967 continue;
1968 }
1969 if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
1970 (block_start < from || block_end > to)) {
1971 ll_rw_block(READ, 1, &bh);
1972 *wait_bh++=bh;
1973 }
1974 }
1975
1976
1977
1978 while(wait_bh > wait) {
1979 wait_on_buffer(*--wait_bh);
1980 if (!buffer_uptodate(*wait_bh))
1981 err = -EIO;
1982 }
1983 if (!err) {
1984 bh = head;
1985 do {
1986 if (buffer_new(bh))
1987 clear_buffer_new(bh);
1988 } while ((bh = bh->b_this_page) != head);
1989 return 0;
1990 }
1991
1992
1993
1994
1995
1996
1997 bh = head;
1998 block_start = 0;
1999 do {
2000 block_end = block_start+blocksize;
2001 if (block_end <= from)
2002 goto next_bh;
2003 if (block_start >= to)
2004 break;
2005 if (buffer_new(bh)) {
2006 void *kaddr;
2007
2008 clear_buffer_new(bh);
2009 kaddr = kmap_atomic(page, KM_USER0);
2010 memset(kaddr+block_start, 0, bh->b_size);
2011 kunmap_atomic(kaddr, KM_USER0);
2012 set_buffer_uptodate(bh);
2013 mark_buffer_dirty(bh);
2014 }
2015next_bh:
2016 block_start = block_end;
2017 bh = bh->b_this_page;
2018 } while (bh != head);
2019 return err;
2020}
2021
2022static int __block_commit_write(struct inode *inode, struct page *page,
2023 unsigned from, unsigned to)
2024{
2025 unsigned block_start, block_end;
2026 int partial = 0;
2027 unsigned blocksize;
2028 struct buffer_head *bh, *head;
2029
2030 blocksize = 1 << inode->i_blkbits;
2031
2032 for(bh = head = page_buffers(page), block_start = 0;
2033 bh != head || !block_start;
2034 block_start=block_end, bh = bh->b_this_page) {
2035 block_end = block_start + blocksize;
2036 if (block_end <= from || block_start >= to) {
2037 if (!buffer_uptodate(bh))
2038 partial = 1;
2039 } else {
2040 set_buffer_uptodate(bh);
2041 mark_buffer_dirty(bh);
2042 }
2043 }
2044
2045
2046
2047
2048
2049
2050
2051 if (!partial)
2052 SetPageUptodate(page);
2053 return 0;
2054}
2055
2056
2057
2058
2059
2060
2061
2062
2063int block_read_full_page(struct page *page, get_block_t *get_block)
2064{
2065 struct inode *inode = page->mapping->host;
2066 sector_t iblock, lblock;
2067 struct buffer_head *bh, *head, *arr[MAX_BUF_PER_PAGE];
2068 unsigned int blocksize;
2069 int nr, i;
2070 int fully_mapped = 1;
2071
2072 BUG_ON(!PageLocked(page));
2073 blocksize = 1 << inode->i_blkbits;
2074 if (!page_has_buffers(page))
2075 create_empty_buffers(page, blocksize, 0);
2076 head = page_buffers(page);
2077
2078 iblock = (sector_t)page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
2079 lblock = (i_size_read(inode)+blocksize-1) >> inode->i_blkbits;
2080 bh = head;
2081 nr = 0;
2082 i = 0;
2083
2084 do {
2085 if (buffer_uptodate(bh))
2086 continue;
2087
2088 if (!buffer_mapped(bh)) {
2089 int err = 0;
2090
2091 fully_mapped = 0;
2092 if (iblock < lblock) {
2093 WARN_ON(bh->b_size != blocksize);
2094 err = get_block(inode, iblock, bh, 0);
2095 if (err)
2096 SetPageError(page);
2097 }
2098 if (!buffer_mapped(bh)) {
2099 void *kaddr = kmap_atomic(page, KM_USER0);
2100 memset(kaddr + i * blocksize, 0, blocksize);
2101 flush_dcache_page(page);
2102 kunmap_atomic(kaddr, KM_USER0);
2103 if (!err)
2104 set_buffer_uptodate(bh);
2105 continue;
2106 }
2107
2108
2109
2110
2111 if (buffer_uptodate(bh))
2112 continue;
2113 }
2114 arr[nr++] = bh;
2115 } while (i++, iblock++, (bh = bh->b_this_page) != head);
2116
2117 if (fully_mapped)
2118 SetPageMappedToDisk(page);
2119
2120 if (!nr) {
2121
2122
2123
2124
2125 if (!PageError(page))
2126 SetPageUptodate(page);
2127 unlock_page(page);
2128 return 0;
2129 }
2130
2131
2132 for (i = 0; i < nr; i++) {
2133 bh = arr[i];
2134 lock_buffer(bh);
2135 mark_buffer_async_read(bh);
2136 }
2137
2138
2139
2140
2141
2142
2143 for (i = 0; i < nr; i++) {
2144 bh = arr[i];
2145 if (buffer_uptodate(bh))
2146 end_buffer_async_read(bh, 1);
2147 else
2148 submit_bh(READ, bh);
2149 }
2150 return 0;
2151}
2152
2153
2154
2155
2156
2157static int __generic_cont_expand(struct inode *inode, loff_t size,
2158 pgoff_t index, unsigned int offset)
2159{
2160 struct address_space *mapping = inode->i_mapping;
2161 struct page *page;
2162 unsigned long limit;
2163 int err;
2164
2165 err = -EFBIG;
2166 limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
2167 if (limit != RLIM_INFINITY && size > (loff_t)limit) {
2168 send_sig(SIGXFSZ, current, 0);
2169 goto out;
2170 }
2171 if (size > inode->i_sb->s_maxbytes)
2172 goto out;
2173
2174 err = -ENOMEM;
2175 page = grab_cache_page(mapping, index);
2176 if (!page)
2177 goto out;
2178 err = mapping->a_ops->prepare_write(NULL, page, offset, offset);
2179 if (err) {
2180
2181
2182
2183
2184 unlock_page(page);
2185 page_cache_release(page);
2186 vmtruncate(inode, inode->i_size);
2187 goto out;
2188 }
2189
2190 err = mapping->a_ops->commit_write(NULL, page, offset, offset);
2191
2192 unlock_page(page);
2193 page_cache_release(page);
2194 if (err > 0)
2195 err = 0;
2196out:
2197 return err;
2198}
2199
2200int generic_cont_expand(struct inode *inode, loff_t size)
2201{
2202 pgoff_t index;
2203 unsigned int offset;
2204
2205 offset = (size & (PAGE_CACHE_SIZE - 1));
2206
2207
2208
2209
2210
2211 if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
2212
2213 offset++;
2214 }
2215 index = size >> PAGE_CACHE_SHIFT;
2216
2217 return __generic_cont_expand(inode, size, index, offset);
2218}
2219
2220int generic_cont_expand_simple(struct inode *inode, loff_t size)
2221{
2222 loff_t pos = size - 1;
2223 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
2224 unsigned int offset = (pos & (PAGE_CACHE_SIZE - 1)) + 1;
2225
2226
2227 return __generic_cont_expand(inode, size, index, offset);
2228}
2229
2230
2231
2232
2233
2234
2235int cont_prepare_write(struct page *page, unsigned offset,
2236 unsigned to, get_block_t *get_block, loff_t *bytes)
2237{
2238 struct address_space *mapping = page->mapping;
2239 struct inode *inode = mapping->host;
2240 struct page *new_page;
2241 pgoff_t pgpos;
2242 long status;
2243 unsigned zerofrom;
2244 unsigned blocksize = 1 << inode->i_blkbits;
2245 void *kaddr;
2246
2247 while(page->index > (pgpos = *bytes>>PAGE_CACHE_SHIFT)) {
2248 status = -ENOMEM;
2249 new_page = grab_cache_page(mapping, pgpos);
2250 if (!new_page)
2251 goto out;
2252
2253 if (*bytes>>PAGE_CACHE_SHIFT != pgpos) {
2254 unlock_page(new_page);
2255 page_cache_release(new_page);
2256 continue;
2257 }
2258 zerofrom = *bytes & ~PAGE_CACHE_MASK;
2259 if (zerofrom & (blocksize-1)) {
2260 *bytes |= (blocksize-1);
2261 (*bytes)++;
2262 }
2263 status = __block_prepare_write(inode, new_page, zerofrom,
2264 PAGE_CACHE_SIZE, get_block);
2265 if (status)
2266 goto out_unmap;
2267 kaddr = kmap_atomic(new_page, KM_USER0);
2268 memset(kaddr+zerofrom, 0, PAGE_CACHE_SIZE-zerofrom);
2269 flush_dcache_page(new_page);
2270 kunmap_atomic(kaddr, KM_USER0);
2271 generic_commit_write(NULL, new_page, zerofrom, PAGE_CACHE_SIZE);
2272 unlock_page(new_page);
2273 page_cache_release(new_page);
2274 }
2275
2276 if (page->index < pgpos) {
2277
2278 zerofrom = offset;
2279 } else {
2280
2281 zerofrom = *bytes & ~PAGE_CACHE_MASK;
2282
2283
2284 if (to > zerofrom && (zerofrom & (blocksize-1))) {
2285 *bytes |= (blocksize-1);
2286 (*bytes)++;
2287 }
2288
2289
2290 if (offset <= zerofrom)
2291 zerofrom = offset;
2292 }
2293 status = __block_prepare_write(inode, page, zerofrom, to, get_block);
2294 if (status)
2295 goto out1;
2296 if (zerofrom < offset) {
2297 kaddr = kmap_atomic(page, KM_USER0);
2298 memset(kaddr+zerofrom, 0, offset-zerofrom);
2299 flush_dcache_page(page);
2300 kunmap_atomic(kaddr, KM_USER0);
2301 __block_commit_write(inode, page, zerofrom, offset);
2302 }
2303 return 0;
2304out1:
2305 ClearPageUptodate(page);
2306 return status;
2307
2308out_unmap:
2309 ClearPageUptodate(new_page);
2310 unlock_page(new_page);
2311 page_cache_release(new_page);
2312out:
2313 return status;
2314}
2315
2316int block_prepare_write(struct page *page, unsigned from, unsigned to,
2317 get_block_t *get_block)
2318{
2319 struct inode *inode = page->mapping->host;
2320 int err = __block_prepare_write(inode, page, from, to, get_block);
2321 if (err)
2322 ClearPageUptodate(page);
2323 return err;
2324}
2325
2326int block_commit_write(struct page *page, unsigned from, unsigned to)
2327{
2328 struct inode *inode = page->mapping->host;
2329 __block_commit_write(inode,page,from,to);
2330 return 0;
2331}
2332
2333int generic_commit_write(struct file *file, struct page *page,
2334 unsigned from, unsigned to)
2335{
2336 struct inode *inode = page->mapping->host;
2337 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
2338 __block_commit_write(inode,page,from,to);
2339
2340
2341
2342
2343 if (pos > inode->i_size) {
2344 i_size_write(inode, pos);
2345 mark_inode_dirty(inode);
2346 }
2347 return 0;
2348}
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361static void end_buffer_read_nobh(struct buffer_head *bh, int uptodate)
2362{
2363 if (uptodate) {
2364 set_buffer_uptodate(bh);
2365 } else {
2366
2367 clear_buffer_uptodate(bh);
2368 }
2369 unlock_buffer(bh);
2370}
2371
2372
2373
2374
2375
2376int nobh_prepare_write(struct page *page, unsigned from, unsigned to,
2377 get_block_t *get_block)
2378{
2379 struct inode *inode = page->mapping->host;
2380 const unsigned blkbits = inode->i_blkbits;
2381 const unsigned blocksize = 1 << blkbits;
2382 struct buffer_head map_bh;
2383 struct buffer_head *read_bh[MAX_BUF_PER_PAGE];
2384 unsigned block_in_page;
2385 unsigned block_start;
2386 sector_t block_in_file;
2387 char *kaddr;
2388 int nr_reads = 0;
2389 int i;
2390 int ret = 0;
2391 int is_mapped_to_disk = 1;
2392 int dirtied_it = 0;
2393
2394 if (PageMappedToDisk(page))
2395 return 0;
2396
2397 block_in_file = (sector_t)page->index << (PAGE_CACHE_SHIFT - blkbits);
2398 map_bh.b_page = page;
2399
2400
2401
2402
2403
2404
2405 for (block_start = 0, block_in_page = 0;
2406 block_start < PAGE_CACHE_SIZE;
2407 block_in_page++, block_start += blocksize) {
2408 unsigned block_end = block_start + blocksize;
2409 int create;
2410
2411 map_bh.b_state = 0;
2412 create = 1;
2413 if (block_start >= to)
2414 create = 0;
2415 map_bh.b_size = blocksize;
2416 ret = get_block(inode, block_in_file + block_in_page,
2417 &map_bh, create);
2418 if (ret)
2419 goto failed;
2420 if (!buffer_mapped(&map_bh))
2421 is_mapped_to_disk = 0;
2422 if (buffer_new(&map_bh))
2423 unmap_underlying_metadata(map_bh.b_bdev,
2424 map_bh.b_blocknr);
2425 if (PageUptodate(page))
2426 continue;
2427 if (buffer_new(&map_bh) || !buffer_mapped(&map_bh)) {
2428 kaddr = kmap_atomic(page, KM_USER0);
2429 if (block_start < from) {
2430 memset(kaddr+block_start, 0, from-block_start);
2431 dirtied_it = 1;
2432 }
2433 if (block_end > to) {
2434 memset(kaddr + to, 0, block_end - to);
2435 dirtied_it = 1;
2436 }
2437 flush_dcache_page(page);
2438 kunmap_atomic(kaddr, KM_USER0);
2439 continue;
2440 }
2441 if (buffer_uptodate(&map_bh))
2442 continue;
2443 if (block_start < from || block_end > to) {
2444 struct buffer_head *bh = alloc_buffer_head(GFP_NOFS);
2445
2446 if (!bh) {
2447 ret = -ENOMEM;
2448 goto failed;
2449 }
2450 bh->b_state = map_bh.b_state;
2451 atomic_set(&bh->b_count, 0);
2452 bh->b_this_page = NULL;
2453 bh->b_page = page;
2454 bh->b_blocknr = map_bh.b_blocknr;
2455 bh->b_size = blocksize;
2456 bh->b_data = (char *)(long)block_start;
2457 bh->b_bdev = map_bh.b_bdev;
2458 bh->b_private = NULL;
2459 read_bh[nr_reads++] = bh;
2460 }
2461 }
2462
2463 if (nr_reads) {
2464 struct buffer_head *bh;
2465
2466
2467
2468
2469
2470
2471 for (i = 0; i < nr_reads; i++) {
2472 bh = read_bh[i];
2473 lock_buffer(bh);
2474 bh->b_end_io = end_buffer_read_nobh;
2475 submit_bh(READ, bh);
2476 }
2477 for (i = 0; i < nr_reads; i++) {
2478 bh = read_bh[i];
2479 wait_on_buffer(bh);
2480 if (!buffer_uptodate(bh))
2481 ret = -EIO;
2482 free_buffer_head(bh);
2483 read_bh[i] = NULL;
2484 }
2485 if (ret)
2486 goto failed;
2487 }
2488
2489 if (is_mapped_to_disk)
2490 SetPageMappedToDisk(page);
2491 SetPageUptodate(page);
2492
2493
2494
2495
2496
2497
2498
2499
2500 if (dirtied_it)
2501 set_page_dirty(page);
2502
2503 return 0;
2504
2505failed:
2506 for (i = 0; i < nr_reads; i++) {
2507 if (read_bh[i])
2508 free_buffer_head(read_bh[i]);
2509 }
2510
2511
2512
2513
2514
2515 kaddr = kmap_atomic(page, KM_USER0);
2516 memset(kaddr, 0, PAGE_CACHE_SIZE);
2517 kunmap_atomic(kaddr, KM_USER0);
2518 SetPageUptodate(page);
2519 set_page_dirty(page);
2520 return ret;
2521}
2522EXPORT_SYMBOL(nobh_prepare_write);
2523
2524int nobh_commit_write(struct file *file, struct page *page,
2525 unsigned from, unsigned to)
2526{
2527 struct inode *inode = page->mapping->host;
2528 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
2529
2530 set_page_dirty(page);
2531 if (pos > inode->i_size) {
2532 i_size_write(inode, pos);
2533 mark_inode_dirty(inode);
2534 }
2535 return 0;
2536}
2537EXPORT_SYMBOL(nobh_commit_write);
2538
2539
2540
2541
2542
2543
2544int nobh_writepage(struct page *page, get_block_t *get_block,
2545 struct writeback_control *wbc)
2546{
2547 struct inode * const inode = page->mapping->host;
2548 loff_t i_size = i_size_read(inode);
2549 const pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2550 unsigned offset;
2551 void *kaddr;
2552 int ret;
2553
2554
2555 if (page->index < end_index)
2556 goto out;
2557
2558
2559 offset = i_size & (PAGE_CACHE_SIZE-1);
2560 if (page->index >= end_index+1 || !offset) {
2561
2562
2563
2564
2565
2566#if 0
2567
2568 if (page->mapping->a_ops->invalidatepage)
2569 page->mapping->a_ops->invalidatepage(page, offset);
2570#endif
2571 unlock_page(page);
2572 return 0;
2573 }
2574
2575
2576
2577
2578
2579
2580
2581
2582 kaddr = kmap_atomic(page, KM_USER0);
2583 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2584 flush_dcache_page(page);
2585 kunmap_atomic(kaddr, KM_USER0);
2586out:
2587 ret = mpage_writepage(page, get_block, wbc);
2588 if (ret == -EAGAIN)
2589 ret = __block_write_full_page(inode, page, get_block, wbc);
2590 return ret;
2591}
2592EXPORT_SYMBOL(nobh_writepage);
2593
2594
2595
2596
2597int nobh_truncate_page(struct address_space *mapping, loff_t from)
2598{
2599 struct inode *inode = mapping->host;
2600 unsigned blocksize = 1 << inode->i_blkbits;
2601 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2602 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2603 unsigned to;
2604 struct page *page;
2605 const struct address_space_operations *a_ops = mapping->a_ops;
2606 char *kaddr;
2607 int ret = 0;
2608
2609 if ((offset & (blocksize - 1)) == 0)
2610 goto out;
2611
2612 ret = -ENOMEM;
2613 page = grab_cache_page(mapping, index);
2614 if (!page)
2615 goto out;
2616
2617 to = (offset + blocksize) & ~(blocksize - 1);
2618 ret = a_ops->prepare_write(NULL, page, offset, to);
2619 if (ret == 0) {
2620 kaddr = kmap_atomic(page, KM_USER0);
2621 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2622 flush_dcache_page(page);
2623 kunmap_atomic(kaddr, KM_USER0);
2624 set_page_dirty(page);
2625 }
2626 unlock_page(page);
2627 page_cache_release(page);
2628out:
2629 return ret;
2630}
2631EXPORT_SYMBOL(nobh_truncate_page);
2632
2633int block_truncate_page(struct address_space *mapping,
2634 loff_t from, get_block_t *get_block)
2635{
2636 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2637 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2638 unsigned blocksize;
2639 sector_t iblock;
2640 unsigned length, pos;
2641 struct inode *inode = mapping->host;
2642 struct page *page;
2643 struct buffer_head *bh;
2644 void *kaddr;
2645 int err;
2646
2647 blocksize = 1 << inode->i_blkbits;
2648 length = offset & (blocksize - 1);
2649
2650
2651 if (!length)
2652 return 0;
2653
2654 length = blocksize - length;
2655 iblock = (sector_t)index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
2656
2657 page = grab_cache_page(mapping, index);
2658 err = -ENOMEM;
2659 if (!page)
2660 goto out;
2661
2662 if (!page_has_buffers(page))
2663 create_empty_buffers(page, blocksize, 0);
2664
2665
2666 bh = page_buffers(page);
2667 pos = blocksize;
2668 while (offset >= pos) {
2669 bh = bh->b_this_page;
2670 iblock++;
2671 pos += blocksize;
2672 }
2673
2674 err = 0;
2675 if (!buffer_mapped(bh)) {
2676 WARN_ON(bh->b_size != blocksize);
2677 err = get_block(inode, iblock, bh, 0);
2678 if (err)
2679 goto unlock;
2680
2681 if (!buffer_mapped(bh))
2682 goto unlock;
2683 }
2684
2685
2686 if (PageUptodate(page))
2687 set_buffer_uptodate(bh);
2688
2689 if (!buffer_uptodate(bh) && !buffer_delay(bh)) {
2690 err = -EIO;
2691 ll_rw_block(READ, 1, &bh);
2692 wait_on_buffer(bh);
2693
2694 if (!buffer_uptodate(bh))
2695 goto unlock;
2696 }
2697
2698 kaddr = kmap_atomic(page, KM_USER0);
2699 memset(kaddr + offset, 0, length);
2700 flush_dcache_page(page);
2701 kunmap_atomic(kaddr, KM_USER0);
2702
2703 mark_buffer_dirty(bh);
2704 err = 0;
2705
2706unlock:
2707 unlock_page(page);
2708 page_cache_release(page);
2709out:
2710 return err;
2711}
2712
2713
2714
2715
2716int block_write_full_page(struct page *page, get_block_t *get_block,
2717 struct writeback_control *wbc)
2718{
2719 struct inode * const inode = page->mapping->host;
2720 loff_t i_size = i_size_read(inode);
2721 const pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
2722 unsigned offset;
2723 void *kaddr;
2724
2725
2726 if (page->index < end_index)
2727 return __block_write_full_page(inode, page, get_block, wbc);
2728
2729
2730 offset = i_size & (PAGE_CACHE_SIZE-1);
2731 if (page->index >= end_index+1 || !offset) {
2732
2733
2734
2735
2736
2737 do_invalidatepage(page, 0);
2738 unlock_page(page);
2739 return 0;
2740 }
2741
2742
2743
2744
2745
2746
2747
2748
2749 kaddr = kmap_atomic(page, KM_USER0);
2750 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2751 flush_dcache_page(page);
2752 kunmap_atomic(kaddr, KM_USER0);
2753 return __block_write_full_page(inode, page, get_block, wbc);
2754}
2755
2756sector_t generic_block_bmap(struct address_space *mapping, sector_t block,
2757 get_block_t *get_block)
2758{
2759 struct buffer_head tmp;
2760 struct inode *inode = mapping->host;
2761 tmp.b_state = 0;
2762 tmp.b_blocknr = 0;
2763 tmp.b_size = 1 << inode->i_blkbits;
2764 get_block(inode, block, &tmp, 0);
2765 return tmp.b_blocknr;
2766}
2767
2768static int end_bio_bh_io_sync(struct bio *bio, unsigned int bytes_done, int err)
2769{
2770 struct buffer_head *bh = bio->bi_private;
2771
2772 if (bio->bi_size)
2773 return 1;
2774
2775 if (err == -EOPNOTSUPP) {
2776 set_bit(BIO_EOPNOTSUPP, &bio->bi_flags);
2777 set_bit(BH_Eopnotsupp, &bh->b_state);
2778 }
2779
2780 bh->b_end_io(bh, test_bit(BIO_UPTODATE, &bio->bi_flags));
2781 bio_put(bio);
2782 return 0;
2783}
2784
2785int submit_bh(int rw, struct buffer_head * bh)
2786{
2787 struct bio *bio;
2788 int ret = 0;
2789
2790 BUG_ON(!buffer_locked(bh));
2791 BUG_ON(!buffer_mapped(bh));
2792 BUG_ON(!bh->b_end_io);
2793
2794 if (buffer_ordered(bh) && (rw == WRITE))
2795 rw = WRITE_BARRIER;
2796
2797
2798
2799
2800
2801 if (test_set_buffer_req(bh) && (rw == WRITE || rw == WRITE_BARRIER))
2802 clear_buffer_write_io_error(bh);
2803
2804
2805
2806
2807
2808 bio = bio_alloc(GFP_NOIO, 1);
2809
2810 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
2811 bio->bi_bdev = bh->b_bdev;
2812 bio->bi_io_vec[0].bv_page = bh->b_page;
2813 bio->bi_io_vec[0].bv_len = bh->b_size;
2814 bio->bi_io_vec[0].bv_offset = bh_offset(bh);
2815
2816 bio->bi_vcnt = 1;
2817 bio->bi_idx = 0;
2818 bio->bi_size = bh->b_size;
2819
2820 bio->bi_end_io = end_bio_bh_io_sync;
2821 bio->bi_private = bh;
2822
2823 bio_get(bio);
2824 submit_bio(rw, bio);
2825
2826 if (bio_flagged(bio, BIO_EOPNOTSUPP))
2827 ret = -EOPNOTSUPP;
2828
2829 bio_put(bio);
2830 return ret;
2831}
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859void ll_rw_block(int rw, int nr, struct buffer_head *bhs[])
2860{
2861 int i;
2862
2863 for (i = 0; i < nr; i++) {
2864 struct buffer_head *bh = bhs[i];
2865
2866 if (rw == SWRITE)
2867 lock_buffer(bh);
2868 else if (test_set_buffer_locked(bh))
2869 continue;
2870
2871 if (rw == WRITE || rw == SWRITE) {
2872 if (test_clear_buffer_dirty(bh)) {
2873 bh->b_end_io = end_buffer_write_sync;
2874 get_bh(bh);
2875 submit_bh(WRITE, bh);
2876 continue;
2877 }
2878 } else {
2879 if (!buffer_uptodate(bh)) {
2880 bh->b_end_io = end_buffer_read_sync;
2881 get_bh(bh);
2882 submit_bh(rw, bh);
2883 continue;
2884 }
2885 }
2886 unlock_buffer(bh);
2887 }
2888}
2889
2890
2891
2892
2893
2894
2895int sync_dirty_buffer(struct buffer_head *bh)
2896{
2897 int ret = 0;
2898
2899 WARN_ON(atomic_read(&bh->b_count) < 1);
2900 lock_buffer(bh);
2901 if (test_clear_buffer_dirty(bh)) {
2902 get_bh(bh);
2903 bh->b_end_io = end_buffer_write_sync;
2904 ret = submit_bh(WRITE, bh);
2905 wait_on_buffer(bh);
2906 if (buffer_eopnotsupp(bh)) {
2907 clear_buffer_eopnotsupp(bh);
2908 ret = -EOPNOTSUPP;
2909 }
2910 if (!ret && !buffer_uptodate(bh))
2911 ret = -EIO;
2912 } else {
2913 unlock_buffer(bh);
2914 }
2915 return ret;
2916}
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938static inline int buffer_busy(struct buffer_head *bh)
2939{
2940 return atomic_read(&bh->b_count) |
2941 (bh->b_state & ((1 << BH_Dirty) | (1 << BH_Lock)));
2942}
2943
2944static int
2945drop_buffers(struct page *page, struct buffer_head **buffers_to_free)
2946{
2947 struct buffer_head *head = page_buffers(page);
2948 struct buffer_head *bh;
2949
2950 bh = head;
2951 do {
2952 if (buffer_write_io_error(bh) && page->mapping)
2953 set_bit(AS_EIO, &page->mapping->flags);
2954 if (buffer_busy(bh))
2955 goto failed;
2956 bh = bh->b_this_page;
2957 } while (bh != head);
2958
2959 do {
2960 struct buffer_head *next = bh->b_this_page;
2961
2962 if (!list_empty(&bh->b_assoc_buffers))
2963 __remove_assoc_queue(bh);
2964 bh = next;
2965 } while (bh != head);
2966 *buffers_to_free = head;
2967 __clear_page_buffers(page);
2968 return 1;
2969failed:
2970 return 0;
2971}
2972
2973int try_to_free_buffers(struct page *page)
2974{
2975 struct address_space * const mapping = page->mapping;
2976 struct buffer_head *buffers_to_free = NULL;
2977 int ret = 0;
2978
2979 BUG_ON(!PageLocked(page));
2980 if (PageWriteback(page))
2981 return 0;
2982
2983 if (mapping == NULL) {
2984 ret = drop_buffers(page, &buffers_to_free);
2985 goto out;
2986 }
2987
2988 spin_lock(&mapping->private_lock);
2989 ret = drop_buffers(page, &buffers_to_free);
2990 if (ret) {
2991
2992
2993
2994
2995
2996
2997
2998
2999 clear_page_dirty(page);
3000 }
3001 spin_unlock(&mapping->private_lock);
3002out:
3003 if (buffers_to_free) {
3004 struct buffer_head *bh = buffers_to_free;
3005
3006 do {
3007 struct buffer_head *next = bh->b_this_page;
3008 free_buffer_head(bh);
3009 bh = next;
3010 } while (bh != buffers_to_free);
3011 }
3012 return ret;
3013}
3014EXPORT_SYMBOL(try_to_free_buffers);
3015
3016void block_sync_page(struct page *page)
3017{
3018 struct address_space *mapping;
3019
3020 smp_mb();
3021 mapping = page_mapping(page);
3022 if (mapping)
3023 blk_run_backing_dev(mapping->backing_dev_info, page);
3024}
3025
3026
3027
3028
3029
3030
3031
3032
3033asmlinkage long sys_bdflush(int func, long data)
3034{
3035 static int msg_count;
3036
3037 if (!capable(CAP_SYS_ADMIN))
3038 return -EPERM;
3039
3040 if (msg_count < 5) {
3041 msg_count++;
3042 printk(KERN_INFO
3043 "warning: process `%s' used the obsolete bdflush"
3044 " system call\n", current->comm);
3045 printk(KERN_INFO "Fix your initscripts?\n");
3046 }
3047
3048 if (func == 1)
3049 do_exit(0);
3050 return 0;
3051}
3052
3053
3054
3055
3056static kmem_cache_t *bh_cachep;
3057
3058
3059
3060
3061
3062static int max_buffer_heads;
3063
3064int buffer_heads_over_limit;
3065
3066struct bh_accounting {
3067 int nr;
3068 int ratelimit;
3069};
3070
3071static DEFINE_PER_CPU(struct bh_accounting, bh_accounting) = {0, 0};
3072
3073static void recalc_bh_state(void)
3074{
3075 int i;
3076 int tot = 0;
3077
3078 if (__get_cpu_var(bh_accounting).ratelimit++ < 4096)
3079 return;
3080 __get_cpu_var(bh_accounting).ratelimit = 0;
3081 for_each_online_cpu(i)
3082 tot += per_cpu(bh_accounting, i).nr;
3083 buffer_heads_over_limit = (tot > max_buffer_heads);
3084}
3085
3086struct buffer_head *alloc_buffer_head(gfp_t gfp_flags)
3087{
3088 struct buffer_head *ret = kmem_cache_alloc(bh_cachep, gfp_flags);
3089 if (ret) {
3090 get_cpu_var(bh_accounting).nr++;
3091 recalc_bh_state();
3092 put_cpu_var(bh_accounting);
3093 }
3094 return ret;
3095}
3096EXPORT_SYMBOL(alloc_buffer_head);
3097
3098void free_buffer_head(struct buffer_head *bh)
3099{
3100 BUG_ON(!list_empty(&bh->b_assoc_buffers));
3101 kmem_cache_free(bh_cachep, bh);
3102 get_cpu_var(bh_accounting).nr--;
3103 recalc_bh_state();
3104 put_cpu_var(bh_accounting);
3105}
3106EXPORT_SYMBOL(free_buffer_head);
3107
3108static void
3109init_buffer_head(void *data, kmem_cache_t *cachep, unsigned long flags)
3110{
3111 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
3112 SLAB_CTOR_CONSTRUCTOR) {
3113 struct buffer_head * bh = (struct buffer_head *)data;
3114
3115 memset(bh, 0, sizeof(*bh));
3116 INIT_LIST_HEAD(&bh->b_assoc_buffers);
3117 }
3118}
3119
3120#ifdef CONFIG_HOTPLUG_CPU
3121static void buffer_exit_cpu(int cpu)
3122{
3123 int i;
3124 struct bh_lru *b = &per_cpu(bh_lrus, cpu);
3125
3126 for (i = 0; i < BH_LRU_SIZE; i++) {
3127 brelse(b->bhs[i]);
3128 b->bhs[i] = NULL;
3129 }
3130 get_cpu_var(bh_accounting).nr += per_cpu(bh_accounting, cpu).nr;
3131 per_cpu(bh_accounting, cpu).nr = 0;
3132 put_cpu_var(bh_accounting);
3133}
3134
3135static int buffer_cpu_notify(struct notifier_block *self,
3136 unsigned long action, void *hcpu)
3137{
3138 if (action == CPU_DEAD)
3139 buffer_exit_cpu((unsigned long)hcpu);
3140 return NOTIFY_OK;
3141}
3142#endif
3143
3144void __init buffer_init(void)
3145{
3146 int nrpages;
3147
3148 bh_cachep = kmem_cache_create("buffer_head",
3149 sizeof(struct buffer_head), 0,
3150 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
3151 SLAB_MEM_SPREAD),
3152 init_buffer_head,
3153 NULL);
3154
3155
3156
3157
3158 nrpages = (nr_free_buffer_pages() * 10) / 100;
3159 max_buffer_heads = nrpages * (PAGE_SIZE / sizeof(struct buffer_head));
3160 hotcpu_notifier(buffer_cpu_notify, 0);
3161}
3162
3163EXPORT_SYMBOL(__bforget);
3164EXPORT_SYMBOL(__brelse);
3165EXPORT_SYMBOL(__wait_on_buffer);
3166EXPORT_SYMBOL(block_commit_write);
3167EXPORT_SYMBOL(block_prepare_write);
3168EXPORT_SYMBOL(block_read_full_page);
3169EXPORT_SYMBOL(block_sync_page);
3170EXPORT_SYMBOL(block_truncate_page);
3171EXPORT_SYMBOL(block_write_full_page);
3172EXPORT_SYMBOL(cont_prepare_write);
3173EXPORT_SYMBOL(end_buffer_read_sync);
3174EXPORT_SYMBOL(end_buffer_write_sync);
3175EXPORT_SYMBOL(file_fsync);
3176EXPORT_SYMBOL(fsync_bdev);
3177EXPORT_SYMBOL(generic_block_bmap);
3178EXPORT_SYMBOL(generic_commit_write);
3179EXPORT_SYMBOL(generic_cont_expand);
3180EXPORT_SYMBOL(generic_cont_expand_simple);
3181EXPORT_SYMBOL(init_buffer);
3182EXPORT_SYMBOL(invalidate_bdev);
3183EXPORT_SYMBOL(ll_rw_block);
3184EXPORT_SYMBOL(mark_buffer_dirty);
3185EXPORT_SYMBOL(submit_bh);
3186EXPORT_SYMBOL(sync_dirty_buffer);
3187EXPORT_SYMBOL(unlock_buffer);
3188