buffer.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:74k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/buffer.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  */
  6. /*
  7.  *  'buffer.c' implements the buffer-cache functions. Race-conditions have
  8.  * been avoided by NEVER letting an interrupt change a buffer (except for the
  9.  * data, of course), but instead letting the caller do it.
  10.  */
  11. /* Start bdflush() with kernel_thread not syscall - Paul Gortmaker, 12/95 */
  12. /* Removed a lot of unnecessary code and simplified things now that
  13.  * the buffer cache isn't our primary cache - Andrew Tridgell 12/96
  14.  */
  15. /* Speed up hash, lru, and free list operations.  Use gfp() for allocating
  16.  * hash table, use SLAB cache for buffer heads. -DaveM
  17.  */
  18. /* Added 32k buffer block sizes - these are required older ARM systems.
  19.  * - RMK
  20.  */
  21. /* Thread it... -DaveM */
  22. /* async buffer flushing, 1999 Andrea Arcangeli <andrea@suse.de> */
  23. #include <linux/config.h>
  24. #include <linux/sched.h>
  25. #include <linux/fs.h>
  26. #include <linux/slab.h>
  27. #include <linux/locks.h>
  28. #include <linux/errno.h>
  29. #include <linux/swap.h>
  30. #include <linux/swapctl.h>
  31. #include <linux/smp_lock.h>
  32. #include <linux/vmalloc.h>
  33. #include <linux/blkdev.h>
  34. #include <linux/sysrq.h>
  35. #include <linux/file.h>
  36. #include <linux/init.h>
  37. #include <linux/quotaops.h>
  38. #include <linux/iobuf.h>
  39. #include <linux/highmem.h>
  40. #include <linux/module.h>
  41. #include <linux/completion.h>
  42. #include <asm/uaccess.h>
  43. #include <asm/io.h>
  44. #include <asm/bitops.h>
  45. #include <asm/mmu_context.h>
  46. #define NR_RESERVED (10*MAX_BUF_PER_PAGE)
  47. #define MAX_UNUSED_BUFFERS NR_RESERVED+20 /* don't ever have more than this 
  48.      number of unused buffer heads */
  49. /* Anti-deadlock ordering:
  50.  * lru_list_lock > hash_table_lock > unused_list_lock
  51.  */
  52. #define BH_ENTRY(list) list_entry((list), struct buffer_head, b_inode_buffers)
  53. /*
  54.  * Hash table gook..
  55.  */
  56. static unsigned int bh_hash_mask;
  57. static unsigned int bh_hash_shift;
  58. static struct buffer_head **hash_table;
  59. static rwlock_t hash_table_lock = RW_LOCK_UNLOCKED;
  60. static struct buffer_head *lru_list[NR_LIST];
  61. static spinlock_cacheline_t lru_list_lock_cacheline = {SPIN_LOCK_UNLOCKED};
  62. #define lru_list_lock  lru_list_lock_cacheline.lock
  63. static int nr_buffers_type[NR_LIST];
  64. static unsigned long size_buffers_type[NR_LIST];
  65. static struct buffer_head * unused_list;
  66. static int nr_unused_buffer_heads;
  67. static spinlock_t unused_list_lock = SPIN_LOCK_UNLOCKED;
  68. static DECLARE_WAIT_QUEUE_HEAD(buffer_wait);
  69. static int grow_buffers(kdev_t dev, unsigned long block, int size);
  70. static int osync_buffers_list(struct list_head *);
  71. static void __refile_buffer(struct buffer_head *);
  72. /* This is used by some architectures to estimate available memory. */
  73. atomic_t buffermem_pages = ATOMIC_INIT(0);
  74. /* Here is the parameter block for the bdflush process. If you add or
  75.  * remove any of the parameters, make sure to update kernel/sysctl.c
  76.  * and the documentation at linux/Documentation/sysctl/vm.txt.
  77.  */
  78. #define N_PARAM 9
  79. /* The dummy values in this structure are left in there for compatibility
  80.  * with old programs that play with the /proc entries.
  81.  */
  82. union bdflush_param {
  83. struct {
  84. int nfract; /* Percentage of buffer cache dirty to 
  85.    activate bdflush */
  86. int ndirty; /* Maximum number of dirty blocks to write out per
  87.    wake-cycle */
  88. int dummy2; /* old "nrefill" */
  89. int dummy3; /* unused */
  90. int interval; /* jiffies delay between kupdate flushes */
  91. int age_buffer; /* Time for normal buffer to age before we flush it */
  92. int nfract_sync;/* Percentage of buffer cache dirty to 
  93.    activate bdflush synchronously */
  94. int nfract_stop_bdflush; /* Percetange of buffer cache dirty to stop bdflush */
  95. int dummy5; /* unused */
  96. } b_un;
  97. unsigned int data[N_PARAM];
  98. } bdf_prm = {{30, 500, 0, 0, 5*HZ, 30*HZ, 60, 20, 0}};
  99. /* These are the min and max parameter values that we will allow to be assigned */
  100. int bdflush_min[N_PARAM] = {  0,  1,    0,   0,  0,   1*HZ,   0, 0, 0};
  101. int bdflush_max[N_PARAM] = {100,50000, 20000, 20000,10000*HZ, 10000*HZ, 100, 100, 0};
  102. void unlock_buffer(struct buffer_head *bh)
  103. {
  104. clear_bit(BH_Wait_IO, &bh->b_state);
  105. clear_bit(BH_Launder, &bh->b_state);
  106. /*
  107.  * When a locked buffer is visible to the I/O layer BH_Launder
  108.  * is set. This means before unlocking we must clear BH_Launder,
  109.  * mb() on alpha and then clear BH_Lock, so no reader can see
  110.  * BH_Launder set on an unlocked buffer and then risk to deadlock.
  111.  */
  112. smp_mb__after_clear_bit();
  113. clear_bit(BH_Lock, &bh->b_state);
  114. smp_mb__after_clear_bit();
  115. if (waitqueue_active(&bh->b_wait))
  116. wake_up(&bh->b_wait);
  117. }
  118. /*
  119.  * Note that the real wait_on_buffer() is an inline function that checks
  120.  * that the buffer is locked before calling this, so that unnecessary disk
  121.  * unplugging does not occur.
  122.  */
  123. void __wait_on_buffer(struct buffer_head * bh)
  124. {
  125. struct task_struct *tsk = current;
  126. DECLARE_WAITQUEUE(wait, tsk);
  127. get_bh(bh);
  128. add_wait_queue(&bh->b_wait, &wait);
  129. do {
  130. run_task_queue(&tq_disk);
  131. set_task_state(tsk, TASK_UNINTERRUPTIBLE);
  132. if (!buffer_locked(bh))
  133. break;
  134. schedule();
  135. } while (buffer_locked(bh));
  136. tsk->state = TASK_RUNNING;
  137. remove_wait_queue(&bh->b_wait, &wait);
  138. put_bh(bh);
  139. }
  140. /*
  141.  * Default synchronous end-of-IO handler..  Just mark it up-to-date and
  142.  * unlock the buffer. This is what ll_rw_block uses too.
  143.  */
  144. void end_buffer_io_sync(struct buffer_head *bh, int uptodate)
  145. {
  146. mark_buffer_uptodate(bh, uptodate);
  147. unlock_buffer(bh);
  148. put_bh(bh);
  149. }
  150. /*
  151.  * The buffers have been marked clean and locked.  Just submit the dang
  152.  * things.. 
  153.  */
  154. static void write_locked_buffers(struct buffer_head **array, unsigned int count)
  155. {
  156. do {
  157. struct buffer_head * bh = *array++;
  158. bh->b_end_io = end_buffer_io_sync;
  159. submit_bh(WRITE, bh);
  160. } while (--count);
  161. }
  162. /*
  163.  * Write some buffers from the head of the dirty queue.
  164.  *
  165.  * This must be called with the LRU lock held, and will
  166.  * return without it!
  167.  */
  168. #define NRSYNC (32)
  169. static int write_some_buffers(kdev_t dev)
  170. {
  171. struct buffer_head *next;
  172. struct buffer_head *array[NRSYNC];
  173. unsigned int count;
  174. int nr;
  175. next = lru_list[BUF_DIRTY];
  176. nr = nr_buffers_type[BUF_DIRTY];
  177. count = 0;
  178. while (next && --nr >= 0) {
  179. struct buffer_head * bh = next;
  180. next = bh->b_next_free;
  181. if (dev != NODEV && bh->b_dev != dev)
  182. continue;
  183. if (test_and_set_bit(BH_Lock, &bh->b_state))
  184. continue;
  185. if (atomic_set_buffer_clean(bh)) {
  186. __refile_buffer(bh);
  187. get_bh(bh);
  188. array[count++] = bh;
  189. if (count < NRSYNC)
  190. continue;
  191. spin_unlock(&lru_list_lock);
  192. write_locked_buffers(array, count);
  193. return -EAGAIN;
  194. }
  195. unlock_buffer(bh);
  196. __refile_buffer(bh);
  197. }
  198. spin_unlock(&lru_list_lock);
  199. if (count)
  200. write_locked_buffers(array, count);
  201. return 0;
  202. }
  203. /*
  204.  * Write out all buffers on the dirty list.
  205.  */
  206. static void write_unlocked_buffers(kdev_t dev)
  207. {
  208. do
  209. spin_lock(&lru_list_lock);
  210. while (write_some_buffers(dev));
  211. }
  212. /*
  213.  * Wait for a buffer on the proper list.
  214.  *
  215.  * This must be called with the LRU lock held, and
  216.  * will return with it released.
  217.  */
  218. static int wait_for_buffers(kdev_t dev, int index, int refile)
  219. {
  220. struct buffer_head * next;
  221. int nr;
  222. next = lru_list[index];
  223. nr = nr_buffers_type[index];
  224. while (next && --nr >= 0) {
  225. struct buffer_head *bh = next;
  226. next = bh->b_next_free;
  227. if (!buffer_locked(bh)) {
  228. if (refile)
  229. __refile_buffer(bh);
  230. continue;
  231. }
  232. if (dev != NODEV && bh->b_dev != dev)
  233. continue;
  234. get_bh(bh);
  235. spin_unlock(&lru_list_lock);
  236. wait_on_buffer (bh);
  237. put_bh(bh);
  238. return -EAGAIN;
  239. }
  240. spin_unlock(&lru_list_lock);
  241. return 0;
  242. }
  243. static int wait_for_locked_buffers(kdev_t dev, int index, int refile)
  244. {
  245. do {
  246. spin_lock(&lru_list_lock);
  247. } while (wait_for_buffers(dev, index, refile));
  248. return 0;
  249. }
  250. /* Call sync_buffers with wait!=0 to ensure that the call does not
  251.  * return until all buffer writes have completed.  Sync() may return
  252.  * before the writes have finished; fsync() may not.
  253.  */
  254. /* Godamity-damn.  Some buffers (bitmaps for filesystems)
  255.  * spontaneously dirty themselves without ever brelse being called.
  256.  * We will ultimately want to put these in a separate list, but for
  257.  * now we search all of the lists for dirty buffers.
  258.  */
  259. int sync_buffers(kdev_t dev, int wait)
  260. {
  261. int err = 0;
  262. /* One pass for no-wait, three for wait:
  263.  * 0) write out all dirty, unlocked buffers;
  264.  * 1) wait for all dirty locked buffers;
  265.  * 2) write out all dirty, unlocked buffers;
  266.  * 2) wait for completion by waiting for all buffers to unlock.
  267.  */
  268. write_unlocked_buffers(dev);
  269. if (wait) {
  270. err = wait_for_locked_buffers(dev, BUF_DIRTY, 0);
  271. write_unlocked_buffers(dev);
  272. err |= wait_for_locked_buffers(dev, BUF_LOCKED, 1);
  273. }
  274. return err;
  275. }
  276. int fsync_super(struct super_block *sb)
  277. {
  278. kdev_t dev = sb->s_dev;
  279. sync_buffers(dev, 0);
  280. lock_kernel();
  281. sync_inodes_sb(sb);
  282. DQUOT_SYNC(dev);
  283. lock_super(sb);
  284. if (sb->s_dirt && sb->s_op && sb->s_op->write_super)
  285. sb->s_op->write_super(sb);
  286. unlock_super(sb);
  287. unlock_kernel();
  288. return sync_buffers(dev, 1);
  289. }
  290. int fsync_no_super(kdev_t dev)
  291. {
  292. sync_buffers(dev, 0);
  293. return sync_buffers(dev, 1);
  294. }
  295. int fsync_dev(kdev_t dev)
  296. {
  297. sync_buffers(dev, 0);
  298. lock_kernel();
  299. sync_inodes(dev);
  300. DQUOT_SYNC(dev);
  301. sync_supers(dev);
  302. unlock_kernel();
  303. return sync_buffers(dev, 1);
  304. }
  305. /*
  306.  * There's no real reason to pretend we should
  307.  * ever do anything differently
  308.  */
  309. void sync_dev(kdev_t dev)
  310. {
  311. fsync_dev(dev);
  312. }
  313. asmlinkage long sys_sync(void)
  314. {
  315. fsync_dev(0);
  316. return 0;
  317. }
  318. /*
  319.  * filp may be NULL if called via the msync of a vma.
  320.  */
  321.  
  322. int file_fsync(struct file *filp, struct dentry *dentry, int datasync)
  323. {
  324. struct inode * inode = dentry->d_inode;
  325. struct super_block * sb;
  326. kdev_t dev;
  327. int ret;
  328. lock_kernel();
  329. /* sync the inode to buffers */
  330. write_inode_now(inode, 0);
  331. /* sync the superblock to buffers */
  332. sb = inode->i_sb;
  333. lock_super(sb);
  334. if (sb->s_op && sb->s_op->write_super)
  335. sb->s_op->write_super(sb);
  336. unlock_super(sb);
  337. /* .. finally sync the buffers to disk */
  338. dev = inode->i_dev;
  339. ret = sync_buffers(dev, 1);
  340. unlock_kernel();
  341. return ret;
  342. }
  343. asmlinkage long sys_fsync(unsigned int fd)
  344. {
  345. struct file * file;
  346. struct dentry * dentry;
  347. struct inode * inode;
  348. int ret, err;
  349. ret = -EBADF;
  350. file = fget(fd);
  351. if (!file)
  352. goto out;
  353. dentry = file->f_dentry;
  354. inode = dentry->d_inode;
  355. ret = -EINVAL;
  356. if (!file->f_op || !file->f_op->fsync) {
  357. /* Why?  We can still call filemap_fdatasync */
  358. goto out_putf;
  359. }
  360. /* We need to protect against concurrent writers.. */
  361. down(&inode->i_sem);
  362. ret = filemap_fdatasync(inode->i_mapping);
  363. err = file->f_op->fsync(file, dentry, 0);
  364. if (err && !ret)
  365. ret = err;
  366. err = filemap_fdatawait(inode->i_mapping);
  367. if (err && !ret)
  368. ret = err;
  369. up(&inode->i_sem);
  370. out_putf:
  371. fput(file);
  372. out:
  373. return ret;
  374. }
  375. asmlinkage long sys_fdatasync(unsigned int fd)
  376. {
  377. struct file * file;
  378. struct dentry * dentry;
  379. struct inode * inode;
  380. int ret, err;
  381. ret = -EBADF;
  382. file = fget(fd);
  383. if (!file)
  384. goto out;
  385. dentry = file->f_dentry;
  386. inode = dentry->d_inode;
  387. ret = -EINVAL;
  388. if (!file->f_op || !file->f_op->fsync)
  389. goto out_putf;
  390. down(&inode->i_sem);
  391. ret = filemap_fdatasync(inode->i_mapping);
  392. err = file->f_op->fsync(file, dentry, 1);
  393. if (err && !ret)
  394. ret = err;
  395. err = filemap_fdatawait(inode->i_mapping);
  396. if (err && !ret)
  397. ret = err;
  398. up(&inode->i_sem);
  399. out_putf:
  400. fput(file);
  401. out:
  402. return ret;
  403. }
  404. /* After several hours of tedious analysis, the following hash
  405.  * function won.  Do not mess with it... -DaveM
  406.  */
  407. #define _hashfn(dev,block)
  408. ((((dev)<<(bh_hash_shift - 6)) ^ ((dev)<<(bh_hash_shift - 9))) ^ 
  409.  (((block)<<(bh_hash_shift - 6)) ^ ((block) >> 13) ^ 
  410.   ((block) << (bh_hash_shift - 12))))
  411. #define hash(dev,block) hash_table[(_hashfn(HASHDEV(dev),block) & bh_hash_mask)]
  412. static inline void __insert_into_hash_list(struct buffer_head *bh)
  413. {
  414. struct buffer_head **head = &hash(bh->b_dev, bh->b_blocknr);
  415. struct buffer_head *next = *head;
  416. *head = bh;
  417. bh->b_pprev = head;
  418. bh->b_next = next;
  419. if (next != NULL)
  420. next->b_pprev = &bh->b_next;
  421. }
  422. static __inline__ void __hash_unlink(struct buffer_head *bh)
  423. {
  424. struct buffer_head **pprev = bh->b_pprev;
  425. if (pprev) {
  426. struct buffer_head *next = bh->b_next;
  427. if (next)
  428. next->b_pprev = pprev;
  429. *pprev = next;
  430. bh->b_pprev = NULL;
  431. }
  432. }
  433. static void __insert_into_lru_list(struct buffer_head * bh, int blist)
  434. {
  435. struct buffer_head **bhp = &lru_list[blist];
  436. if (bh->b_prev_free || bh->b_next_free) BUG();
  437. if(!*bhp) {
  438. *bhp = bh;
  439. bh->b_prev_free = bh;
  440. }
  441. bh->b_next_free = *bhp;
  442. bh->b_prev_free = (*bhp)->b_prev_free;
  443. (*bhp)->b_prev_free->b_next_free = bh;
  444. (*bhp)->b_prev_free = bh;
  445. nr_buffers_type[blist]++;
  446. size_buffers_type[blist] += bh->b_size;
  447. }
  448. static void __remove_from_lru_list(struct buffer_head * bh)
  449. {
  450. struct buffer_head *next = bh->b_next_free;
  451. if (next) {
  452. struct buffer_head *prev = bh->b_prev_free;
  453. int blist = bh->b_list;
  454. prev->b_next_free = next;
  455. next->b_prev_free = prev;
  456. if (lru_list[blist] == bh) {
  457. if (next == bh)
  458. next = NULL;
  459. lru_list[blist] = next;
  460. }
  461. bh->b_next_free = NULL;
  462. bh->b_prev_free = NULL;
  463. nr_buffers_type[blist]--;
  464. size_buffers_type[blist] -= bh->b_size;
  465. }
  466. }
  467. /* must be called with both the hash_table_lock and the lru_list_lock
  468.    held */
  469. static void __remove_from_queues(struct buffer_head *bh)
  470. {
  471. __hash_unlink(bh);
  472. __remove_from_lru_list(bh);
  473. }
  474. static void remove_from_queues(struct buffer_head *bh)
  475. {
  476. spin_lock(&lru_list_lock);
  477. write_lock(&hash_table_lock);
  478. __remove_from_queues(bh);
  479. write_unlock(&hash_table_lock);
  480. spin_unlock(&lru_list_lock);
  481. }
  482. struct buffer_head * get_hash_table(kdev_t dev, int block, int size)
  483. {
  484. struct buffer_head *bh, **p = &hash(dev, block);
  485. read_lock(&hash_table_lock);
  486. for (;;) {
  487. bh = *p;
  488. if (!bh)
  489. break;
  490. p = &bh->b_next;
  491. if (bh->b_blocknr != block)
  492. continue;
  493. if (bh->b_size != size)
  494. continue;
  495. if (bh->b_dev != dev)
  496. continue;
  497. get_bh(bh);
  498. break;
  499. }
  500. read_unlock(&hash_table_lock);
  501. return bh;
  502. }
  503. void buffer_insert_inode_queue(struct buffer_head *bh, struct inode *inode)
  504. {
  505. spin_lock(&lru_list_lock);
  506. if (bh->b_inode)
  507. list_del(&bh->b_inode_buffers);
  508. bh->b_inode = inode;
  509. list_add(&bh->b_inode_buffers, &inode->i_dirty_buffers);
  510. spin_unlock(&lru_list_lock);
  511. }
  512. void buffer_insert_inode_data_queue(struct buffer_head *bh, struct inode *inode)
  513. {
  514. spin_lock(&lru_list_lock);
  515. if (bh->b_inode)
  516. list_del(&bh->b_inode_buffers);
  517. bh->b_inode = inode;
  518. list_add(&bh->b_inode_buffers, &inode->i_dirty_data_buffers);
  519. spin_unlock(&lru_list_lock);
  520. }
  521. /* The caller must have the lru_list lock before calling the 
  522.    remove_inode_queue functions.  */
  523. static void __remove_inode_queue(struct buffer_head *bh)
  524. {
  525. bh->b_inode = NULL;
  526. list_del(&bh->b_inode_buffers);
  527. }
  528. static inline void remove_inode_queue(struct buffer_head *bh)
  529. {
  530. if (bh->b_inode)
  531. __remove_inode_queue(bh);
  532. }
  533. int inode_has_buffers(struct inode *inode)
  534. {
  535. int ret;
  536. spin_lock(&lru_list_lock);
  537. ret = !list_empty(&inode->i_dirty_buffers) || !list_empty(&inode->i_dirty_data_buffers);
  538. spin_unlock(&lru_list_lock);
  539. return ret;
  540. }
  541. /* If invalidate_buffers() will trash dirty buffers, it means some kind
  542.    of fs corruption is going on. Trashing dirty data always imply losing
  543.    information that was supposed to be just stored on the physical layer
  544.    by the user.
  545.    Thus invalidate_buffers in general usage is not allwowed to trash
  546.    dirty buffers. For example ioctl(FLSBLKBUF) expects dirty data to
  547.    be preserved.  These buffers are simply skipped.
  548.   
  549.    We also skip buffers which are still in use.  For example this can
  550.    happen if a userspace program is reading the block device.
  551.    NOTE: In the case where the user removed a removable-media-disk even if
  552.    there's still dirty data not synced on disk (due a bug in the device driver
  553.    or due an error of the user), by not destroying the dirty buffers we could
  554.    generate corruption also on the next media inserted, thus a parameter is
  555.    necessary to handle this case in the most safe way possible (trying
  556.    to not corrupt also the new disk inserted with the data belonging to
  557.    the old now corrupted disk). Also for the ramdisk the natural thing
  558.    to do in order to release the ramdisk memory is to destroy dirty buffers.
  559.    These are two special cases. Normal usage imply the device driver
  560.    to issue a sync on the device (without waiting I/O completion) and
  561.    then an invalidate_buffers call that doesn't trash dirty buffers.
  562.    For handling cache coherency with the blkdev pagecache the 'update' case
  563.    is been introduced. It is needed to re-read from disk any pinned
  564.    buffer. NOTE: re-reading from disk is destructive so we can do it only
  565.    when we assume nobody is changing the buffercache under our I/O and when
  566.    we think the disk contains more recent information than the buffercache.
  567.    The update == 1 pass marks the buffers we need to update, the update == 2
  568.    pass does the actual I/O. */
  569. void invalidate_bdev(struct block_device *bdev, int destroy_dirty_buffers)
  570. {
  571. int i, nlist, slept;
  572. struct buffer_head * bh, * bh_next;
  573. kdev_t dev = to_kdev_t(bdev->bd_dev); /* will become bdev */
  574.  retry:
  575. slept = 0;
  576. spin_lock(&lru_list_lock);
  577. for(nlist = 0; nlist < NR_LIST; nlist++) {
  578. bh = lru_list[nlist];
  579. if (!bh)
  580. continue;
  581. for (i = nr_buffers_type[nlist]; i > 0 ; bh = bh_next, i--) {
  582. bh_next = bh->b_next_free;
  583. /* Another device? */
  584. if (bh->b_dev != dev)
  585. continue;
  586. /* Not hashed? */
  587. if (!bh->b_pprev)
  588. continue;
  589. if (buffer_locked(bh)) {
  590. get_bh(bh);
  591. spin_unlock(&lru_list_lock);
  592. wait_on_buffer(bh);
  593. slept = 1;
  594. spin_lock(&lru_list_lock);
  595. put_bh(bh);
  596. }
  597. write_lock(&hash_table_lock);
  598. /* All buffers in the lru lists are mapped */
  599. if (!buffer_mapped(bh))
  600. BUG();
  601. if (buffer_dirty(bh))
  602. printk("invalidate: dirty buffern");
  603. if (!atomic_read(&bh->b_count)) {
  604. if (destroy_dirty_buffers || !buffer_dirty(bh)) {
  605. remove_inode_queue(bh);
  606. }
  607. } else
  608. printk("invalidate: busy buffern");
  609. write_unlock(&hash_table_lock);
  610. if (slept)
  611. goto out;
  612. }
  613. }
  614. out:
  615. spin_unlock(&lru_list_lock);
  616. if (slept)
  617. goto retry;
  618. /* Get rid of the page cache */
  619. invalidate_inode_pages(bdev->bd_inode);
  620. }
  621. void __invalidate_buffers(kdev_t dev, int destroy_dirty_buffers)
  622. {
  623. struct block_device *bdev = bdget(dev);
  624. if (bdev) {
  625. invalidate_bdev(bdev, destroy_dirty_buffers);
  626. bdput(bdev);
  627. }
  628. }
  629. static void free_more_memory(void)
  630. {
  631. balance_dirty();
  632. wakeup_bdflush();
  633. try_to_free_pages(GFP_NOIO);
  634. run_task_queue(&tq_disk);
  635. yield();
  636. }
  637. void init_buffer(struct buffer_head *bh, bh_end_io_t *handler, void *private)
  638. {
  639. bh->b_list = BUF_CLEAN;
  640. bh->b_end_io = handler;
  641. bh->b_private = private;
  642. }
  643. static void end_buffer_io_async(struct buffer_head * bh, int uptodate)
  644. {
  645. static spinlock_t page_uptodate_lock = SPIN_LOCK_UNLOCKED;
  646. unsigned long flags;
  647. struct buffer_head *tmp;
  648. struct page *page;
  649. int fullup = 1;
  650. mark_buffer_uptodate(bh, uptodate);
  651. /* This is a temporary buffer used for page I/O. */
  652. page = bh->b_page;
  653. if (!uptodate)
  654. SetPageError(page);
  655. /*
  656.  * Be _very_ careful from here on. Bad things can happen if
  657.  * two buffer heads end IO at almost the same time and both
  658.  * decide that the page is now completely done.
  659.  *
  660.  * Async buffer_heads are here only as labels for IO, and get
  661.  * thrown away once the IO for this page is complete.  IO is
  662.  * deemed complete once all buffers have been visited
  663.  * (b_count==0) and are now unlocked. We must make sure that
  664.  * only the _last_ buffer that decrements its count is the one
  665.  * that unlock the page..
  666.  */
  667. spin_lock_irqsave(&page_uptodate_lock, flags);
  668. mark_buffer_async(bh, 0);
  669. unlock_buffer(bh);
  670. tmp = bh->b_this_page;
  671. while (tmp != bh) {
  672. if (buffer_locked(tmp)) {
  673. if (buffer_async(tmp))
  674. goto still_busy;
  675. } else if (!buffer_uptodate(tmp))
  676. fullup = 0;
  677. tmp = tmp->b_this_page;
  678. }
  679. /* OK, the async IO on this page is complete. */
  680. spin_unlock_irqrestore(&page_uptodate_lock, flags);
  681. /*
  682.  * If none of the buffers had errors and all were uptodate
  683.  * then we can set the page uptodate:
  684.  */
  685. if (fullup && !PageError(page))
  686. SetPageUptodate(page);
  687. UnlockPage(page);
  688. return;
  689. still_busy:
  690. spin_unlock_irqrestore(&page_uptodate_lock, flags);
  691. return;
  692. }
  693. inline void set_buffer_async_io(struct buffer_head *bh)
  694. {
  695. bh->b_end_io = end_buffer_io_async;
  696. mark_buffer_async(bh, 1);
  697. }
  698. /*
  699.  * Synchronise all the inode's dirty buffers to the disk.
  700.  *
  701.  * We have conflicting pressures: we want to make sure that all
  702.  * initially dirty buffers get waited on, but that any subsequently
  703.  * dirtied buffers don't.  After all, we don't want fsync to last
  704.  * forever if somebody is actively writing to the file.
  705.  *
  706.  * Do this in two main stages: first we copy dirty buffers to a
  707.  * temporary inode list, queueing the writes as we go.  Then we clean
  708.  * up, waiting for those writes to complete.
  709.  * 
  710.  * During this second stage, any subsequent updates to the file may end
  711.  * up refiling the buffer on the original inode's dirty list again, so
  712.  * there is a chance we will end up with a buffer queued for write but
  713.  * not yet completed on that list.  So, as a final cleanup we go through
  714.  * the osync code to catch these locked, dirty buffers without requeuing
  715.  * any newly dirty buffers for write.
  716.  */
  717. int fsync_buffers_list(struct list_head *list)
  718. {
  719. struct buffer_head *bh;
  720. struct inode tmp;
  721. int err = 0, err2;
  722. INIT_LIST_HEAD(&tmp.i_dirty_buffers);
  723. spin_lock(&lru_list_lock);
  724. while (!list_empty(list)) {
  725. bh = BH_ENTRY(list->next);
  726. list_del(&bh->b_inode_buffers);
  727. if (!buffer_dirty(bh) && !buffer_locked(bh))
  728. bh->b_inode = NULL;
  729. else {
  730. bh->b_inode = &tmp;
  731. list_add(&bh->b_inode_buffers, &tmp.i_dirty_buffers);
  732. if (buffer_dirty(bh)) {
  733. get_bh(bh);
  734. spin_unlock(&lru_list_lock);
  735. /*
  736.  * Wait I/O completion before submitting
  737.  * the buffer, to be sure the write will
  738.  * be effective on the latest data in
  739.  * the buffer. (otherwise - if there's old
  740.  * I/O in flight - write_buffer would become
  741.  * a noop)
  742.  */
  743. wait_on_buffer(bh);
  744. ll_rw_block(WRITE, 1, &bh);
  745. brelse(bh);
  746. spin_lock(&lru_list_lock);
  747. }
  748. }
  749. }
  750. while (!list_empty(&tmp.i_dirty_buffers)) {
  751. bh = BH_ENTRY(tmp.i_dirty_buffers.prev);
  752. remove_inode_queue(bh);
  753. get_bh(bh);
  754. spin_unlock(&lru_list_lock);
  755. wait_on_buffer(bh);
  756. if (!buffer_uptodate(bh))
  757. err = -EIO;
  758. brelse(bh);
  759. spin_lock(&lru_list_lock);
  760. }
  761. spin_unlock(&lru_list_lock);
  762. err2 = osync_buffers_list(list);
  763. if (err)
  764. return err;
  765. else
  766. return err2;
  767. }
  768. /*
  769.  * osync is designed to support O_SYNC io.  It waits synchronously for
  770.  * all already-submitted IO to complete, but does not queue any new
  771.  * writes to the disk.
  772.  *
  773.  * To do O_SYNC writes, just queue the buffer writes with ll_rw_block as
  774.  * you dirty the buffers, and then use osync_buffers_list to wait for
  775.  * completion.  Any other dirty buffers which are not yet queued for
  776.  * write will not be flushed to disk by the osync.
  777.  */
  778. static int osync_buffers_list(struct list_head *list)
  779. {
  780. struct buffer_head *bh;
  781. struct list_head *p;
  782. int err = 0;
  783. spin_lock(&lru_list_lock);
  784.  repeat:
  785. list_for_each_prev(p, list) {
  786. bh = BH_ENTRY(p);
  787. if (buffer_locked(bh)) {
  788. get_bh(bh);
  789. spin_unlock(&lru_list_lock);
  790. wait_on_buffer(bh);
  791. if (!buffer_uptodate(bh))
  792. err = -EIO;
  793. brelse(bh);
  794. spin_lock(&lru_list_lock);
  795. goto repeat;
  796. }
  797. }
  798. spin_unlock(&lru_list_lock);
  799. return err;
  800. }
  801. /*
  802.  * Invalidate any and all dirty buffers on a given inode.  We are
  803.  * probably unmounting the fs, but that doesn't mean we have already
  804.  * done a sync().  Just drop the buffers from the inode list.
  805.  */
  806. void invalidate_inode_buffers(struct inode *inode)
  807. {
  808. struct list_head * entry;
  809. spin_lock(&lru_list_lock);
  810. while ((entry = inode->i_dirty_buffers.next) != &inode->i_dirty_buffers)
  811. remove_inode_queue(BH_ENTRY(entry));
  812. while ((entry = inode->i_dirty_data_buffers.next) != &inode->i_dirty_data_buffers)
  813. remove_inode_queue(BH_ENTRY(entry));
  814. spin_unlock(&lru_list_lock);
  815. }
  816. /*
  817.  * Ok, this is getblk, and it isn't very clear, again to hinder
  818.  * race-conditions. Most of the code is seldom used, (ie repeating),
  819.  * so it should be much more efficient than it looks.
  820.  *
  821.  * The algorithm is changed: hopefully better, and an elusive bug removed.
  822.  *
  823.  * 14.02.92: changed it to sync dirty buffers a bit: better performance
  824.  * when the filesystem starts to get full of dirty blocks (I hope).
  825.  */
  826. struct buffer_head * getblk(kdev_t dev, int block, int size)
  827. {
  828. for (;;) {
  829. struct buffer_head * bh;
  830. bh = get_hash_table(dev, block, size);
  831. if (bh) {
  832. touch_buffer(bh);
  833. return bh;
  834. }
  835. if (!grow_buffers(dev, block, size))
  836. free_more_memory();
  837. }
  838. }
  839. /* -1 -> no need to flush
  840.     0 -> async flush
  841.     1 -> sync flush (wait for I/O completion) */
  842. static int balance_dirty_state(void)
  843. {
  844. unsigned long dirty, tot, hard_dirty_limit, soft_dirty_limit;
  845. dirty = size_buffers_type[BUF_DIRTY] >> PAGE_SHIFT;
  846. tot = nr_free_buffer_pages();
  847. dirty *= 100;
  848. soft_dirty_limit = tot * bdf_prm.b_un.nfract;
  849. hard_dirty_limit = tot * bdf_prm.b_un.nfract_sync;
  850. /* First, check for the "real" dirty limit. */
  851. if (dirty > soft_dirty_limit) {
  852. if (dirty > hard_dirty_limit && !(current->flags & PF_NOIO))
  853. return 1;
  854. return 0;
  855. }
  856. return -1;
  857. }
  858. static int bdflush_stop(void)
  859. {
  860. unsigned long dirty, tot, dirty_limit;
  861. dirty = size_buffers_type[BUF_DIRTY] >> PAGE_SHIFT;
  862. tot = nr_free_buffer_pages();
  863. dirty *= 100;
  864. dirty_limit = tot * bdf_prm.b_un.nfract_stop_bdflush;
  865. if (dirty > dirty_limit)
  866. return 0;
  867. return 1;
  868. }
  869. /*
  870.  * if a new dirty buffer is created we need to balance bdflush.
  871.  *
  872.  * in the future we might want to make bdflush aware of different
  873.  * pressures on different devices - thus the (currently unused)
  874.  * 'dev' parameter.
  875.  */
  876. void balance_dirty(void)
  877. {
  878. int state = balance_dirty_state();
  879. if (state < 0)
  880. return;
  881. wakeup_bdflush();
  882. /*
  883.  * And if we're _really_ out of balance, wait for
  884.  * some of the dirty/locked buffers ourselves.
  885.  * This will throttle heavy writers.
  886.  */
  887. if (state > 0) {
  888. spin_lock(&lru_list_lock);
  889. write_some_buffers(NODEV);
  890. }
  891. }
  892. inline void __mark_dirty(struct buffer_head *bh)
  893. {
  894. bh->b_flushtime = jiffies + bdf_prm.b_un.age_buffer;
  895. refile_buffer(bh);
  896. }
  897. /* atomic version, the user must call balance_dirty() by hand
  898.    as soon as it become possible to block */
  899. void __mark_buffer_dirty(struct buffer_head *bh)
  900. {
  901. if (!atomic_set_buffer_dirty(bh))
  902. __mark_dirty(bh);
  903. }
  904. void mark_buffer_dirty(struct buffer_head *bh)
  905. {
  906. if (!atomic_set_buffer_dirty(bh)) {
  907. __mark_dirty(bh);
  908. balance_dirty();
  909. }
  910. }
  911. void set_buffer_flushtime(struct buffer_head *bh)
  912. {
  913. bh->b_flushtime = jiffies + bdf_prm.b_un.age_buffer;
  914. }
  915. EXPORT_SYMBOL(set_buffer_flushtime);
  916. /*
  917.  * A buffer may need to be moved from one buffer list to another
  918.  * (e.g. in case it is not shared any more). Handle this.
  919.  */
  920. static void __refile_buffer(struct buffer_head *bh)
  921. {
  922. int dispose = BUF_CLEAN;
  923. if (buffer_locked(bh))
  924. dispose = BUF_LOCKED;
  925. if (buffer_dirty(bh))
  926. dispose = BUF_DIRTY;
  927. if (dispose != bh->b_list) {
  928. __remove_from_lru_list(bh);
  929. bh->b_list = dispose;
  930. if (dispose == BUF_CLEAN)
  931. remove_inode_queue(bh);
  932. __insert_into_lru_list(bh, dispose);
  933. }
  934. }
  935. void refile_buffer(struct buffer_head *bh)
  936. {
  937. spin_lock(&lru_list_lock);
  938. __refile_buffer(bh);
  939. spin_unlock(&lru_list_lock);
  940. }
  941. /*
  942.  * Release a buffer head
  943.  */
  944. void __brelse(struct buffer_head * buf)
  945. {
  946. if (atomic_read(&buf->b_count)) {
  947. put_bh(buf);
  948. return;
  949. }
  950. printk(KERN_ERR "VFS: brelse: Trying to free free buffern");
  951. }
  952. /*
  953.  * bforget() is like brelse(), except it discards any
  954.  * potentially dirty data.
  955.  */
  956. void __bforget(struct buffer_head * buf)
  957. {
  958. mark_buffer_clean(buf);
  959. __brelse(buf);
  960. }
  961. /**
  962.  * bread() - reads a specified block and returns the bh
  963.  * @block: number of block
  964.  * @size: size (in bytes) to read
  965.  * 
  966.  * Reads a specified block, and returns buffer head that
  967.  * contains it. It returns NULL if the block was unreadable.
  968.  */
  969. struct buffer_head * bread(kdev_t dev, int block, int size)
  970. {
  971. struct buffer_head * bh;
  972. bh = getblk(dev, block, size);
  973. if (buffer_uptodate(bh))
  974. return bh;
  975. ll_rw_block(READ, 1, &bh);
  976. wait_on_buffer(bh);
  977. if (buffer_uptodate(bh))
  978. return bh;
  979. brelse(bh);
  980. return NULL;
  981. }
  982. /*
  983.  * Note: the caller should wake up the buffer_wait list if needed.
  984.  */
  985. static void __put_unused_buffer_head(struct buffer_head * bh)
  986. {
  987. if (bh->b_inode)
  988. BUG();
  989. if (nr_unused_buffer_heads >= MAX_UNUSED_BUFFERS) {
  990. kmem_cache_free(bh_cachep, bh);
  991. } else {
  992. bh->b_dev = B_FREE;
  993. bh->b_blocknr = -1;
  994. bh->b_this_page = NULL;
  995. nr_unused_buffer_heads++;
  996. bh->b_next_free = unused_list;
  997. unused_list = bh;
  998. }
  999. }
  1000. void put_unused_buffer_head(struct buffer_head *bh)
  1001. {
  1002. spin_lock(&unused_list_lock);
  1003. __put_unused_buffer_head(bh);
  1004. spin_unlock(&unused_list_lock);
  1005. }
  1006. EXPORT_SYMBOL(put_unused_buffer_head);
  1007. /*
  1008.  * Reserve NR_RESERVED buffer heads for async IO requests to avoid
  1009.  * no-buffer-head deadlock.  Return NULL on failure; waiting for
  1010.  * buffer heads is now handled in create_buffers().
  1011.  */ 
  1012. struct buffer_head * get_unused_buffer_head(int async)
  1013. {
  1014. struct buffer_head * bh;
  1015. spin_lock(&unused_list_lock);
  1016. if (nr_unused_buffer_heads > NR_RESERVED) {
  1017. bh = unused_list;
  1018. unused_list = bh->b_next_free;
  1019. nr_unused_buffer_heads--;
  1020. spin_unlock(&unused_list_lock);
  1021. return bh;
  1022. }
  1023. spin_unlock(&unused_list_lock);
  1024. /* This is critical.  We can't call out to the FS
  1025.  * to get more buffer heads, because the FS may need
  1026.  * more buffer-heads itself.  Thus SLAB_NOFS.
  1027.  */
  1028. if((bh = kmem_cache_alloc(bh_cachep, SLAB_NOFS)) != NULL) {
  1029. bh->b_blocknr = -1;
  1030. bh->b_this_page = NULL;
  1031. return bh;
  1032. }
  1033. /*
  1034.  * If we need an async buffer, use the reserved buffer heads.
  1035.  */
  1036. if (async) {
  1037. spin_lock(&unused_list_lock);
  1038. if (unused_list) {
  1039. bh = unused_list;
  1040. unused_list = bh->b_next_free;
  1041. nr_unused_buffer_heads--;
  1042. spin_unlock(&unused_list_lock);
  1043. return bh;
  1044. }
  1045. spin_unlock(&unused_list_lock);
  1046. }
  1047. return NULL;
  1048. }
  1049. EXPORT_SYMBOL(get_unused_buffer_head);
  1050. void set_bh_page (struct buffer_head *bh, struct page *page, unsigned long offset)
  1051. {
  1052. if (offset >= PAGE_SIZE)
  1053. BUG();
  1054. /*
  1055.  * page_address will return NULL anyways for highmem pages
  1056.  */
  1057. bh->b_data = page_address(page) + offset;
  1058. bh->b_page = page;
  1059. }
  1060. EXPORT_SYMBOL(set_bh_page);
  1061. /*
  1062.  * Create the appropriate buffers when given a page for data area and
  1063.  * the size of each buffer.. Use the bh->b_this_page linked list to
  1064.  * follow the buffers created.  Return NULL if unable to create more
  1065.  * buffers.
  1066.  * The async flag is used to differentiate async IO (paging, swapping)
  1067.  * from ordinary buffer allocations, and only async requests are allowed
  1068.  * to sleep waiting for buffer heads. 
  1069.  */
  1070. static struct buffer_head * create_buffers(struct page * page, unsigned long size, int async)
  1071. {
  1072. struct buffer_head *bh, *head;
  1073. long offset;
  1074. try_again:
  1075. head = NULL;
  1076. offset = PAGE_SIZE;
  1077. while ((offset -= size) >= 0) {
  1078. bh = get_unused_buffer_head(async);
  1079. if (!bh)
  1080. goto no_grow;
  1081. bh->b_dev = NODEV;
  1082. bh->b_this_page = head;
  1083. head = bh;
  1084. bh->b_state = 0;
  1085. bh->b_next_free = NULL;
  1086. bh->b_pprev = NULL;
  1087. atomic_set(&bh->b_count, 0);
  1088. bh->b_size = size;
  1089. set_bh_page(bh, page, offset);
  1090. bh->b_list = BUF_CLEAN;
  1091. bh->b_end_io = NULL;
  1092. }
  1093. return head;
  1094. /*
  1095.  * In case anything failed, we just free everything we got.
  1096.  */
  1097. no_grow:
  1098. if (head) {
  1099. spin_lock(&unused_list_lock);
  1100. do {
  1101. bh = head;
  1102. head = head->b_this_page;
  1103. __put_unused_buffer_head(bh);
  1104. } while (head);
  1105. spin_unlock(&unused_list_lock);
  1106. /* Wake up any waiters ... */
  1107. wake_up(&buffer_wait);
  1108. }
  1109. /*
  1110.  * Return failure for non-async IO requests.  Async IO requests
  1111.  * are not allowed to fail, so we have to wait until buffer heads
  1112.  * become available.  But we don't want tasks sleeping with 
  1113.  * partially complete buffers, so all were released above.
  1114.  */
  1115. if (!async)
  1116. return NULL;
  1117. /* We're _really_ low on memory. Now we just
  1118.  * wait for old buffer heads to become free due to
  1119.  * finishing IO.  Since this is an async request and
  1120.  * the reserve list is empty, we're sure there are 
  1121.  * async buffer heads in use.
  1122.  */
  1123. run_task_queue(&tq_disk);
  1124. free_more_memory();
  1125. goto try_again;
  1126. }
  1127. /*
  1128.  * Called when truncating a buffer on a page completely.
  1129.  */
  1130. static void discard_buffer(struct buffer_head * bh)
  1131. {
  1132. if (buffer_mapped(bh)) {
  1133. mark_buffer_clean(bh);
  1134. lock_buffer(bh);
  1135. clear_bit(BH_Uptodate, &bh->b_state);
  1136. clear_bit(BH_Mapped, &bh->b_state);
  1137. clear_bit(BH_Req, &bh->b_state);
  1138. clear_bit(BH_New, &bh->b_state);
  1139. remove_from_queues(bh);
  1140. unlock_buffer(bh);
  1141. }
  1142. }
  1143. /**
  1144.  * try_to_release_page - release old fs-specific metadata on a page
  1145.  *
  1146.  */
  1147. int try_to_release_page(struct page * page, int gfp_mask)
  1148. {
  1149. if (!PageLocked(page))
  1150. BUG();
  1151. if (!page->mapping)
  1152. goto try_to_free;
  1153. if (!page->mapping->a_ops->releasepage)
  1154. goto try_to_free;
  1155. if (page->mapping->a_ops->releasepage(page, gfp_mask))
  1156. goto try_to_free;
  1157. /*
  1158.  * We couldn't release buffer metadata; don't even bother trying
  1159.  * to release buffers.
  1160.  */
  1161. return 0;
  1162. try_to_free:
  1163. return try_to_free_buffers(page, gfp_mask);
  1164. }
  1165. /*
  1166.  * We don't have to release all buffers here, but
  1167.  * we have to be sure that no dirty buffer is left
  1168.  * and no IO is going on (no buffer is locked), because
  1169.  * we have truncated the file and are going to free the
  1170.  * blocks on-disk..
  1171.  */
  1172. int discard_bh_page(struct page *page, unsigned long offset, int drop_pagecache)
  1173. {
  1174. struct buffer_head *head, *bh, *next;
  1175. unsigned int curr_off = 0;
  1176. if (!PageLocked(page))
  1177. BUG();
  1178. if (!page->buffers)
  1179. return 1;
  1180. head = page->buffers;
  1181. bh = head;
  1182. do {
  1183. unsigned int next_off = curr_off + bh->b_size;
  1184. next = bh->b_this_page;
  1185. /*
  1186.  * is this block fully flushed?
  1187.  */
  1188. if (offset <= curr_off)
  1189. discard_buffer(bh);
  1190. curr_off = next_off;
  1191. bh = next;
  1192. } while (bh != head);
  1193. /*
  1194.  * subtle. We release buffer-heads only if this is
  1195.  * the 'final' flushpage. We have invalidated the get_block
  1196.  * cached value unconditionally, so real IO is not
  1197.  * possible anymore.
  1198.  *
  1199.  * If the free doesn't work out, the buffers can be
  1200.  * left around - they just turn into anonymous buffers
  1201.  * instead.
  1202.  */
  1203. if (!offset) {
  1204. if (!try_to_release_page(page, 0))
  1205. return 0;
  1206. }
  1207. return 1;
  1208. }
  1209. void create_empty_buffers(struct page *page, kdev_t dev, unsigned long blocksize)
  1210. {
  1211. struct buffer_head *bh, *head, *tail;
  1212. /* FIXME: create_buffers should fail if there's no enough memory */
  1213. head = create_buffers(page, blocksize, 1);
  1214. if (page->buffers)
  1215. BUG();
  1216. bh = head;
  1217. do {
  1218. bh->b_dev = dev;
  1219. bh->b_blocknr = 0;
  1220. bh->b_end_io = NULL;
  1221. tail = bh;
  1222. bh = bh->b_this_page;
  1223. } while (bh);
  1224. tail->b_this_page = head;
  1225. page->buffers = head;
  1226. page_cache_get(page);
  1227. }
  1228. EXPORT_SYMBOL(create_empty_buffers);
  1229. /*
  1230.  * We are taking a block for data and we don't want any output from any
  1231.  * buffer-cache aliases starting from return from that function and
  1232.  * until the moment when something will explicitly mark the buffer
  1233.  * dirty (hopefully that will not happen until we will free that block ;-)
  1234.  * We don't even need to mark it not-uptodate - nobody can expect
  1235.  * anything from a newly allocated buffer anyway. We used to used
  1236.  * unmap_buffer() for such invalidation, but that was wrong. We definitely
  1237.  * don't want to mark the alias unmapped, for example - it would confuse
  1238.  * anyone who might pick it with bread() afterwards...
  1239.  */
  1240. static void unmap_underlying_metadata(struct buffer_head * bh)
  1241. {
  1242. struct buffer_head *old_bh;
  1243. old_bh = get_hash_table(bh->b_dev, bh->b_blocknr, bh->b_size);
  1244. if (old_bh) {
  1245. mark_buffer_clean(old_bh);
  1246. wait_on_buffer(old_bh);
  1247. clear_bit(BH_Req, &old_bh->b_state);
  1248. __brelse(old_bh);
  1249. }
  1250. }
  1251. /*
  1252.  * NOTE! All mapped/uptodate combinations are valid:
  1253.  *
  1254.  * Mapped Uptodate Meaning
  1255.  *
  1256.  * No No "unknown" - must do get_block()
  1257.  * No Yes "hole" - zero-filled
  1258.  * Yes No "allocated" - allocated on disk, not read in
  1259.  * Yes Yes "valid" - allocated and up-to-date in memory.
  1260.  *
  1261.  * "Dirty" is valid only with the last case (mapped+uptodate).
  1262.  */
  1263. /*
  1264.  * block_write_full_page() is SMP threaded - the kernel lock is not held.
  1265.  */
  1266. static int __block_write_full_page(struct inode *inode, struct page *page, get_block_t *get_block)
  1267. {
  1268. int err, i;
  1269. unsigned long block;
  1270. struct buffer_head *bh, *head;
  1271. int need_unlock;
  1272. if (!PageLocked(page))
  1273. BUG();
  1274. if (!page->buffers)
  1275. create_empty_buffers(page, inode->i_dev, 1 << inode->i_blkbits);
  1276. head = page->buffers;
  1277. block = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
  1278. bh = head;
  1279. i = 0;
  1280. /* Stage 1: make sure we have all the buffers mapped! */
  1281. do {
  1282. /*
  1283.  * If the buffer isn't up-to-date, we can't be sure
  1284.  * that the buffer has been initialized with the proper
  1285.  * block number information etc..
  1286.  *
  1287.  * Leave it to the low-level FS to make all those
  1288.  * decisions (block #0 may actually be a valid block)
  1289.  */
  1290. if (!buffer_mapped(bh)) {
  1291. err = get_block(inode, block, bh, 1);
  1292. if (err)
  1293. goto out;
  1294. if (buffer_new(bh))
  1295. unmap_underlying_metadata(bh);
  1296. }
  1297. bh = bh->b_this_page;
  1298. block++;
  1299. } while (bh != head);
  1300. /* Stage 2: lock the buffers, mark them clean */
  1301. do {
  1302. lock_buffer(bh);
  1303. set_buffer_async_io(bh);
  1304. set_bit(BH_Uptodate, &bh->b_state);
  1305. clear_bit(BH_Dirty, &bh->b_state);
  1306. bh = bh->b_this_page;
  1307. } while (bh != head);
  1308. /* Stage 3: submit the IO */
  1309. do {
  1310. struct buffer_head *next = bh->b_this_page;
  1311. submit_bh(WRITE, bh);
  1312. bh = next;
  1313. } while (bh != head);
  1314. /* Done - end_buffer_io_async will unlock */
  1315. SetPageUptodate(page);
  1316. return 0;
  1317. out:
  1318. /*
  1319.  * ENOSPC, or some other error.  We may already have added some
  1320.  * blocks to the file, so we need to write these out to avoid
  1321.  * exposing stale data.
  1322.  */
  1323. ClearPageUptodate(page);
  1324. bh = head;
  1325. need_unlock = 1;
  1326. /* Recovery: lock and submit the mapped buffers */
  1327. do {
  1328. if (buffer_mapped(bh)) {
  1329. lock_buffer(bh);
  1330. set_buffer_async_io(bh);
  1331. need_unlock = 0;
  1332. }
  1333. bh = bh->b_this_page;
  1334. } while (bh != head);
  1335. do {
  1336. struct buffer_head *next = bh->b_this_page;
  1337. if (buffer_mapped(bh)) {
  1338. set_bit(BH_Uptodate, &bh->b_state);
  1339. clear_bit(BH_Dirty, &bh->b_state);
  1340. submit_bh(WRITE, bh);
  1341. }
  1342. bh = next;
  1343. } while (bh != head);
  1344. if (need_unlock)
  1345. UnlockPage(page);
  1346. return err;
  1347. }
  1348. static int __block_prepare_write(struct inode *inode, struct page *page,
  1349. unsigned from, unsigned to, get_block_t *get_block)
  1350. {
  1351. unsigned block_start, block_end;
  1352. unsigned long block;
  1353. int err = 0;
  1354. unsigned blocksize, bbits;
  1355. struct buffer_head *bh, *head, *wait[2], **wait_bh=wait;
  1356. char *kaddr = kmap(page);
  1357. blocksize = 1 << inode->i_blkbits;
  1358. if (!page->buffers)
  1359. create_empty_buffers(page, inode->i_dev, blocksize);
  1360. head = page->buffers;
  1361. bbits = inode->i_blkbits;
  1362. block = page->index << (PAGE_CACHE_SHIFT - bbits);
  1363. for(bh = head, block_start = 0; bh != head || !block_start;
  1364.     block++, block_start=block_end, bh = bh->b_this_page) {
  1365. if (!bh)
  1366. BUG();
  1367. block_end = block_start+blocksize;
  1368. if (block_end <= from)
  1369. continue;
  1370. if (block_start >= to)
  1371. break;
  1372. clear_bit(BH_New, &bh->b_state);
  1373. if (!buffer_mapped(bh)) {
  1374. err = get_block(inode, block, bh, 1);
  1375. if (err)
  1376. goto out;
  1377. if (buffer_new(bh)) {
  1378. unmap_underlying_metadata(bh);
  1379. if (Page_Uptodate(page)) {
  1380. set_bit(BH_Uptodate, &bh->b_state);
  1381. continue;
  1382. }
  1383. if (block_end > to)
  1384. memset(kaddr+to, 0, block_end-to);
  1385. if (block_start < from)
  1386. memset(kaddr+block_start, 0, from-block_start);
  1387. if (block_end > to || block_start < from)
  1388. flush_dcache_page(page);
  1389. continue;
  1390. }
  1391. }
  1392. if (Page_Uptodate(page)) {
  1393. set_bit(BH_Uptodate, &bh->b_state);
  1394. continue; 
  1395. }
  1396. if (!buffer_uptodate(bh) &&
  1397.      (block_start < from || block_end > to)) {
  1398. ll_rw_block(READ, 1, &bh);
  1399. *wait_bh++=bh;
  1400. }
  1401. }
  1402. /*
  1403.  * If we issued read requests - let them complete.
  1404.  */
  1405. while(wait_bh > wait) {
  1406. wait_on_buffer(*--wait_bh);
  1407. if (!buffer_uptodate(*wait_bh))
  1408. return -EIO;
  1409. }
  1410. return 0;
  1411. out:
  1412. /*
  1413.  * Zero out any newly allocated blocks to avoid exposing stale
  1414.  * data.  If BH_New is set, we know that the block was newly
  1415.  * allocated in the above loop.
  1416.  *
  1417.  * Details the buffer can be new and uptodate because:
  1418.  * 1) hole in uptodate page, get_block(create) allocate the block,
  1419.  *    so the buffer is new and additionally we also mark it uptodate
  1420.  * 2) The buffer is not mapped and uptodate due a previous partial read.
  1421.  *
  1422.  * We can always ignore uptodate buffers here, if you mark a buffer
  1423.  * uptodate you must make sure it contains the right data first.
  1424.  *
  1425.  * We must stop the "undo/clear" fixup pass not at the caller "to"
  1426.  * but at the last block that we successfully arrived in the main loop.
  1427.  */
  1428. bh = head;
  1429. to = block_start; /* stop at the last successfully handled block */
  1430. block_start = 0;
  1431. do {
  1432. block_end = block_start+blocksize;
  1433. if (block_end <= from)
  1434. goto next_bh;
  1435. if (block_start >= to)
  1436. break;
  1437. if (buffer_new(bh) && !buffer_uptodate(bh)) {
  1438. memset(kaddr+block_start, 0, bh->b_size);
  1439. flush_dcache_page(page);
  1440. set_bit(BH_Uptodate, &bh->b_state);
  1441. mark_buffer_dirty(bh);
  1442. }
  1443. next_bh:
  1444. block_start = block_end;
  1445. bh = bh->b_this_page;
  1446. } while (bh != head);
  1447. return err;
  1448. }
  1449. static int __block_commit_write(struct inode *inode, struct page *page,
  1450. unsigned from, unsigned to)
  1451. {
  1452. unsigned block_start, block_end;
  1453. int partial = 0, need_balance_dirty = 0;
  1454. unsigned blocksize;
  1455. struct buffer_head *bh, *head;
  1456. blocksize = 1 << inode->i_blkbits;
  1457. for(bh = head = page->buffers, block_start = 0;
  1458.     bh != head || !block_start;
  1459.     block_start=block_end, bh = bh->b_this_page) {
  1460. block_end = block_start + blocksize;
  1461. if (block_end <= from || block_start >= to) {
  1462. if (!buffer_uptodate(bh))
  1463. partial = 1;
  1464. } else {
  1465. set_bit(BH_Uptodate, &bh->b_state);
  1466. if (!atomic_set_buffer_dirty(bh)) {
  1467. __mark_dirty(bh);
  1468. buffer_insert_inode_data_queue(bh, inode);
  1469. need_balance_dirty = 1;
  1470. }
  1471. }
  1472. }
  1473. if (need_balance_dirty)
  1474. balance_dirty();
  1475. /*
  1476.  * is this a partial write that happened to make all buffers
  1477.  * uptodate then we can optimize away a bogus readpage() for
  1478.  * the next read(). Here we 'discover' wether the page went
  1479.  * uptodate as a result of this (potentially partial) write.
  1480.  */
  1481. if (!partial)
  1482. SetPageUptodate(page);
  1483. return 0;
  1484. }
  1485. /*
  1486.  * Generic "read page" function for block devices that have the normal
  1487.  * get_block functionality. This is most of the block device filesystems.
  1488.  * Reads the page asynchronously --- the unlock_buffer() and
  1489.  * mark_buffer_uptodate() functions propagate buffer state into the
  1490.  * page struct once IO has completed.
  1491.  */
  1492. int block_read_full_page(struct page *page, get_block_t *get_block)
  1493. {
  1494. struct inode *inode = page->mapping->host;
  1495. unsigned long iblock, lblock;
  1496. struct buffer_head *bh, *head, *arr[MAX_BUF_PER_PAGE];
  1497. unsigned int blocksize, blocks;
  1498. int nr, i;
  1499. if (!PageLocked(page))
  1500. PAGE_BUG(page);
  1501. blocksize = 1 << inode->i_blkbits;
  1502. if (!page->buffers)
  1503. create_empty_buffers(page, inode->i_dev, blocksize);
  1504. head = page->buffers;
  1505. blocks = PAGE_CACHE_SIZE >> inode->i_blkbits;
  1506. iblock = page->index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
  1507. lblock = (inode->i_size+blocksize-1) >> inode->i_blkbits;
  1508. bh = head;
  1509. nr = 0;
  1510. i = 0;
  1511. do {
  1512. if (buffer_uptodate(bh))
  1513. continue;
  1514. if (!buffer_mapped(bh)) {
  1515. if (iblock < lblock) {
  1516. if (get_block(inode, iblock, bh, 0))
  1517. continue;
  1518. }
  1519. if (!buffer_mapped(bh)) {
  1520. memset(kmap(page) + i*blocksize, 0, blocksize);
  1521. flush_dcache_page(page);
  1522. kunmap(page);
  1523. set_bit(BH_Uptodate, &bh->b_state);
  1524. continue;
  1525. }
  1526. /* get_block() might have updated the buffer synchronously */
  1527. if (buffer_uptodate(bh))
  1528. continue;
  1529. }
  1530. arr[nr] = bh;
  1531. nr++;
  1532. } while (i++, iblock++, (bh = bh->b_this_page) != head);
  1533. if (!nr) {
  1534. /*
  1535.  * all buffers are uptodate - we can set the page
  1536.  * uptodate as well.
  1537.  */
  1538. SetPageUptodate(page);
  1539. UnlockPage(page);
  1540. return 0;
  1541. }
  1542. /* Stage two: lock the buffers */
  1543. for (i = 0; i < nr; i++) {
  1544. struct buffer_head * bh = arr[i];
  1545. lock_buffer(bh);
  1546. set_buffer_async_io(bh);
  1547. }
  1548. /* Stage 3: start the IO */
  1549. for (i = 0; i < nr; i++) {
  1550. struct buffer_head * bh = arr[i];
  1551. if (buffer_uptodate(bh))
  1552. end_buffer_io_async(bh, 1);
  1553. else
  1554. submit_bh(READ, bh);
  1555. }
  1556. return 0;
  1557. }
  1558. /* utility function for filesystems that need to do work on expanding
  1559.  * truncates.  Uses prepare/commit_write to allow the filesystem to
  1560.  * deal with the hole.  
  1561.  */
  1562. int generic_cont_expand(struct inode *inode, loff_t size)
  1563. {
  1564. struct address_space *mapping = inode->i_mapping;
  1565. struct page *page;
  1566. unsigned long index, offset, limit;
  1567. int err;
  1568. err = -EFBIG;
  1569.         limit = current->rlim[RLIMIT_FSIZE].rlim_cur;
  1570. if (limit != RLIM_INFINITY && size > (loff_t)limit) {
  1571. send_sig(SIGXFSZ, current, 0);
  1572. goto out;
  1573. }
  1574. if (size > inode->i_sb->s_maxbytes)
  1575. goto out;
  1576. offset = (size & (PAGE_CACHE_SIZE-1)); /* Within page */
  1577. /* ugh.  in prepare/commit_write, if from==to==start of block, we 
  1578. ** skip the prepare.  make sure we never send an offset for the start
  1579. ** of a block
  1580. */
  1581. if ((offset & (inode->i_sb->s_blocksize - 1)) == 0) {
  1582. offset++;
  1583. }
  1584. index = size >> PAGE_CACHE_SHIFT;
  1585. err = -ENOMEM;
  1586. page = grab_cache_page(mapping, index);
  1587. if (!page)
  1588. goto out;
  1589. err = mapping->a_ops->prepare_write(NULL, page, offset, offset);
  1590. if (!err) {
  1591. err = mapping->a_ops->commit_write(NULL, page, offset, offset);
  1592. }
  1593. UnlockPage(page);
  1594. page_cache_release(page);
  1595. if (err > 0)
  1596. err = 0;
  1597. out:
  1598. return err;
  1599. }
  1600. /*
  1601.  * For moronic filesystems that do not allow holes in file.
  1602.  * We may have to extend the file.
  1603.  */
  1604. int cont_prepare_write(struct page *page, unsigned offset, unsigned to, get_block_t *get_block, unsigned long *bytes)
  1605. {
  1606. struct address_space *mapping = page->mapping;
  1607. struct inode *inode = mapping->host;
  1608. struct page *new_page;
  1609. unsigned long pgpos;
  1610. long status;
  1611. unsigned zerofrom;
  1612. unsigned blocksize = 1 << inode->i_blkbits;
  1613. char *kaddr;
  1614. while(page->index > (pgpos = *bytes>>PAGE_CACHE_SHIFT)) {
  1615. status = -ENOMEM;
  1616. new_page = grab_cache_page(mapping, pgpos);
  1617. if (!new_page)
  1618. goto out;
  1619. /* we might sleep */
  1620. if (*bytes>>PAGE_CACHE_SHIFT != pgpos) {
  1621. UnlockPage(new_page);
  1622. page_cache_release(new_page);
  1623. continue;
  1624. }
  1625. zerofrom = *bytes & ~PAGE_CACHE_MASK;
  1626. if (zerofrom & (blocksize-1)) {
  1627. *bytes |= (blocksize-1);
  1628. (*bytes)++;
  1629. }
  1630. status = __block_prepare_write(inode, new_page, zerofrom,
  1631. PAGE_CACHE_SIZE, get_block);
  1632. if (status)
  1633. goto out_unmap;
  1634. kaddr = page_address(new_page);
  1635. memset(kaddr+zerofrom, 0, PAGE_CACHE_SIZE-zerofrom);
  1636. flush_dcache_page(new_page);
  1637. __block_commit_write(inode, new_page, zerofrom, PAGE_CACHE_SIZE);
  1638. kunmap(new_page);
  1639. UnlockPage(new_page);
  1640. page_cache_release(new_page);
  1641. }
  1642. if (page->index < pgpos) {
  1643. /* completely inside the area */
  1644. zerofrom = offset;
  1645. } else {
  1646. /* page covers the boundary, find the boundary offset */
  1647. zerofrom = *bytes & ~PAGE_CACHE_MASK;
  1648. /* if we will expand the thing last block will be filled */
  1649. if (to > zerofrom && (zerofrom & (blocksize-1))) {
  1650. *bytes |= (blocksize-1);
  1651. (*bytes)++;
  1652. }
  1653. /* starting below the boundary? Nothing to zero out */
  1654. if (offset <= zerofrom)
  1655. zerofrom = offset;
  1656. }
  1657. status = __block_prepare_write(inode, page, zerofrom, to, get_block);
  1658. if (status)
  1659. goto out1;
  1660. kaddr = page_address(page);
  1661. if (zerofrom < offset) {
  1662. memset(kaddr+zerofrom, 0, offset-zerofrom);
  1663. flush_dcache_page(page);
  1664. __block_commit_write(inode, page, zerofrom, offset);
  1665. }
  1666. return 0;
  1667. out1:
  1668. ClearPageUptodate(page);
  1669. kunmap(page);
  1670. return status;
  1671. out_unmap:
  1672. ClearPageUptodate(new_page);
  1673. kunmap(new_page);
  1674. UnlockPage(new_page);
  1675. page_cache_release(new_page);
  1676. out:
  1677. return status;
  1678. }
  1679. int block_prepare_write(struct page *page, unsigned from, unsigned to,
  1680. get_block_t *get_block)
  1681. {
  1682. struct inode *inode = page->mapping->host;
  1683. int err = __block_prepare_write(inode, page, from, to, get_block);
  1684. if (err) {
  1685. ClearPageUptodate(page);
  1686. kunmap(page);
  1687. }
  1688. return err;
  1689. }
  1690. int block_commit_write(struct page *page, unsigned from, unsigned to)
  1691. {
  1692. struct inode *inode = page->mapping->host;
  1693. __block_commit_write(inode,page,from,to);
  1694. kunmap(page);
  1695. return 0;
  1696. }
  1697. int generic_commit_write(struct file *file, struct page *page,
  1698. unsigned from, unsigned to)
  1699. {
  1700. struct inode *inode = page->mapping->host;
  1701. loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
  1702. __block_commit_write(inode,page,from,to);
  1703. kunmap(page);
  1704. if (pos > inode->i_size) {
  1705. inode->i_size = pos;
  1706. mark_inode_dirty(inode);
  1707. }
  1708. return 0;
  1709. }
  1710. int block_truncate_page(struct address_space *mapping, loff_t from, get_block_t *get_block)
  1711. {
  1712. unsigned long index = from >> PAGE_CACHE_SHIFT;
  1713. unsigned offset = from & (PAGE_CACHE_SIZE-1);
  1714. unsigned blocksize, iblock, length, pos;
  1715. struct inode *inode = mapping->host;
  1716. struct page *page;
  1717. struct buffer_head *bh;
  1718. int err;
  1719. blocksize = 1 << inode->i_blkbits;
  1720. length = offset & (blocksize - 1);
  1721. /* Block boundary? Nothing to do */
  1722. if (!length)
  1723. return 0;
  1724. length = blocksize - length;
  1725. iblock = index << (PAGE_CACHE_SHIFT - inode->i_blkbits);
  1726. page = grab_cache_page(mapping, index);
  1727. err = -ENOMEM;
  1728. if (!page)
  1729. goto out;
  1730. if (!page->buffers)
  1731. create_empty_buffers(page, inode->i_dev, blocksize);
  1732. /* Find the buffer that contains "offset" */
  1733. bh = page->buffers;
  1734. pos = blocksize;
  1735. while (offset >= pos) {
  1736. bh = bh->b_this_page;
  1737. iblock++;
  1738. pos += blocksize;
  1739. }
  1740. err = 0;
  1741. if (!buffer_mapped(bh)) {
  1742. /* Hole? Nothing to do */
  1743. if (buffer_uptodate(bh))
  1744. goto unlock;
  1745. get_block(inode, iblock, bh, 0);
  1746. /* Still unmapped? Nothing to do */
  1747. if (!buffer_mapped(bh))
  1748. goto unlock;
  1749. }
  1750. /* Ok, it's mapped. Make sure it's up-to-date */
  1751. if (Page_Uptodate(page))
  1752. set_bit(BH_Uptodate, &bh->b_state);
  1753. if (!buffer_uptodate(bh)) {
  1754. err = -EIO;
  1755. ll_rw_block(READ, 1, &bh);
  1756. wait_on_buffer(bh);
  1757. /* Uhhuh. Read error. Complain and punt. */
  1758. if (!buffer_uptodate(bh))
  1759. goto unlock;
  1760. }
  1761. memset(kmap(page) + offset, 0, length);
  1762. flush_dcache_page(page);
  1763. kunmap(page);
  1764. if (!atomic_set_buffer_dirty(bh)) {
  1765. __mark_dirty(bh);
  1766. buffer_insert_inode_data_queue(bh, inode);
  1767. balance_dirty();
  1768. }
  1769. err = 0;
  1770. unlock:
  1771. UnlockPage(page);
  1772. page_cache_release(page);
  1773. out:
  1774. return err;
  1775. }
  1776. int block_write_full_page(struct page *page, get_block_t *get_block)
  1777. {
  1778. struct inode *inode = page->mapping->host;
  1779. unsigned long end_index = inode->i_size >> PAGE_CACHE_SHIFT;
  1780. unsigned offset;
  1781. int err;
  1782. /* easy case */
  1783. if (page->index < end_index)
  1784. return __block_write_full_page(inode, page, get_block);
  1785. /* things got complicated... */
  1786. offset = inode->i_size & (PAGE_CACHE_SIZE-1);
  1787. /* OK, are we completely out? */
  1788. if (page->index >= end_index+1 || !offset) {
  1789. UnlockPage(page);
  1790. return -EIO;
  1791. }
  1792. /* Sigh... will have to work, then... */
  1793. err = __block_prepare_write(inode, page, 0, offset, get_block);
  1794. if (!err) {
  1795. memset(page_address(page) + offset, 0, PAGE_CACHE_SIZE - offset);
  1796. flush_dcache_page(page);
  1797. __block_commit_write(inode,page,0,offset);
  1798. done:
  1799. kunmap(page);
  1800. UnlockPage(page);
  1801. return err;
  1802. }
  1803. ClearPageUptodate(page);
  1804. goto done;
  1805. }
  1806. /*
  1807.  * Commence writeout of all the buffers against a page.  The
  1808.  * page must be locked.   Returns zero on success or a negative
  1809.  * errno.
  1810.  */
  1811. int writeout_one_page(struct page *page)
  1812. {
  1813. struct buffer_head *bh, *head = page->buffers;
  1814. if (!PageLocked(page))
  1815. BUG();
  1816. bh = head;
  1817. do {
  1818. if (buffer_locked(bh) || !buffer_dirty(bh) || !buffer_uptodate(bh))
  1819. continue;
  1820. bh->b_flushtime = jiffies;
  1821. ll_rw_block(WRITE, 1, &bh);
  1822. } while ((bh = bh->b_this_page) != head);
  1823. return 0;
  1824. }
  1825. EXPORT_SYMBOL(writeout_one_page);
  1826. /*
  1827.  * Wait for completion of I/O of all buffers against a page.  The page
  1828.  * must be locked.  Returns zero on success or a negative errno.
  1829.  */
  1830. int waitfor_one_page(struct page *page)
  1831. {
  1832. int error = 0;
  1833. struct buffer_head *bh, *head = page->buffers;
  1834. bh = head;
  1835. do {
  1836. wait_on_buffer(bh);
  1837. if (buffer_req(bh) && !buffer_uptodate(bh))
  1838. error = -EIO;
  1839. } while ((bh = bh->b_this_page) != head);
  1840. return error;
  1841. }
  1842. EXPORT_SYMBOL(waitfor_one_page);
  1843. int generic_block_bmap(struct address_space *mapping, long block, get_block_t *get_block)
  1844. {
  1845. struct buffer_head tmp;
  1846. struct inode *inode = mapping->host;
  1847. tmp.b_state = 0;
  1848. tmp.b_blocknr = 0;
  1849. get_block(inode, block, &tmp, 0);
  1850. return tmp.b_blocknr;
  1851. }
  1852. int generic_direct_IO(int rw, struct inode * inode, struct kiobuf * iobuf, unsigned long blocknr, int blocksize, get_block_t * get_block)
  1853. {
  1854. int i, nr_blocks, retval;
  1855. unsigned long * blocks = iobuf->blocks;
  1856. int length;
  1857. length = iobuf->length;
  1858. nr_blocks = length / blocksize;
  1859. /* build the blocklist */
  1860. for (i = 0; i < nr_blocks; i++, blocknr++) {
  1861. struct buffer_head bh;
  1862. bh.b_state = 0;
  1863. bh.b_dev = inode->i_dev;
  1864. bh.b_size = blocksize;
  1865. retval = get_block(inode, blocknr, &bh, rw == READ ? 0 : 1);
  1866. if (retval) {
  1867. if (!i)
  1868. /* report error to userspace */
  1869. goto out;
  1870. else
  1871. /* do short I/O utill 'i' */
  1872. break;
  1873. }
  1874. if (rw == READ) {
  1875. if (buffer_new(&bh))
  1876. BUG();
  1877. if (!buffer_mapped(&bh)) {
  1878. /* there was an hole in the filesystem */
  1879. blocks[i] = -1UL;
  1880. continue;
  1881. }
  1882. } else {
  1883. if (buffer_new(&bh))
  1884. unmap_underlying_metadata(&bh);
  1885. if (!buffer_mapped(&bh))
  1886. BUG();
  1887. }
  1888. blocks[i] = bh.b_blocknr;
  1889. }
  1890. /* patch length to handle short I/O */
  1891. iobuf->length = i * blocksize;
  1892. retval = brw_kiovec(rw, 1, &iobuf, inode->i_dev, iobuf->blocks, blocksize);
  1893. /* restore orig length */
  1894. iobuf->length = length;
  1895.  out:
  1896. return retval;
  1897. }
  1898. /*
  1899.  * IO completion routine for a buffer_head being used for kiobuf IO: we
  1900.  * can't dispatch the kiobuf callback until io_count reaches 0.  
  1901.  */
  1902. static void end_buffer_io_kiobuf(struct buffer_head *bh, int uptodate)
  1903. {
  1904. struct kiobuf *kiobuf;
  1905. mark_buffer_uptodate(bh, uptodate);
  1906. kiobuf = bh->b_private;
  1907. unlock_buffer(bh);
  1908. end_kio_request(kiobuf, uptodate);
  1909. }
  1910. /*
  1911.  * For brw_kiovec: submit a set of buffer_head temporary IOs and wait
  1912.  * for them to complete.  Clean up the buffer_heads afterwards.  
  1913.  */
  1914. static int wait_kio(int rw, int nr, struct buffer_head *bh[], int size)
  1915. {
  1916. int iosize, err;
  1917. int i;
  1918. struct buffer_head *tmp;
  1919. iosize = 0;
  1920. err = 0;
  1921. for (i = nr; --i >= 0; ) {
  1922. iosize += size;
  1923. tmp = bh[i];
  1924. if (buffer_locked(tmp)) {
  1925. wait_on_buffer(tmp);
  1926. }
  1927. if (!buffer_uptodate(tmp)) {
  1928. /* We are traversing bh'es in reverse order so
  1929.                            clearing iosize on error calculates the
  1930.                            amount of IO before the first error. */
  1931. iosize = 0;
  1932. err = -EIO;
  1933. }
  1934. }
  1935. if (iosize)
  1936. return iosize;
  1937. return err;
  1938. }
  1939. /*
  1940.  * Start I/O on a physical range of kernel memory, defined by a vector
  1941.  * of kiobuf structs (much like a user-space iovec list).
  1942.  *
  1943.  * The kiobuf must already be locked for IO.  IO is submitted
  1944.  * asynchronously: you need to check page->locked and page->uptodate.
  1945.  *
  1946.  * It is up to the caller to make sure that there are enough blocks
  1947.  * passed in to completely map the iobufs to disk.
  1948.  */
  1949. int brw_kiovec(int rw, int nr, struct kiobuf *iovec[], 
  1950.        kdev_t dev, unsigned long b[], int size)
  1951. {
  1952. int err;
  1953. int length;
  1954. int transferred;
  1955. int i;
  1956. int bufind;
  1957. int pageind;
  1958. int bhind;
  1959. int offset;
  1960. unsigned long blocknr;
  1961. struct kiobuf * iobuf = NULL;
  1962. struct page * map;
  1963. struct buffer_head *tmp, **bhs = NULL;
  1964. if (!nr)
  1965. return 0;
  1966. /* 
  1967.  * First, do some alignment and validity checks 
  1968.  */
  1969. for (i = 0; i < nr; i++) {
  1970. iobuf = iovec[i];
  1971. if ((iobuf->offset & (size-1)) ||
  1972.     (iobuf->length & (size-1)))
  1973. return -EINVAL;
  1974. if (!iobuf->nr_pages)
  1975. panic("brw_kiovec: iobuf not initialised");
  1976. }
  1977. /* 
  1978.  * OK to walk down the iovec doing page IO on each page we find. 
  1979.  */
  1980. bufind = bhind = transferred = err = 0;
  1981. for (i = 0; i < nr; i++) {
  1982. iobuf = iovec[i];
  1983. offset = iobuf->offset;
  1984. length = iobuf->length;
  1985. iobuf->errno = 0;
  1986. if (!bhs)
  1987. bhs = iobuf->bh;
  1988. for (pageind = 0; pageind < iobuf->nr_pages; pageind++) {
  1989. map  = iobuf->maplist[pageind];
  1990. if (!map) {
  1991. err = -EFAULT;
  1992. goto finished;
  1993. }
  1994. while (length > 0) {
  1995. blocknr = b[bufind++];
  1996. if (blocknr == -1UL) {
  1997. if (rw == READ) {
  1998. /* there was an hole in the filesystem */
  1999. memset(kmap(map) + offset, 0, size);
  2000. flush_dcache_page(map);
  2001. kunmap(map);
  2002. transferred += size;
  2003. goto skip_block;
  2004. } else
  2005. BUG();
  2006. }
  2007. tmp = bhs[bhind++];
  2008. tmp->b_size = size;
  2009. set_bh_page(tmp, map, offset);
  2010. tmp->b_this_page = tmp;
  2011. init_buffer(tmp, end_buffer_io_kiobuf, iobuf);
  2012. tmp->b_dev = dev;
  2013. tmp->b_blocknr = blocknr;
  2014. tmp->b_state = (1 << BH_Mapped) | (1 << BH_Lock) | (1 << BH_Req);
  2015. if (rw == WRITE) {
  2016. set_bit(BH_Uptodate, &tmp->b_state);
  2017. clear_bit(BH_Dirty, &tmp->b_state);
  2018. } else
  2019. set_bit(BH_Uptodate, &tmp->b_state);
  2020. atomic_inc(&iobuf->io_count);
  2021. submit_bh(rw, tmp);
  2022. /* 
  2023.  * Wait for IO if we have got too much 
  2024.  */
  2025. if (bhind >= KIO_MAX_SECTORS) {
  2026. kiobuf_wait_for_io(iobuf); /* wake-one */
  2027. err = wait_kio(rw, bhind, bhs, size);
  2028. if (err >= 0)
  2029. transferred += err;
  2030. else
  2031. goto finished;
  2032. bhind = 0;
  2033. }
  2034. skip_block:
  2035. length -= size;
  2036. offset += size;
  2037. if (offset >= PAGE_SIZE) {
  2038. offset = 0;
  2039. break;
  2040. }
  2041. } /* End of block loop */
  2042. } /* End of page loop */
  2043. } /* End of iovec loop */
  2044. /* Is there any IO still left to submit? */
  2045. if (bhind) {
  2046. kiobuf_wait_for_io(iobuf); /* wake-one */
  2047. err = wait_kio(rw, bhind, bhs, size);
  2048. if (err >= 0)
  2049. transferred += err;
  2050. else
  2051. goto finished;
  2052. }
  2053.  finished:
  2054. if (transferred)
  2055. return transferred;
  2056. return err;
  2057. }
  2058. /*
  2059.  * Start I/O on a page.
  2060.  * This function expects the page to be locked and may return
  2061.  * before I/O is complete. You then have to check page->locked
  2062.  * and page->uptodate.
  2063.  *
  2064.  * brw_page() is SMP-safe, although it's being called with the
  2065.  * kernel lock held - but the code is ready.
  2066.  *
  2067.  * FIXME: we need a swapper_inode->get_block function to remove
  2068.  *        some of the bmap kludges and interface ugliness here.
  2069.  */
  2070. int brw_page(int rw, struct page *page, kdev_t dev, int b[], int size)
  2071. {
  2072. struct buffer_head *head, *bh;
  2073. if (!PageLocked(page))
  2074. panic("brw_page: page not locked for I/O");
  2075. if (!page->buffers)
  2076. create_empty_buffers(page, dev, size);
  2077. head = bh = page->buffers;
  2078. /* Stage 1: lock all the buffers */
  2079. do {
  2080. lock_buffer(bh);
  2081. bh->b_blocknr = *(b++);
  2082. set_bit(BH_Mapped, &bh->b_state);
  2083. set_buffer_async_io(bh);
  2084. bh = bh->b_this_page;
  2085. } while (bh != head);
  2086. /* Stage 2: start the IO */
  2087. do {
  2088. struct buffer_head *next = bh->b_this_page;
  2089. submit_bh(rw, bh);
  2090. bh = next;
  2091. } while (bh != head);
  2092. return 0;
  2093. }
  2094. int block_symlink(struct inode *inode, const char *symname, int len)
  2095. {
  2096. struct address_space *mapping = inode->i_mapping;
  2097. struct page *page = grab_cache_page(mapping, 0);
  2098. int err = -ENOMEM;
  2099. char *kaddr;
  2100. if (!page)
  2101. goto fail;
  2102. err = mapping->a_ops->prepare_write(NULL, page, 0, len-1);
  2103. if (err)
  2104. goto fail_map;
  2105. kaddr = page_address(page);
  2106. memcpy(kaddr, symname, len-1);
  2107. mapping->a_ops->commit_write(NULL, page, 0, len-1);
  2108. /*
  2109.  * Notice that we are _not_ going to block here - end of page is
  2110.  * unmapped, so this will only try to map the rest of page, see
  2111.  * that it is unmapped (typically even will not look into inode -
  2112.  * ->i_size will be enough for everything) and zero it out.
  2113.  * OTOH it's obviously correct and should make the page up-to-date.
  2114.  */
  2115. err = mapping->a_ops->readpage(NULL, page);
  2116. wait_on_page(page);
  2117. page_cache_release(page);
  2118. if (err < 0)
  2119. goto fail;
  2120. mark_inode_dirty(inode);
  2121. return 0;
  2122. fail_map:
  2123. UnlockPage(page);
  2124. page_cache_release(page);
  2125. fail:
  2126. return err;
  2127. }
  2128. static inline void link_dev_buffers(struct page * page, struct buffer_head *head)
  2129. {
  2130. struct buffer_head *bh, *tail;
  2131. bh = head;
  2132. do {
  2133. tail = bh;
  2134. bh = bh->b_this_page;
  2135. } while (bh);
  2136. tail->b_this_page = head;
  2137. page->buffers = head;
  2138. page_cache_get(page);
  2139. }
  2140. /*
  2141.  * Create the page-cache page that contains the requested block
  2142.  */
  2143. static struct page * grow_dev_page(struct block_device *bdev, unsigned long index, int size)
  2144. {
  2145. struct page * page;
  2146. struct buffer_head *bh;
  2147. page = find_or_create_page(bdev->bd_inode->i_mapping, index, GFP_NOFS);
  2148. if (!page)
  2149. return NULL;
  2150. if (!PageLocked(page))
  2151. BUG();
  2152. bh = page->buffers;
  2153. if (bh) {
  2154. if (bh->b_size == size)
  2155. return page;
  2156. if (!try_to_free_buffers(page, GFP_NOFS))
  2157. goto failed;
  2158. }
  2159. bh = create_buffers(page, size, 0);
  2160. if (!bh)
  2161. goto failed;
  2162. link_dev_buffers(page, bh);
  2163. return page;
  2164. failed:
  2165. UnlockPage(page);
  2166. page_cache_release(page);
  2167. return NULL;
  2168. }
  2169. static void hash_page_buffers(struct page *page, kdev_t dev, int block, int size)
  2170. {
  2171. struct buffer_head *head = page->buffers;
  2172. struct buffer_head *bh = head;
  2173. unsigned int uptodate;
  2174. uptodate = 1 << BH_Mapped;
  2175. if (Page_Uptodate(page))
  2176. uptodate |= 1 << BH_Uptodate;
  2177. write_lock(&hash_table_lock);
  2178. do {
  2179. if (!(bh->b_state & (1 << BH_Mapped))) {
  2180. init_buffer(bh, NULL, NULL);
  2181. bh->b_dev = dev;
  2182. bh->b_blocknr = block;
  2183. bh->b_state = uptodate;
  2184. }
  2185. /* Insert the buffer into the hash lists if necessary */
  2186. if (!bh->b_pprev)
  2187. __insert_into_hash_list(bh);
  2188. block++;
  2189. bh = bh->b_this_page;
  2190. } while (bh != head);
  2191. write_unlock(&hash_table_lock);
  2192. }
  2193. /*
  2194.  * Try to increase the number of buffers available: the size argument
  2195.  * is used to determine what kind of buffers we want.
  2196.  */
  2197. static int grow_buffers(kdev_t dev, unsigned long block, int size)
  2198. {
  2199. struct page * page;
  2200. struct block_device *bdev;
  2201. unsigned long index;
  2202. int sizebits;
  2203. /* Size must be multiple of hard sectorsize */
  2204. if (size & (get_hardsect_size(dev)-1))
  2205. BUG();
  2206. /* Size must be within 512 bytes and PAGE_SIZE */
  2207. if (size < 512 || size > PAGE_SIZE)
  2208. BUG();
  2209. sizebits = -1;
  2210. do {
  2211. sizebits++;
  2212. } while ((size << sizebits) < PAGE_SIZE);
  2213. index = block >> sizebits;
  2214. block = index << sizebits;
  2215. bdev = bdget(kdev_t_to_nr(dev));
  2216. if (!bdev) {
  2217. printk("No block device for %sn", kdevname(dev));
  2218. BUG();
  2219. }
  2220. /* Create a page with the proper size buffers.. */
  2221. page = grow_dev_page(bdev, index, size);
  2222. /* This is "wrong" - talk to Al Viro */
  2223. atomic_dec(&bdev->bd_count);
  2224. if (!page)
  2225. return 0;
  2226. /* Hash in the buffers on the hash list */
  2227. hash_page_buffers(page, dev, block, size);
  2228. UnlockPage(page);
  2229. page_cache_release(page);
  2230. /* We hashed up this page, so increment buffermem */
  2231. atomic_inc(&buffermem_pages);
  2232. return 1;
  2233. }
  2234. /*
  2235.  * The first time the VM inspects a page which has locked buffers, it
  2236.  * will just mark it as needing waiting upon on the scan of the page LRU.
  2237.  * BH_Wait_IO is used for this.
  2238.  *
  2239.  * The second time the VM visits the page, if it still has locked
  2240.  * buffers, it is time to start writing them out.  (BH_Wait_IO was set).
  2241.  *
  2242.  * The third time the VM visits the page, if the I/O hasn't completed
  2243.  * then it's time to wait upon writeout.  BH_Lock and BH_Launder are
  2244.  * used for this.
  2245.  *
  2246.  * There is also the case of buffers which were locked by someone else
  2247.  * - write(2) callers, bdflush, etc.  There can be a huge number of these
  2248.  * and we don't want to just skip them all and fail the page allocation. 
  2249.  * We want to be able to wait on these buffers as well.
  2250.  *
  2251.  * The BH_Launder bit is set in submit_bh() to indicate that I/O is
  2252.  * underway against the buffer, doesn't matter who started it - we know
  2253.  * that the buffer will eventually come unlocked, and so it's safe to
  2254.  * wait on it.
  2255.  *
  2256.  * The caller holds the page lock and the caller will free this page
  2257.  * into current->local_page, so by waiting on the page's buffers the
  2258.  * caller is guaranteed to obtain this page.
  2259.  *
  2260.  * sync_page_buffers() will sort-of return true if all the buffers
  2261.  * against this page are freeable, so try_to_free_buffers() should
  2262.  * try to free the page's buffers a second time.  This is a bit
  2263.  * broken for blocksize < PAGE_CACHE_SIZE, but not very importantly.
  2264.  */
  2265. static int sync_page_buffers(struct buffer_head *head)
  2266. {
  2267. struct buffer_head * bh = head;
  2268. int tryagain = 1;
  2269. do {
  2270. if (!buffer_dirty(bh) && !buffer_locked(bh))
  2271. continue;
  2272. /* Don't start IO first time around.. */
  2273. if (!test_and_set_bit(BH_Wait_IO, &bh->b_state)) {
  2274. tryagain = 0;
  2275. continue;
  2276. }
  2277. /* Second time through we start actively writing out.. */
  2278. if (test_and_set_bit(BH_Lock, &bh->b_state)) {
  2279. if (unlikely(!buffer_launder(bh))) {
  2280. tryagain = 0;
  2281. continue;
  2282. }
  2283. wait_on_buffer(bh);
  2284. tryagain = 1;
  2285. continue;
  2286. }
  2287. if (!atomic_set_buffer_clean(bh)) {
  2288. unlock_buffer(bh);
  2289. continue;
  2290. }
  2291. __mark_buffer_clean(bh);
  2292. get_bh(bh);
  2293. bh->b_end_io = end_buffer_io_sync;
  2294. submit_bh(WRITE, bh);
  2295. tryagain = 0;
  2296. } while ((bh = bh->b_this_page) != head);
  2297. return tryagain;
  2298. }
  2299. /*
  2300.  * Can the buffer be thrown out?
  2301.  */
  2302. #define BUFFER_BUSY_BITS ((1<<BH_Dirty) | (1<<BH_Lock))
  2303. #define buffer_busy(bh) (atomic_read(&(bh)->b_count) | ((bh)->b_state & BUFFER_BUSY_BITS))
  2304. /*
  2305.  * try_to_free_buffers() checks if all the buffers on this particular page
  2306.  * are unused, and free's the page if so.
  2307.  *
  2308.  * Wake up bdflush() if this fails - if we're running low on memory due
  2309.  * to dirty buffers, we need to flush them out as quickly as possible.
  2310.  *
  2311.  * NOTE: There are quite a number of ways that threads of control can
  2312.  *       obtain a reference to a buffer head within a page.  So we must
  2313.  *  lock out all of these paths to cleanly toss the page.
  2314.  */
  2315. int try_to_free_buffers(struct page * page, unsigned int gfp_mask)
  2316. {
  2317. struct buffer_head * tmp, * bh = page->buffers;
  2318. cleaned_buffers_try_again:
  2319. spin_lock(&lru_list_lock);
  2320. write_lock(&hash_table_lock);
  2321. tmp = bh;
  2322. do {
  2323. if (buffer_busy(tmp))
  2324. goto busy_buffer_page;
  2325. tmp = tmp->b_this_page;
  2326. } while (tmp != bh);
  2327. spin_lock(&unused_list_lock);
  2328. tmp = bh;
  2329. /* if this buffer was hashed, this page counts as buffermem */
  2330. if (bh->b_pprev)
  2331. atomic_dec(&buffermem_pages);
  2332. do {
  2333. struct buffer_head * p = tmp;
  2334. tmp = tmp->b_this_page;
  2335. if (p->b_dev == B_FREE) BUG();
  2336. remove_inode_queue(p);
  2337. __remove_from_queues(p);
  2338. __put_unused_buffer_head(p);
  2339. } while (tmp != bh);
  2340. spin_unlock(&unused_list_lock);
  2341. /* Wake up anyone waiting for buffer heads */
  2342. wake_up(&buffer_wait);
  2343. /* And free the page */
  2344. page->buffers = NULL;
  2345. page_cache_release(page);
  2346. write_unlock(&hash_table_lock);
  2347. spin_unlock(&lru_list_lock);
  2348. return 1;
  2349. busy_buffer_page:
  2350. /* Uhhuh, start writeback so that we don't end up with all dirty pages */
  2351. write_unlock(&hash_table_lock);
  2352. spin_unlock(&lru_list_lock);
  2353. gfp_mask = pf_gfp_mask(gfp_mask);
  2354. if (gfp_mask & __GFP_IO) {
  2355. if ((gfp_mask & __GFP_HIGHIO) || !PageHighMem(page)) {
  2356. if (sync_page_buffers(bh)) {
  2357. /* no IO or waiting next time */
  2358. gfp_mask = 0;
  2359. goto cleaned_buffers_try_again;
  2360. }
  2361. }
  2362. }
  2363. if (balance_dirty_state() >= 0)
  2364. wakeup_bdflush();
  2365. return 0;
  2366. }
  2367. EXPORT_SYMBOL(try_to_free_buffers);
  2368. /* ================== Debugging =================== */
  2369. void show_buffers(void)
  2370. {
  2371. #ifdef CONFIG_SMP
  2372. struct buffer_head * bh;
  2373. int found = 0, locked = 0, dirty = 0, used = 0, lastused = 0;
  2374. int nlist;
  2375. static char *buf_types[NR_LIST] = { "CLEAN", "LOCKED", "DIRTY", };
  2376. #endif
  2377. printk("Buffer memory:   %6dkBn",
  2378. atomic_read(&buffermem_pages) << (PAGE_SHIFT-10));
  2379. printk("Cache memory:   %6dkBn",
  2380. (atomic_read(&page_cache_size)- atomic_read(&buffermem_pages)) << (PAGE_SHIFT-10));
  2381. #ifdef CONFIG_SMP /* trylock does nothing on UP and so we could deadlock */
  2382. if (!spin_trylock(&lru_list_lock))
  2383. return;
  2384. for(nlist = 0; nlist < NR_LIST; nlist++) {
  2385. found = locked = dirty = used = lastused = 0;
  2386. bh = lru_list[nlist];
  2387. if(!bh) continue;
  2388. do {
  2389. found++;
  2390. if (buffer_locked(bh))
  2391. locked++;
  2392. if (buffer_dirty(bh))
  2393. dirty++;
  2394. if (atomic_read(&bh->b_count))
  2395. used++, lastused = found;
  2396. bh = bh->b_next_free;
  2397. } while (bh != lru_list[nlist]);
  2398. {
  2399. int tmp = nr_buffers_type[nlist];
  2400. if (found != tmp)
  2401. printk("%9s: BUG -> found %d, reported %dn",
  2402.        buf_types[nlist], found, tmp);
  2403. }
  2404. printk("%9s: %d buffers, %lu kbyte, %d used (last=%d), "
  2405.        "%d locked, %d dirtyn",
  2406.        buf_types[nlist], found, size_buffers_type[nlist]>>10,
  2407.        used, lastused, locked, dirty);
  2408. }
  2409. spin_unlock(&lru_list_lock);
  2410. #endif
  2411. }
  2412. /* ===================== Init ======================= */
  2413. /*
  2414.  * allocate the hash table and init the free list
  2415.  * Use gfp() for the hash table to decrease TLB misses, use
  2416.  * SLAB cache for buffer heads.
  2417.  */
  2418. void __init buffer_init(unsigned long mempages)
  2419. {
  2420. int order, i;
  2421. unsigned int nr_hash;
  2422. /* The buffer cache hash table is less important these days,
  2423.  * trim it a bit.
  2424.  */
  2425. mempages >>= 14;
  2426. mempages *= sizeof(struct buffer_head *);
  2427. for (order = 0; (1 << order) < mempages; order++)
  2428. ;
  2429. /* try to allocate something until we get it or we're asking
  2430.    for something that is really too small */
  2431. do {
  2432. unsigned long tmp;
  2433. nr_hash = (PAGE_SIZE << order) / sizeof(struct buffer_head *);
  2434. bh_hash_mask = (nr_hash - 1);
  2435. tmp = nr_hash;
  2436. bh_hash_shift = 0;
  2437. while((tmp >>= 1UL) != 0UL)
  2438. bh_hash_shift++;
  2439. hash_table = (struct buffer_head **)
  2440.     __get_free_pages(GFP_ATOMIC, order);
  2441. } while (hash_table == NULL && --order > 0);
  2442. printk("Buffer-cache hash table entries: %d (order: %d, %ld bytes)n",
  2443.        nr_hash, order, (PAGE_SIZE << order));
  2444. if (!hash_table)
  2445. panic("Failed to allocate buffer hash tablen");
  2446. /* Setup hash chains. */
  2447. for(i = 0; i < nr_hash; i++)
  2448. hash_table[i] = NULL;
  2449. /* Setup lru lists. */
  2450. for(i = 0; i < NR_LIST; i++)
  2451. lru_list[i] = NULL;
  2452. }
  2453. /* ====================== bdflush support =================== */
  2454. /* This is a simple kernel daemon, whose job it is to provide a dynamic
  2455.  * response to dirty buffers.  Once this process is activated, we write back
  2456.  * a limited number of buffers to the disks and then go back to sleep again.
  2457.  */
  2458. DECLARE_WAIT_QUEUE_HEAD(bdflush_wait);
  2459. void wakeup_bdflush(void)
  2460. {
  2461. wake_up_interruptible(&bdflush_wait);
  2462. }
  2463. /* 
  2464.  * Here we attempt to write back old buffers.  We also try to flush inodes 
  2465.  * and supers as well, since this function is essentially "update", and 
  2466.  * otherwise there would be no way of ensuring that these quantities ever 
  2467.  * get written back.  Ideally, we would have a timestamp on the inodes
  2468.  * and superblocks so that we could write back only the old ones as well
  2469.  */
  2470. static int sync_old_buffers(void)
  2471. {
  2472. lock_kernel();
  2473. sync_unlocked_inodes();
  2474. sync_supers(0);
  2475. unlock_kernel();
  2476. for (;;) {
  2477. struct buffer_head *bh;
  2478. spin_lock(&lru_list_lock);
  2479. bh = lru_list[BUF_DIRTY];
  2480. if (!bh || time_before(jiffies, bh->b_flushtime))
  2481. break;
  2482. if (write_some_buffers(NODEV))
  2483. continue;
  2484. return 0;
  2485. }
  2486. spin_unlock(&lru_list_lock);
  2487. return 0;
  2488. }
  2489. int block_sync_page(struct page *page)
  2490. {
  2491. run_task_queue(&tq_disk);
  2492. return 0;
  2493. }
  2494. /* This is the interface to bdflush.  As we get more sophisticated, we can
  2495.  * pass tuning parameters to this "process", to adjust how it behaves. 
  2496.  * We would want to verify each parameter, however, to make sure that it 
  2497.  * is reasonable. */
  2498. asmlinkage long sys_bdflush(int func, long data)
  2499. {
  2500. if (!capable(CAP_SYS_ADMIN))
  2501. return -EPERM;
  2502. if (func == 1) {
  2503. /* do_exit directly and let kupdate to do its work alone. */
  2504. do_exit(0);
  2505. #if 0 /* left here as it's the only example of lazy-mm-stuff used from
  2506.  a syscall that doesn't care about the current mm context. */
  2507. int error;
  2508. struct mm_struct *user_mm;
  2509. /*
  2510.  * bdflush will spend all of it's time in kernel-space,
  2511.  * without touching user-space, so we can switch it into
  2512.  * 'lazy TLB mode' to reduce the cost of context-switches
  2513.  * to and from bdflush.
  2514.  */
  2515. user_mm = start_lazy_tlb();
  2516. error = sync_old_buffers();
  2517. end_lazy_tlb(user_mm);
  2518. return error;
  2519. #endif
  2520. }
  2521. /* Basically func 1 means read param 1, 2 means write param 1, etc */
  2522. if (func >= 2) {
  2523. int i = (func-2) >> 1;
  2524. if (i >= 0 && i < N_PARAM) {
  2525. if ((func & 1) == 0)
  2526. return put_user(bdf_prm.data[i], (int*)data);
  2527. if (data >= bdflush_min[i] && data <= bdflush_max[i]) {
  2528. bdf_prm.data[i] = data;
  2529. return 0;
  2530. }
  2531. }
  2532. return -EINVAL;
  2533. }
  2534. /* Having func 0 used to launch the actual bdflush and then never
  2535.  * return (unless explicitly killed). We return zero here to 
  2536.  * remain semi-compatible with present update(8) programs.
  2537.  */
  2538. return 0;
  2539. }
  2540. /*
  2541.  * This is the actual bdflush daemon itself. It used to be started from
  2542.  * the syscall above, but now we launch it ourselves internally with
  2543.  * kernel_thread(...)  directly after the first thread in init/main.c
  2544.  */
  2545. int bdflush(void *startup)
  2546. {
  2547. struct task_struct *tsk = current;
  2548. /*
  2549.  * We have a bare-bones task_struct, and really should fill
  2550.  * in a few more things so "top" and /proc/2/{exe,root,cwd}
  2551.  * display semi-sane things. Not real crucial though...  
  2552.  */
  2553. tsk->session = 1;
  2554. tsk->pgrp = 1;
  2555. strcpy(tsk->comm, "bdflush");
  2556. /* avoid getting signals */
  2557. spin_lock_irq(&tsk->sigmask_lock);
  2558. flush_signals(tsk);
  2559. sigfillset(&tsk->blocked);
  2560. recalc_sigpending(tsk);
  2561. spin_unlock_irq(&tsk->sigmask_lock);
  2562. complete((struct completion *)startup);
  2563. /*
  2564.  * FIXME: The ndirty logic here is wrong.  It's supposed to
  2565.  * send bdflush back to sleep after writing ndirty buffers.
  2566.  * In fact, the test is wrong so bdflush will in fact
  2567.  * sleep when bdflush_stop() returns true.
  2568.  *
  2569.  * FIXME: If it proves useful to implement ndirty properly,
  2570.  * then perhaps the value of ndirty should be scaled by the
  2571.  * amount of memory in the machine.
  2572.  */
  2573. for (;;) {
  2574. int ndirty = bdf_prm.b_un.ndirty;
  2575. CHECK_EMERGENCY_SYNC
  2576. while (ndirty > 0) {
  2577. spin_lock(&lru_list_lock);
  2578. if (!write_some_buffers(NODEV))
  2579. break;
  2580. ndirty -= NRSYNC;
  2581. }
  2582. if (ndirty > 0 || bdflush_stop())
  2583. interruptible_sleep_on(&bdflush_wait);
  2584. }
  2585. }
  2586. /*
  2587.  * This is the kernel update daemon. It was used to live in userspace
  2588.  * but since it's need to run safely we want it unkillable by mistake.
  2589.  * You don't need to change your userspace configuration since
  2590.  * the userspace `update` will do_exit(0) at the first sys_bdflush().
  2591.  */
  2592. int kupdate(void *startup)
  2593. {
  2594. struct task_struct * tsk = current;
  2595. int interval;
  2596. tsk->session = 1;
  2597. tsk->pgrp = 1;
  2598. strcpy(tsk->comm, "kupdated");
  2599. /* sigstop and sigcont will stop and wakeup kupdate */
  2600. spin_lock_irq(&tsk->sigmask_lock);
  2601. sigfillset(&tsk->blocked);
  2602. siginitsetinv(&current->blocked, sigmask(SIGCONT) | sigmask(SIGSTOP));
  2603. recalc_sigpending(tsk);
  2604. spin_unlock_irq(&tsk->sigmask_lock);
  2605. complete((struct completion *)startup);
  2606. for (;;) {
  2607. /* update interval */
  2608. interval = bdf_prm.b_un.interval;
  2609. if (interval) {
  2610. tsk->state = TASK_INTERRUPTIBLE;
  2611. schedule_timeout(interval);
  2612. } else {
  2613. stop_kupdate:
  2614. tsk->state = TASK_STOPPED;
  2615. schedule(); /* wait for SIGCONT */
  2616. }
  2617. /* check for sigstop */
  2618. if (signal_pending(tsk)) {
  2619. int stopped = 0;
  2620. spin_lock_irq(&tsk->sigmask_lock);
  2621. if (sigismember(&tsk->pending.signal, SIGSTOP)) {
  2622. sigdelset(&tsk->pending.signal, SIGSTOP);
  2623. stopped = 1;
  2624. }
  2625. recalc_sigpending(tsk);
  2626. spin_unlock_irq(&tsk->sigmask_lock);
  2627. if (stopped)
  2628. goto stop_kupdate;
  2629. }
  2630. #ifdef DEBUG
  2631. printk(KERN_DEBUG "kupdate() activated...n");
  2632. #endif
  2633. sync_old_buffers();
  2634. run_task_queue(&tq_disk);
  2635. }
  2636. }
  2637. static int __init bdflush_init(void)
  2638. {
  2639. static struct completion startup __initdata = COMPLETION_INITIALIZER(startup);
  2640. kernel_thread(bdflush, &startup, CLONE_FS | CLONE_FILES | CLONE_SIGNAL);
  2641. wait_for_completion(&startup);
  2642. kernel_thread(kupdate, &startup, CLONE_FS | CLONE_FILES | CLONE_SIGNAL);
  2643. wait_for_completion(&startup);
  2644. return 0;
  2645. }
  2646. module_init(bdflush_init)