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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/inode.c
  3.  *
  4.  * (C) 1997 Linus Torvalds
  5.  */
  6. #include <linux/config.h>
  7. #include <linux/fs.h>
  8. #include <linux/string.h>
  9. #include <linux/mm.h>
  10. #include <linux/dcache.h>
  11. #include <linux/init.h>
  12. #include <linux/quotaops.h>
  13. #include <linux/slab.h>
  14. #include <linux/cache.h>
  15. #include <linux/swap.h>
  16. #include <linux/swapctl.h>
  17. #include <linux/prefetch.h>
  18. #include <linux/locks.h>
  19. /*
  20.  * New inode.c implementation.
  21.  *
  22.  * This implementation has the basic premise of trying
  23.  * to be extremely low-overhead and SMP-safe, yet be
  24.  * simple enough to be "obviously correct".
  25.  *
  26.  * Famous last words.
  27.  */
  28. /* inode dynamic allocation 1999, Andrea Arcangeli <andrea@suse.de> */
  29. /* #define INODE_PARANOIA 1 */
  30. /* #define INODE_DEBUG 1 */
  31. /*
  32.  * Inode lookup is no longer as critical as it used to be:
  33.  * most of the lookups are going to be through the dcache.
  34.  */
  35. #define I_HASHBITS i_hash_shift
  36. #define I_HASHMASK i_hash_mask
  37. static unsigned int i_hash_mask;
  38. static unsigned int i_hash_shift;
  39. /*
  40.  * Each inode can be on two separate lists. One is
  41.  * the hash list of the inode, used for lookups. The
  42.  * other linked list is the "type" list:
  43.  *  "in_use" - valid inode, i_count > 0, i_nlink > 0
  44.  *  "dirty"  - as "in_use" but also dirty
  45.  *  "unused" - valid inode, i_count = 0
  46.  *
  47.  * A "dirty" list is maintained for each super block,
  48.  * allowing for low-overhead inode sync() operations.
  49.  */
  50. static LIST_HEAD(inode_in_use);
  51. static LIST_HEAD(inode_unused);
  52. static struct list_head *inode_hashtable;
  53. static LIST_HEAD(anon_hash_chain); /* for inodes with NULL i_sb */
  54. /*
  55.  * A simple spinlock to protect the list manipulations.
  56.  *
  57.  * NOTE! You also have to own the lock if you change
  58.  * the i_state of an inode while it is in use..
  59.  */
  60. static spinlock_t inode_lock = SPIN_LOCK_UNLOCKED;
  61. /*
  62.  * Statistics gathering..
  63.  */
  64. struct inodes_stat_t inodes_stat;
  65. static kmem_cache_t * inode_cachep;
  66. #define alloc_inode() 
  67.  ((struct inode *) kmem_cache_alloc(inode_cachep, SLAB_KERNEL))
  68. static void destroy_inode(struct inode *inode) 
  69. {
  70. if (inode_has_buffers(inode))
  71. BUG();
  72. kmem_cache_free(inode_cachep, (inode));
  73. }
  74. /*
  75.  * These are initializations that only need to be done
  76.  * once, because the fields are idempotent across use
  77.  * of the inode, so let the slab aware of that.
  78.  */
  79. static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
  80. {
  81. struct inode * inode = (struct inode *) foo;
  82. if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
  83.     SLAB_CTOR_CONSTRUCTOR)
  84. {
  85. memset(inode, 0, sizeof(*inode));
  86. init_waitqueue_head(&inode->i_wait);
  87. INIT_LIST_HEAD(&inode->i_hash);
  88. INIT_LIST_HEAD(&inode->i_data.clean_pages);
  89. INIT_LIST_HEAD(&inode->i_data.dirty_pages);
  90. INIT_LIST_HEAD(&inode->i_data.locked_pages);
  91. INIT_LIST_HEAD(&inode->i_dentry);
  92. INIT_LIST_HEAD(&inode->i_dirty_buffers);
  93. INIT_LIST_HEAD(&inode->i_dirty_data_buffers);
  94. INIT_LIST_HEAD(&inode->i_devices);
  95. sema_init(&inode->i_sem, 1);
  96. sema_init(&inode->i_zombie, 1);
  97. spin_lock_init(&inode->i_data.i_shared_lock);
  98. }
  99. }
  100. /*
  101.  * Put the inode on the super block's dirty list.
  102.  *
  103.  * CAREFUL! We mark it dirty unconditionally, but
  104.  * move it onto the dirty list only if it is hashed.
  105.  * If it was not hashed, it will never be added to
  106.  * the dirty list even if it is later hashed, as it
  107.  * will have been marked dirty already.
  108.  *
  109.  * In short, make sure you hash any inodes _before_
  110.  * you start marking them dirty..
  111.  */
  112.  
  113. /**
  114.  * __mark_inode_dirty - internal function
  115.  * @inode: inode to mark
  116.  * @flags: what kind of dirty (i.e. I_DIRTY_SYNC)
  117.  * Mark an inode as dirty. Callers should use mark_inode_dirty or
  118.  *   mark_inode_dirty_sync.
  119.  */
  120.  
  121. void __mark_inode_dirty(struct inode *inode, int flags)
  122. {
  123. struct super_block * sb = inode->i_sb;
  124. if (!sb)
  125. return;
  126. /* Don't do this for I_DIRTY_PAGES - that doesn't actually dirty the inode itself */
  127. if (flags & (I_DIRTY_SYNC | I_DIRTY_DATASYNC)) {
  128. if (sb->s_op && sb->s_op->dirty_inode)
  129. sb->s_op->dirty_inode(inode);
  130. }
  131. /* avoid the locking if we can */
  132. if ((inode->i_state & flags) == flags)
  133. return;
  134. spin_lock(&inode_lock);
  135. if ((inode->i_state & flags) != flags) {
  136. inode->i_state |= flags;
  137. /* Only add valid (ie hashed) inodes to the dirty list */
  138. if (!(inode->i_state & I_LOCK) && !list_empty(&inode->i_hash)) {
  139. list_del(&inode->i_list);
  140. list_add(&inode->i_list, &sb->s_dirty);
  141. }
  142. }
  143. spin_unlock(&inode_lock);
  144. }
  145. static void __wait_on_inode(struct inode * inode)
  146. {
  147. DECLARE_WAITQUEUE(wait, current);
  148. add_wait_queue(&inode->i_wait, &wait);
  149. repeat:
  150. set_current_state(TASK_UNINTERRUPTIBLE);
  151. if (inode->i_state & I_LOCK) {
  152. schedule();
  153. goto repeat;
  154. }
  155. remove_wait_queue(&inode->i_wait, &wait);
  156. current->state = TASK_RUNNING;
  157. }
  158. static inline void wait_on_inode(struct inode *inode)
  159. {
  160. if (inode->i_state & I_LOCK)
  161. __wait_on_inode(inode);
  162. }
  163. static inline void write_inode(struct inode *inode, int sync)
  164. {
  165. if (inode->i_sb && inode->i_sb->s_op && inode->i_sb->s_op->write_inode && !is_bad_inode(inode))
  166. inode->i_sb->s_op->write_inode(inode, sync);
  167. }
  168. static inline void __iget(struct inode * inode)
  169. {
  170. if (atomic_read(&inode->i_count)) {
  171. atomic_inc(&inode->i_count);
  172. return;
  173. }
  174. atomic_inc(&inode->i_count);
  175. if (!(inode->i_state & (I_DIRTY|I_LOCK))) {
  176. list_del(&inode->i_list);
  177. list_add(&inode->i_list, &inode_in_use);
  178. }
  179. inodes_stat.nr_unused--;
  180. }
  181. static inline void __sync_one(struct inode *inode, int sync)
  182. {
  183. unsigned dirty;
  184. list_del(&inode->i_list);
  185. list_add(&inode->i_list, &inode->i_sb->s_locked_inodes);
  186. if (inode->i_state & I_LOCK)
  187. BUG();
  188. /* Set I_LOCK, reset I_DIRTY */
  189. dirty = inode->i_state & I_DIRTY;
  190. inode->i_state |= I_LOCK;
  191. inode->i_state &= ~I_DIRTY;
  192. spin_unlock(&inode_lock);
  193. filemap_fdatasync(inode->i_mapping);
  194. /* Don't write the inode if only I_DIRTY_PAGES was set */
  195. if (dirty & (I_DIRTY_SYNC | I_DIRTY_DATASYNC))
  196. write_inode(inode, sync);
  197. filemap_fdatawait(inode->i_mapping);
  198. spin_lock(&inode_lock);
  199. inode->i_state &= ~I_LOCK;
  200. if (!(inode->i_state & I_FREEING)) {
  201. struct list_head *to;
  202. if (inode->i_state & I_DIRTY)
  203. to = &inode->i_sb->s_dirty;
  204. else if (atomic_read(&inode->i_count))
  205. to = &inode_in_use;
  206. else
  207. to = &inode_unused;
  208. list_del(&inode->i_list);
  209. list_add(&inode->i_list, to);
  210. }
  211. wake_up(&inode->i_wait);
  212. }
  213. static inline void sync_one(struct inode *inode, int sync)
  214. {
  215. while (inode->i_state & I_LOCK) {
  216. __iget(inode);
  217. spin_unlock(&inode_lock);
  218. __wait_on_inode(inode);
  219. iput(inode);
  220. spin_lock(&inode_lock);
  221. }
  222. __sync_one(inode, sync);
  223. }
  224. static inline void sync_list(struct list_head *head)
  225. {
  226. struct list_head * tmp;
  227. while ((tmp = head->prev) != head) 
  228. __sync_one(list_entry(tmp, struct inode, i_list), 0);
  229. }
  230. static inline void wait_on_locked(struct list_head *head)
  231. {
  232. struct list_head * tmp;
  233. while ((tmp = head->prev) != head) {
  234. struct inode *inode = list_entry(tmp, struct inode, i_list);
  235. __iget(inode);
  236. spin_unlock(&inode_lock);
  237. __wait_on_inode(inode);
  238. iput(inode);
  239. spin_lock(&inode_lock);
  240. }
  241. }
  242. static inline int try_to_sync_unused_list(struct list_head *head, int nr_inodes)
  243. {
  244. struct list_head *tmp = head;
  245. struct inode *inode;
  246. while (nr_inodes && (tmp = tmp->prev) != head) {
  247. inode = list_entry(tmp, struct inode, i_list);
  248. if (!atomic_read(&inode->i_count)) {
  249. __sync_one(inode, 0);
  250. nr_inodes--;
  251. /* 
  252.  * __sync_one moved the inode to another list,
  253.  * so we have to start looking from the list head.
  254.  */
  255. tmp = head;
  256. }
  257. }
  258. return nr_inodes;
  259. }
  260. void sync_inodes_sb(struct super_block *sb)
  261. {
  262. spin_lock(&inode_lock);
  263. while (!list_empty(&sb->s_dirty)||!list_empty(&sb->s_locked_inodes)) {
  264. sync_list(&sb->s_dirty);
  265. wait_on_locked(&sb->s_locked_inodes);
  266. }
  267. spin_unlock(&inode_lock);
  268. }
  269. /*
  270.  * Note:
  271.  * We don't need to grab a reference to superblock here. If it has non-empty
  272.  * ->s_dirty it's hadn't been killed yet and kill_super() won't proceed
  273.  * past sync_inodes_sb() until both ->s_dirty and ->s_locked_inodes are
  274.  * empty. Since __sync_one() regains inode_lock before it finally moves
  275.  * inode from superblock lists we are OK.
  276.  */
  277. void sync_unlocked_inodes(void)
  278. {
  279. struct super_block * sb;
  280. spin_lock(&inode_lock);
  281. spin_lock(&sb_lock);
  282. sb = sb_entry(super_blocks.next);
  283. for (; sb != sb_entry(&super_blocks); sb = sb_entry(sb->s_list.next)) {
  284. if (!list_empty(&sb->s_dirty)) {
  285. spin_unlock(&sb_lock);
  286. sync_list(&sb->s_dirty);
  287. spin_lock(&sb_lock);
  288. }
  289. }
  290. spin_unlock(&sb_lock);
  291. spin_unlock(&inode_lock);
  292. }
  293. /*
  294.  * Find a superblock with inodes that need to be synced
  295.  */
  296. static struct super_block *get_super_to_sync(void)
  297. {
  298. struct list_head *p;
  299. restart:
  300. spin_lock(&inode_lock);
  301. spin_lock(&sb_lock);
  302. list_for_each(p, &super_blocks) {
  303. struct super_block *s = list_entry(p,struct super_block,s_list);
  304. if (list_empty(&s->s_dirty) && list_empty(&s->s_locked_inodes))
  305. continue;
  306. s->s_count++;
  307. spin_unlock(&sb_lock);
  308. spin_unlock(&inode_lock);
  309. down_read(&s->s_umount);
  310. if (!s->s_root) {
  311. drop_super(s);
  312. goto restart;
  313. }
  314. return s;
  315. }
  316. spin_unlock(&sb_lock);
  317. spin_unlock(&inode_lock);
  318. return NULL;
  319. }
  320. /**
  321.  * sync_inodes
  322.  * @dev: device to sync the inodes from.
  323.  *
  324.  * sync_inodes goes through the super block's dirty list, 
  325.  * writes them out, and puts them back on the normal list.
  326.  */
  327. void sync_inodes(kdev_t dev)
  328. {
  329. struct super_block * s;
  330. /*
  331.  * Search the super_blocks array for the device(s) to sync.
  332.  */
  333. if (dev) {
  334. if ((s = get_super(dev)) != NULL) {
  335. sync_inodes_sb(s);
  336. drop_super(s);
  337. }
  338. } else {
  339. while ((s = get_super_to_sync()) != NULL) {
  340. sync_inodes_sb(s);
  341. drop_super(s);
  342. }
  343. }
  344. }
  345. static void try_to_sync_unused_inodes(void * arg)
  346. {
  347. struct super_block * sb;
  348. int nr_inodes = inodes_stat.nr_unused;
  349. spin_lock(&inode_lock);
  350. spin_lock(&sb_lock);
  351. sb = sb_entry(super_blocks.next);
  352. for (; nr_inodes && sb != sb_entry(&super_blocks); sb = sb_entry(sb->s_list.next)) {
  353. if (list_empty(&sb->s_dirty))
  354. continue;
  355. spin_unlock(&sb_lock);
  356. nr_inodes = try_to_sync_unused_list(&sb->s_dirty, nr_inodes);
  357. spin_lock(&sb_lock);
  358. }
  359. spin_unlock(&sb_lock);
  360. spin_unlock(&inode_lock);
  361. }
  362. static struct tq_struct unused_inodes_flush_task;
  363. /**
  364.  * write_inode_now - write an inode to disk
  365.  * @inode: inode to write to disk
  366.  * @sync: whether the write should be synchronous or not
  367.  *
  368.  * This function commits an inode to disk immediately if it is
  369.  * dirty. This is primarily needed by knfsd.
  370.  */
  371.  
  372. void write_inode_now(struct inode *inode, int sync)
  373. {
  374. struct super_block * sb = inode->i_sb;
  375. if (sb) {
  376. spin_lock(&inode_lock);
  377. while (inode->i_state & I_DIRTY)
  378. sync_one(inode, sync);
  379. spin_unlock(&inode_lock);
  380. if (sync)
  381. wait_on_inode(inode);
  382. }
  383. else
  384. printk(KERN_ERR "write_inode_now: no super blockn");
  385. }
  386. /**
  387.  * generic_osync_inode - flush all dirty data for a given inode to disk
  388.  * @inode: inode to write
  389.  * @datasync: if set, don't bother flushing timestamps
  390.  *
  391.  * This can be called by file_write functions for files which have the
  392.  * O_SYNC flag set, to flush dirty writes to disk.  
  393.  */
  394. int generic_osync_inode(struct inode *inode, int what)
  395. {
  396. int err = 0, err2 = 0, need_write_inode_now = 0;
  397. /* 
  398.  * WARNING
  399.  *
  400.  * Currently, the filesystem write path does not pass the
  401.  * filp down to the low-level write functions.  Therefore it
  402.  * is impossible for (say) __block_commit_write to know if
  403.  * the operation is O_SYNC or not.
  404.  *
  405.  * Ideally, O_SYNC writes would have the filesystem call
  406.  * ll_rw_block as it went to kick-start the writes, and we
  407.  * could call osync_inode_buffers() here to wait only for
  408.  * those IOs which have already been submitted to the device
  409.  * driver layer.  As it stands, if we did this we'd not write
  410.  * anything to disk since our writes have not been queued by
  411.  * this point: they are still on the dirty LRU.
  412.  * 
  413.  * So, currently we will call fsync_inode_buffers() instead,
  414.  * to flush _all_ dirty buffers for this inode to disk on 
  415.  * every O_SYNC write, not just the synchronous I/Os.  --sct
  416.  */
  417. if (what & OSYNC_METADATA)
  418. err = fsync_inode_buffers(inode);
  419. if (what & OSYNC_DATA)
  420. err2 = fsync_inode_data_buffers(inode);
  421. if (!err)
  422. err = err2;
  423. spin_lock(&inode_lock);
  424. if ((inode->i_state & I_DIRTY) &&
  425.     ((what & OSYNC_INODE) || (inode->i_state & I_DIRTY_DATASYNC)))
  426. need_write_inode_now = 1;
  427. spin_unlock(&inode_lock);
  428. if (need_write_inode_now)
  429. write_inode_now(inode, 1);
  430. else
  431. wait_on_inode(inode);
  432. return err;
  433. }
  434. /**
  435.  * clear_inode - clear an inode
  436.  * @inode: inode to clear
  437.  *
  438.  * This is called by the filesystem to tell us
  439.  * that the inode is no longer useful. We just
  440.  * terminate it with extreme prejudice.
  441.  */
  442.  
  443. void clear_inode(struct inode *inode)
  444. {
  445. invalidate_inode_buffers(inode);
  446.        
  447. if (inode->i_data.nrpages)
  448. BUG();
  449. if (!(inode->i_state & I_FREEING))
  450. BUG();
  451. if (inode->i_state & I_CLEAR)
  452. BUG();
  453. wait_on_inode(inode);
  454. DQUOT_DROP(inode);
  455. if (inode->i_sb && inode->i_sb->s_op && inode->i_sb->s_op->clear_inode)
  456. inode->i_sb->s_op->clear_inode(inode);
  457. if (inode->i_bdev)
  458. bd_forget(inode);
  459. else if (inode->i_cdev) {
  460. cdput(inode->i_cdev);
  461. inode->i_cdev = NULL;
  462. }
  463. inode->i_state = I_CLEAR;
  464. }
  465. /*
  466.  * Dispose-list gets a local list with local inodes in it, so it doesn't
  467.  * need to worry about list corruption and SMP locks.
  468.  */
  469. static void dispose_list(struct list_head * head)
  470. {
  471. struct list_head * inode_entry;
  472. struct inode * inode;
  473. while ((inode_entry = head->next) != head)
  474. {
  475. list_del(inode_entry);
  476. inode = list_entry(inode_entry, struct inode, i_list);
  477. if (inode->i_data.nrpages)
  478. truncate_inode_pages(&inode->i_data, 0);
  479. clear_inode(inode);
  480. destroy_inode(inode);
  481. inodes_stat.nr_inodes--;
  482. }
  483. }
  484. /*
  485.  * Invalidate all inodes for a device.
  486.  */
  487. static int invalidate_list(struct list_head *head, struct super_block * sb, struct list_head * dispose)
  488. {
  489. struct list_head *next;
  490. int busy = 0, count = 0;
  491. next = head->next;
  492. for (;;) {
  493. struct list_head * tmp = next;
  494. struct inode * inode;
  495. next = next->next;
  496. if (tmp == head)
  497. break;
  498. inode = list_entry(tmp, struct inode, i_list);
  499. if (inode->i_sb != sb)
  500. continue;
  501. invalidate_inode_buffers(inode);
  502. if (!atomic_read(&inode->i_count)) {
  503. list_del_init(&inode->i_hash);
  504. list_del(&inode->i_list);
  505. list_add(&inode->i_list, dispose);
  506. inode->i_state |= I_FREEING;
  507. count++;
  508. continue;
  509. }
  510. busy = 1;
  511. }
  512. /* only unused inodes may be cached with i_count zero */
  513. inodes_stat.nr_unused -= count;
  514. return busy;
  515. }
  516. /*
  517.  * This is a two-stage process. First we collect all
  518.  * offending inodes onto the throw-away list, and in
  519.  * the second stage we actually dispose of them. This
  520.  * is because we don't want to sleep while messing
  521.  * with the global lists..
  522.  */
  523.  
  524. /**
  525.  * invalidate_inodes - discard the inodes on a device
  526.  * @sb: superblock
  527.  *
  528.  * Discard all of the inodes for a given superblock. If the discard
  529.  * fails because there are busy inodes then a non zero value is returned.
  530.  * If the discard is successful all the inodes have been discarded.
  531.  */
  532.  
  533. int invalidate_inodes(struct super_block * sb)
  534. {
  535. int busy;
  536. LIST_HEAD(throw_away);
  537. spin_lock(&inode_lock);
  538. busy = invalidate_list(&inode_in_use, sb, &throw_away);
  539. busy |= invalidate_list(&inode_unused, sb, &throw_away);
  540. busy |= invalidate_list(&sb->s_dirty, sb, &throw_away);
  541. busy |= invalidate_list(&sb->s_locked_inodes, sb, &throw_away);
  542. spin_unlock(&inode_lock);
  543. dispose_list(&throw_away);
  544. return busy;
  545. }
  546.  
  547. int invalidate_device(kdev_t dev, int do_sync)
  548. {
  549. struct super_block *sb;
  550. int res;
  551. if (do_sync)
  552. fsync_dev(dev);
  553. res = 0;
  554. sb = get_super(dev);
  555. if (sb) {
  556. /*
  557.  * no need to lock the super, get_super holds the
  558.  * read semaphore so the filesystem cannot go away
  559.  * under us (->put_super runs with the write lock
  560.  * hold).
  561.  */
  562. shrink_dcache_sb(sb);
  563. res = invalidate_inodes(sb);
  564. drop_super(sb);
  565. }
  566. invalidate_buffers(dev);
  567. return res;
  568. }
  569. /*
  570.  * This is called with the inode lock held. It searches
  571.  * the in-use for freeable inodes, which are moved to a
  572.  * temporary list and then placed on the unused list by
  573.  * dispose_list. 
  574.  *
  575.  * We don't expect to have to call this very often.
  576.  *
  577.  * N.B. The spinlock is released during the call to
  578.  *      dispose_list.
  579.  */
  580. #define CAN_UNUSE(inode) 
  581. ((((inode)->i_state | (inode)->i_data.nrpages) == 0)  && 
  582.  !inode_has_buffers(inode))
  583. #define INODE(entry) (list_entry(entry, struct inode, i_list))
  584. void prune_icache(int goal)
  585. {
  586. LIST_HEAD(list);
  587. struct list_head *entry, *freeable = &list;
  588. int count;
  589. struct inode * inode;
  590. spin_lock(&inode_lock);
  591. count = 0;
  592. entry = inode_unused.prev;
  593. while (entry != &inode_unused)
  594. {
  595. struct list_head *tmp = entry;
  596. entry = entry->prev;
  597. inode = INODE(tmp);
  598. if (inode->i_state & (I_FREEING|I_CLEAR|I_LOCK))
  599. continue;
  600. if (!CAN_UNUSE(inode))
  601. continue;
  602. if (atomic_read(&inode->i_count))
  603. continue;
  604. list_del(tmp);
  605. list_del(&inode->i_hash);
  606. INIT_LIST_HEAD(&inode->i_hash);
  607. list_add(tmp, freeable);
  608. inode->i_state |= I_FREEING;
  609. count++;
  610. if (!--goal)
  611. break;
  612. }
  613. inodes_stat.nr_unused -= count;
  614. spin_unlock(&inode_lock);
  615. dispose_list(freeable);
  616. /* 
  617.  * If we didn't freed enough clean inodes schedule
  618.  * a sync of the dirty inodes, we cannot do it
  619.  * from here or we're either synchronously dogslow
  620.  * or we deadlock with oom.
  621.  */
  622. if (goal)
  623. schedule_task(&unused_inodes_flush_task);
  624. }
  625. int shrink_icache_memory(int priority, int gfp_mask)
  626. {
  627. int count = 0;
  628. /*
  629.  * Nasty deadlock avoidance..
  630.  *
  631.  * We may hold various FS locks, and we don't
  632.  * want to recurse into the FS that called us
  633.  * in clear_inode() and friends..
  634.  */
  635. if (!(gfp_mask & __GFP_FS))
  636. return 0;
  637. count = inodes_stat.nr_unused / priority;
  638. prune_icache(count);
  639. return kmem_cache_shrink(inode_cachep);
  640. }
  641. /*
  642.  * Called with the inode lock held.
  643.  * NOTE: we are not increasing the inode-refcount, you must call __iget()
  644.  * by hand after calling find_inode now! This simplifies iunique and won't
  645.  * add any additional branch in the common code.
  646.  */
  647. static struct inode * find_inode(struct super_block * sb, unsigned long ino, struct list_head *head, find_inode_t find_actor, void *opaque)
  648. {
  649. struct list_head *tmp;
  650. struct inode * inode;
  651. tmp = head;
  652. for (;;) {
  653. tmp = tmp->next;
  654. inode = NULL;
  655. if (tmp == head)
  656. break;
  657. inode = list_entry(tmp, struct inode, i_hash);
  658. if (inode->i_ino != ino)
  659. continue;
  660. if (inode->i_sb != sb)
  661. continue;
  662. if (find_actor && !find_actor(inode, ino, opaque))
  663. continue;
  664. break;
  665. }
  666. return inode;
  667. }
  668. /*
  669.  * This just initializes the inode fields
  670.  * to known values before returning the inode..
  671.  *
  672.  * i_sb, i_ino, i_count, i_state and the lists have
  673.  * been initialized elsewhere..
  674.  */
  675. static void clean_inode(struct inode *inode)
  676. {
  677. static struct address_space_operations empty_aops;
  678. static struct inode_operations empty_iops;
  679. static struct file_operations empty_fops;
  680. memset(&inode->u, 0, sizeof(inode->u));
  681. inode->i_sock = 0;
  682. inode->i_op = &empty_iops;
  683. inode->i_fop = &empty_fops;
  684. inode->i_nlink = 1;
  685. atomic_set(&inode->i_writecount, 0);
  686. inode->i_size = 0;
  687. inode->i_blocks = 0;
  688. inode->i_generation = 0;
  689. memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
  690. inode->i_pipe = NULL;
  691. inode->i_bdev = NULL;
  692. inode->i_cdev = NULL;
  693. inode->i_data.a_ops = &empty_aops;
  694. inode->i_data.host = inode;
  695. inode->i_data.gfp_mask = GFP_HIGHUSER;
  696. inode->i_mapping = &inode->i_data;
  697. }
  698. /**
  699.  * get_empty_inode  - obtain an inode
  700.  *
  701.  * This is called by things like the networking layer
  702.  * etc that want to get an inode without any inode
  703.  * number, or filesystems that allocate new inodes with
  704.  * no pre-existing information.
  705.  *
  706.  * On a successful return the inode pointer is returned. On a failure
  707.  * a %NULL pointer is returned. The returned inode is not on any superblock
  708.  * lists.
  709.  */
  710.  
  711. struct inode * get_empty_inode(void)
  712. {
  713. static unsigned long last_ino;
  714. struct inode * inode;
  715. spin_lock_prefetch(&inode_lock);
  716. inode = alloc_inode();
  717. if (inode)
  718. {
  719. spin_lock(&inode_lock);
  720. inodes_stat.nr_inodes++;
  721. list_add(&inode->i_list, &inode_in_use);
  722. inode->i_sb = NULL;
  723. inode->i_dev = 0;
  724. inode->i_blkbits = 0;
  725. inode->i_ino = ++last_ino;
  726. inode->i_flags = 0;
  727. atomic_set(&inode->i_count, 1);
  728. inode->i_state = 0;
  729. spin_unlock(&inode_lock);
  730. clean_inode(inode);
  731. }
  732. return inode;
  733. }
  734. /*
  735.  * This is called without the inode lock held.. Be careful.
  736.  *
  737.  * We no longer cache the sb_flags in i_flags - see fs.h
  738.  * -- rmk@arm.uk.linux.org
  739.  */
  740. static struct inode * get_new_inode(struct super_block *sb, unsigned long ino, struct list_head *head, find_inode_t find_actor, void *opaque)
  741. {
  742. struct inode * inode;
  743. inode = alloc_inode();
  744. if (inode) {
  745. struct inode * old;
  746. spin_lock(&inode_lock);
  747. /* We released the lock, so.. */
  748. old = find_inode(sb, ino, head, find_actor, opaque);
  749. if (!old) {
  750. inodes_stat.nr_inodes++;
  751. list_add(&inode->i_list, &inode_in_use);
  752. list_add(&inode->i_hash, head);
  753. inode->i_sb = sb;
  754. inode->i_dev = sb->s_dev;
  755. inode->i_blkbits = sb->s_blocksize_bits;
  756. inode->i_ino = ino;
  757. inode->i_flags = 0;
  758. atomic_set(&inode->i_count, 1);
  759. inode->i_state = I_LOCK;
  760. spin_unlock(&inode_lock);
  761. clean_inode(inode);
  762. /* reiserfs specific hack right here.  We don't
  763. ** want this to last, and are looking for VFS changes
  764. ** that will allow us to get rid of it.
  765. ** -- mason@suse.com 
  766. */
  767. if (sb->s_op->read_inode2) {
  768. sb->s_op->read_inode2(inode, opaque) ;
  769. } else {
  770. sb->s_op->read_inode(inode);
  771. }
  772. /*
  773.  * This is special!  We do not need the spinlock
  774.  * when clearing I_LOCK, because we're guaranteed
  775.  * that nobody else tries to do anything about the
  776.  * state of the inode when it is locked, as we
  777.  * just created it (so there can be no old holders
  778.  * that haven't tested I_LOCK).
  779.  */
  780. inode->i_state &= ~I_LOCK;
  781. wake_up(&inode->i_wait);
  782. return inode;
  783. }
  784. /*
  785.  * Uhhuh, somebody else created the same inode under
  786.  * us. Use the old inode instead of the one we just
  787.  * allocated.
  788.  */
  789. __iget(old);
  790. spin_unlock(&inode_lock);
  791. destroy_inode(inode);
  792. inode = old;
  793. wait_on_inode(inode);
  794. }
  795. return inode;
  796. }
  797. static inline unsigned long hash(struct super_block *sb, unsigned long i_ino)
  798. {
  799. unsigned long tmp = i_ino + ((unsigned long) sb / L1_CACHE_BYTES);
  800. tmp = tmp + (tmp >> I_HASHBITS);
  801. return tmp & I_HASHMASK;
  802. }
  803. /* Yeah, I know about quadratic hash. Maybe, later. */
  804. /**
  805.  * iunique - get a unique inode number
  806.  * @sb: superblock
  807.  * @max_reserved: highest reserved inode number
  808.  *
  809.  * Obtain an inode number that is unique on the system for a given
  810.  * superblock. This is used by file systems that have no natural
  811.  * permanent inode numbering system. An inode number is returned that
  812.  * is higher than the reserved limit but unique.
  813.  *
  814.  * BUGS:
  815.  * With a large number of inodes live on the file system this function
  816.  * currently becomes quite slow.
  817.  */
  818.  
  819. ino_t iunique(struct super_block *sb, ino_t max_reserved)
  820. {
  821. static ino_t counter = 0;
  822. struct inode *inode;
  823. struct list_head * head;
  824. ino_t res;
  825. spin_lock(&inode_lock);
  826. retry:
  827. if (counter > max_reserved) {
  828. head = inode_hashtable + hash(sb,counter);
  829. inode = find_inode(sb, res = counter++, head, NULL, NULL);
  830. if (!inode) {
  831. spin_unlock(&inode_lock);
  832. return res;
  833. }
  834. } else {
  835. counter = max_reserved + 1;
  836. }
  837. goto retry;
  838. }
  839. struct inode *igrab(struct inode *inode)
  840. {
  841. spin_lock(&inode_lock);
  842. if (!(inode->i_state & I_FREEING))
  843. __iget(inode);
  844. else
  845. /*
  846.  * Handle the case where s_op->clear_inode is not been
  847.  * called yet, and somebody is calling igrab
  848.  * while the inode is getting freed.
  849.  */
  850. inode = NULL;
  851. spin_unlock(&inode_lock);
  852. return inode;
  853. }
  854. struct inode *iget4(struct super_block *sb, unsigned long ino, find_inode_t find_actor, void *opaque)
  855. {
  856. struct list_head * head = inode_hashtable + hash(sb,ino);
  857. struct inode * inode;
  858. spin_lock(&inode_lock);
  859. inode = find_inode(sb, ino, head, find_actor, opaque);
  860. if (inode) {
  861. __iget(inode);
  862. spin_unlock(&inode_lock);
  863. wait_on_inode(inode);
  864. return inode;
  865. }
  866. spin_unlock(&inode_lock);
  867. /*
  868.  * get_new_inode() will do the right thing, re-trying the search
  869.  * in case it had to block at any point.
  870.  */
  871. return get_new_inode(sb, ino, head, find_actor, opaque);
  872. }
  873. /**
  874.  * insert_inode_hash - hash an inode
  875.  * @inode: unhashed inode
  876.  *
  877.  * Add an inode to the inode hash for this superblock. If the inode
  878.  * has no superblock it is added to a separate anonymous chain.
  879.  */
  880.  
  881. void insert_inode_hash(struct inode *inode)
  882. {
  883. struct list_head *head = &anon_hash_chain;
  884. if (inode->i_sb)
  885. head = inode_hashtable + hash(inode->i_sb, inode->i_ino);
  886. spin_lock(&inode_lock);
  887. list_add(&inode->i_hash, head);
  888. spin_unlock(&inode_lock);
  889. }
  890. /**
  891.  * remove_inode_hash - remove an inode from the hash
  892.  * @inode: inode to unhash
  893.  *
  894.  * Remove an inode from the superblock or anonymous hash.
  895.  */
  896.  
  897. void remove_inode_hash(struct inode *inode)
  898. {
  899. spin_lock(&inode_lock);
  900. list_del(&inode->i_hash);
  901. INIT_LIST_HEAD(&inode->i_hash);
  902. spin_unlock(&inode_lock);
  903. }
  904. /**
  905.  * iput - put an inode 
  906.  * @inode: inode to put
  907.  *
  908.  * Puts an inode, dropping its usage count. If the inode use count hits
  909.  * zero the inode is also then freed and may be destroyed.
  910.  */
  911.  
  912. void iput(struct inode *inode)
  913. {
  914. if (inode) {
  915. struct super_block *sb = inode->i_sb;
  916. struct super_operations *op = NULL;
  917. if (inode->i_state == I_CLEAR)
  918. BUG();
  919. if (sb && sb->s_op)
  920. op = sb->s_op;
  921. if (op && op->put_inode)
  922. op->put_inode(inode);
  923. if (!atomic_dec_and_lock(&inode->i_count, &inode_lock))
  924. return;
  925. if (!inode->i_nlink) {
  926. list_del(&inode->i_hash);
  927. INIT_LIST_HEAD(&inode->i_hash);
  928. list_del(&inode->i_list);
  929. INIT_LIST_HEAD(&inode->i_list);
  930. inode->i_state|=I_FREEING;
  931. inodes_stat.nr_inodes--;
  932. spin_unlock(&inode_lock);
  933. if (inode->i_data.nrpages)
  934. truncate_inode_pages(&inode->i_data, 0);
  935. if (op && op->delete_inode) {
  936. void (*delete)(struct inode *) = op->delete_inode;
  937. if (!is_bad_inode(inode))
  938. DQUOT_INIT(inode);
  939. /* s_op->delete_inode internally recalls clear_inode() */
  940. delete(inode);
  941. } else
  942. clear_inode(inode);
  943. if (inode->i_state != I_CLEAR)
  944. BUG();
  945. } else {
  946. if (!list_empty(&inode->i_hash)) {
  947. if (!(inode->i_state & (I_DIRTY|I_LOCK))) {
  948. list_del(&inode->i_list);
  949. list_add(&inode->i_list, &inode_unused);
  950. }
  951. inodes_stat.nr_unused++;
  952. spin_unlock(&inode_lock);
  953. if (!sb || (sb->s_flags & MS_ACTIVE))
  954. return;
  955. write_inode_now(inode, 1);
  956. spin_lock(&inode_lock);
  957. inodes_stat.nr_unused--;
  958. list_del_init(&inode->i_hash);
  959. }
  960. list_del_init(&inode->i_list);
  961. inode->i_state|=I_FREEING;
  962. inodes_stat.nr_inodes--;
  963. spin_unlock(&inode_lock);
  964. if (inode->i_data.nrpages)
  965. truncate_inode_pages(&inode->i_data, 0);
  966. clear_inode(inode);
  967. }
  968. destroy_inode(inode);
  969. }
  970. }
  971. void force_delete(struct inode *inode)
  972. {
  973. /*
  974.  * Kill off unused inodes ... iput() will unhash and
  975.  * delete the inode if we set i_nlink to zero.
  976.  */
  977. if (atomic_read(&inode->i_count) == 1)
  978. inode->i_nlink = 0;
  979. }
  980. /**
  981.  * bmap - find a block number in a file
  982.  * @inode: inode of file
  983.  * @block: block to find
  984.  *
  985.  * Returns the block number on the device holding the inode that
  986.  * is the disk block number for the block of the file requested.
  987.  * That is, asked for block 4 of inode 1 the function will return the
  988.  * disk block relative to the disk start that holds that block of the 
  989.  * file.
  990.  */
  991.  
  992. int bmap(struct inode * inode, int block)
  993. {
  994. int res = 0;
  995. if (inode->i_mapping->a_ops->bmap)
  996. res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
  997. return res;
  998. }
  999. /*
  1000.  * Initialize the hash tables.
  1001.  */
  1002. void __init inode_init(unsigned long mempages)
  1003. {
  1004. struct list_head *head;
  1005. unsigned long order;
  1006. unsigned int nr_hash;
  1007. int i;
  1008. mempages >>= (14 - PAGE_SHIFT);
  1009. mempages *= sizeof(struct list_head);
  1010. for (order = 0; ((1UL << order) << PAGE_SHIFT) < mempages; order++)
  1011. ;
  1012. do {
  1013. unsigned long tmp;
  1014. nr_hash = (1UL << order) * PAGE_SIZE /
  1015. sizeof(struct list_head);
  1016. i_hash_mask = (nr_hash - 1);
  1017. tmp = nr_hash;
  1018. i_hash_shift = 0;
  1019. while ((tmp >>= 1UL) != 0UL)
  1020. i_hash_shift++;
  1021. inode_hashtable = (struct list_head *)
  1022. __get_free_pages(GFP_ATOMIC, order);
  1023. } while (inode_hashtable == NULL && --order >= 0);
  1024. printk(KERN_INFO "Inode cache hash table entries: %d (order: %ld, %ld bytes)n",
  1025. nr_hash, order, (PAGE_SIZE << order));
  1026. if (!inode_hashtable)
  1027. panic("Failed to allocate inode hash tablen");
  1028. head = inode_hashtable;
  1029. i = nr_hash;
  1030. do {
  1031. INIT_LIST_HEAD(head);
  1032. head++;
  1033. i--;
  1034. } while (i);
  1035. /* inode slab cache */
  1036. inode_cachep = kmem_cache_create("inode_cache", sizeof(struct inode),
  1037.  0, SLAB_HWCACHE_ALIGN, init_once,
  1038.  NULL);
  1039. if (!inode_cachep)
  1040. panic("cannot create inode slab cache");
  1041. unused_inodes_flush_task.routine = try_to_sync_unused_inodes;
  1042. }
  1043. /**
  1044.  * update_atime - update the access time
  1045.  * @inode: inode accessed
  1046.  *
  1047.  * Update the accessed time on an inode and mark it for writeback.
  1048.  * This function automatically handles read only file systems and media,
  1049.  * as well as the "noatime" flag and inode specific "noatime" markers.
  1050.  */
  1051.  
  1052. void update_atime (struct inode *inode)
  1053. {
  1054. if (inode->i_atime == CURRENT_TIME)
  1055. return;
  1056. if ( IS_NOATIME (inode) ) return;
  1057. if ( IS_NODIRATIME (inode) && S_ISDIR (inode->i_mode) ) return;
  1058. if ( IS_RDONLY (inode) ) return;
  1059. inode->i_atime = CURRENT_TIME;
  1060. mark_inode_dirty_sync (inode);
  1061. }   /*  End Function update_atime  */
  1062. /*
  1063.  * Quota functions that want to walk the inode lists..
  1064.  */
  1065. #ifdef CONFIG_QUOTA
  1066. /* Functions back in dquot.c */
  1067. void put_dquot_list(struct list_head *);
  1068. int remove_inode_dquot_ref(struct inode *, short, struct list_head *);
  1069. void remove_dquot_ref(struct super_block *sb, short type)
  1070. {
  1071. struct inode *inode;
  1072. struct list_head *act_head;
  1073. LIST_HEAD(tofree_head);
  1074. if (!sb->dq_op)
  1075. return; /* nothing to do */
  1076. /* We have to be protected against other CPUs */
  1077. lock_kernel(); /* This lock is for quota code */
  1078. spin_lock(&inode_lock); /* This lock is for inodes code */
  1079.  
  1080. list_for_each(act_head, &inode_in_use) {
  1081. inode = list_entry(act_head, struct inode, i_list);
  1082. if (inode->i_sb == sb && IS_QUOTAINIT(inode))
  1083. remove_inode_dquot_ref(inode, type, &tofree_head);
  1084. }
  1085. list_for_each(act_head, &inode_unused) {
  1086. inode = list_entry(act_head, struct inode, i_list);
  1087. if (inode->i_sb == sb && IS_QUOTAINIT(inode))
  1088. remove_inode_dquot_ref(inode, type, &tofree_head);
  1089. }
  1090. list_for_each(act_head, &sb->s_dirty) {
  1091. inode = list_entry(act_head, struct inode, i_list);
  1092. if (IS_QUOTAINIT(inode))
  1093. remove_inode_dquot_ref(inode, type, &tofree_head);
  1094. }
  1095. list_for_each(act_head, &sb->s_locked_inodes) {
  1096. inode = list_entry(act_head, struct inode, i_list);
  1097. if (IS_QUOTAINIT(inode))
  1098. remove_inode_dquot_ref(inode, type, &tofree_head);
  1099. }
  1100. spin_unlock(&inode_lock);
  1101. unlock_kernel();
  1102. put_dquot_list(&tofree_head);
  1103. }
  1104. #endif