blob: 0d5aeccbdd90913ea0a64d8e55573afe544d5a2b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/inode.c
3 *
4 * (C) 1997 Linus Torvalds
5 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/fs.h>
8#include <linux/mm.h>
9#include <linux/dcache.h>
10#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/slab.h>
12#include <linux/writeback.h>
13#include <linux/module.h>
14#include <linux/backing-dev.h>
15#include <linux/wait.h>
Nick Piggin88e0fbc2009-09-22 16:43:50 -070016#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/hash.h>
18#include <linux/swap.h>
19#include <linux/security.h>
20#include <linux/pagemap.h>
21#include <linux/cdev.h>
22#include <linux/bootmem.h>
Eric Paris3be25f42009-05-21 17:01:26 -040023#include <linux/fsnotify.h>
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -080024#include <linux/mount.h>
Arjan van de Venefaee192009-01-06 07:20:54 -080025#include <linux/async.h>
Al Virof19d4a82009-06-08 19:50:45 -040026#include <linux/posix_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/*
29 * This is needed for the following functions:
30 * - inode_has_buffers
31 * - invalidate_inode_buffers
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * - invalidate_bdev
33 *
34 * FIXME: remove all knowledge of the buffer layer from this file
35 */
36#include <linux/buffer_head.h>
37
38/*
39 * New inode.c implementation.
40 *
41 * This implementation has the basic premise of trying
42 * to be extremely low-overhead and SMP-safe, yet be
43 * simple enough to be "obviously correct".
44 *
45 * Famous last words.
46 */
47
48/* inode dynamic allocation 1999, Andrea Arcangeli <andrea@suse.de> */
49
50/* #define INODE_PARANOIA 1 */
51/* #define INODE_DEBUG 1 */
52
53/*
54 * Inode lookup is no longer as critical as it used to be:
55 * most of the lookups are going to be through the dcache.
56 */
57#define I_HASHBITS i_hash_shift
58#define I_HASHMASK i_hash_mask
59
Eric Dumazetfa3536c2006-03-26 01:37:24 -080060static unsigned int i_hash_mask __read_mostly;
61static unsigned int i_hash_shift __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*
64 * Each inode can be on two separate lists. One is
65 * the hash list of the inode, used for lookups. The
66 * other linked list is the "type" list:
67 * "in_use" - valid inode, i_count > 0, i_nlink > 0
68 * "dirty" - as "in_use" but also dirty
69 * "unused" - valid inode, i_count = 0
70 *
71 * A "dirty" list is maintained for each super block,
72 * allowing for low-overhead inode sync() operations.
73 */
74
75LIST_HEAD(inode_in_use);
76LIST_HEAD(inode_unused);
Eric Dumazetfa3536c2006-03-26 01:37:24 -080077static struct hlist_head *inode_hashtable __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/*
80 * A simple spinlock to protect the list manipulations.
81 *
82 * NOTE! You also have to own the lock if you change
83 * the i_state of an inode while it is in use..
84 */
85DEFINE_SPINLOCK(inode_lock);
86
87/*
Nick Piggin88e0fbc2009-09-22 16:43:50 -070088 * iprune_sem provides exclusion between the kswapd or try_to_free_pages
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * icache shrinking path, and the umount path. Without this exclusion,
90 * by the time prune_icache calls iput for the inode whose pages it has
91 * been invalidating, or by the time it calls clear_inode & destroy_inode
92 * from its final dispose_list, the struct super_block they refer to
93 * (for inode->i_sb->s_op) may already have been freed and reused.
Nick Piggin88e0fbc2009-09-22 16:43:50 -070094 *
95 * We make this an rwsem because the fastpath is icache shrinking. In
96 * some cases a filesystem may be doing a significant amount of work in
97 * its inode reclaim code, so this should improve parallelism.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
Nick Piggin88e0fbc2009-09-22 16:43:50 -070099static DECLARE_RWSEM(iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/*
102 * Statistics gathering..
103 */
104struct inodes_stat_t inodes_stat;
105
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400106static struct percpu_counter nr_inodes __cacheline_aligned_in_smp;
107static struct percpu_counter nr_inodes_unused __cacheline_aligned_in_smp;
108
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530109static struct kmem_cache *inode_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400111static inline int get_nr_inodes(void)
112{
113 return percpu_counter_sum_positive(&nr_inodes);
114}
115
116static inline int get_nr_inodes_unused(void)
117{
118 return percpu_counter_sum_positive(&nr_inodes_unused);
119}
120
121int get_nr_dirty_inodes(void)
122{
123 int nr_dirty = get_nr_inodes() - get_nr_inodes_unused();
124 return nr_dirty > 0 ? nr_dirty : 0;
125
126}
127
128/*
129 * Handle nr_inode sysctl
130 */
131#ifdef CONFIG_SYSCTL
132int proc_nr_inodes(ctl_table *table, int write,
133 void __user *buffer, size_t *lenp, loff_t *ppos)
134{
135 inodes_stat.nr_inodes = get_nr_inodes();
136 inodes_stat.nr_unused = get_nr_inodes_unused();
137 return proc_dointvec(table, write, buffer, lenp, ppos);
138}
139#endif
140
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700141static void wake_up_inode(struct inode *inode)
142{
143 /*
144 * Prevent speculative execution through spin_unlock(&inode_lock);
145 */
146 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100147 wake_up_bit(&inode->i_state, __I_NEW);
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700148}
149
David Chinner2cb15992008-10-30 17:32:23 +1100150/**
151 * inode_init_always - perform inode structure intialisation
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800152 * @sb: superblock inode belongs to
153 * @inode: inode to initialise
David Chinner2cb15992008-10-30 17:32:23 +1100154 *
155 * These are initializations that need to be done on every inode
156 * allocation as the fields are not initialised by slab allocation.
157 */
Christoph Hellwig54e34622009-08-07 14:38:25 -0300158int inode_init_always(struct super_block *sb, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700160 static const struct address_space_operations empty_aops;
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700161 static const struct inode_operations empty_iops;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800162 static const struct file_operations empty_fops;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530163 struct address_space *const mapping = &inode->i_data;
David Chinner2cb15992008-10-30 17:32:23 +1100164
165 inode->i_sb = sb;
166 inode->i_blkbits = sb->s_blocksize_bits;
167 inode->i_flags = 0;
168 atomic_set(&inode->i_count, 1);
169 inode->i_op = &empty_iops;
170 inode->i_fop = &empty_fops;
171 inode->i_nlink = 1;
Al Viro56ff5ef2008-12-09 09:34:39 -0500172 inode->i_uid = 0;
173 inode->i_gid = 0;
David Chinner2cb15992008-10-30 17:32:23 +1100174 atomic_set(&inode->i_writecount, 0);
175 inode->i_size = 0;
176 inode->i_blocks = 0;
177 inode->i_bytes = 0;
178 inode->i_generation = 0;
179#ifdef CONFIG_QUOTA
180 memset(&inode->i_dquot, 0, sizeof(inode->i_dquot));
181#endif
182 inode->i_pipe = NULL;
183 inode->i_bdev = NULL;
184 inode->i_cdev = NULL;
185 inode->i_rdev = 0;
186 inode->dirtied_when = 0;
Mimi Zohar6146f0d2009-02-04 09:06:57 -0500187
188 if (security_inode_alloc(inode))
Christoph Hellwig54e34622009-08-07 14:38:25 -0300189 goto out;
David Chinner2cb15992008-10-30 17:32:23 +1100190 spin_lock_init(&inode->i_lock);
191 lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key);
192
193 mutex_init(&inode->i_mutex);
194 lockdep_set_class(&inode->i_mutex, &sb->s_type->i_mutex_key);
195
196 init_rwsem(&inode->i_alloc_sem);
197 lockdep_set_class(&inode->i_alloc_sem, &sb->s_type->i_alloc_sem_key);
198
199 mapping->a_ops = &empty_aops;
200 mapping->host = inode;
201 mapping->flags = 0;
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800202 mapping_set_gfp_mask(mapping, GFP_HIGHUSER_MOVABLE);
David Chinner2cb15992008-10-30 17:32:23 +1100203 mapping->assoc_mapping = NULL;
204 mapping->backing_dev_info = &default_backing_dev_info;
205 mapping->writeback_index = 0;
206
207 /*
208 * If the block_device provides a backing_dev_info for client
209 * inodes then use that. Otherwise the inode share the bdev's
210 * backing_dev_info.
211 */
212 if (sb->s_bdev) {
213 struct backing_dev_info *bdi;
214
Jens Axboe2c96ce92009-09-15 09:43:56 +0200215 bdi = sb->s_bdev->bd_inode->i_mapping->backing_dev_info;
David Chinner2cb15992008-10-30 17:32:23 +1100216 mapping->backing_dev_info = bdi;
217 }
218 inode->i_private = NULL;
219 inode->i_mapping = mapping;
Al Virof19d4a82009-06-08 19:50:45 -0400220#ifdef CONFIG_FS_POSIX_ACL
221 inode->i_acl = inode->i_default_acl = ACL_NOT_CACHED;
222#endif
David Chinner2cb15992008-10-30 17:32:23 +1100223
Eric Paris3be25f42009-05-21 17:01:26 -0400224#ifdef CONFIG_FSNOTIFY
225 inode->i_fsnotify_mask = 0;
226#endif
227
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400228 percpu_counter_inc(&nr_inodes);
229
Christoph Hellwig54e34622009-08-07 14:38:25 -0300230 return 0;
Christoph Hellwig54e34622009-08-07 14:38:25 -0300231out:
232 return -ENOMEM;
David Chinner2cb15992008-10-30 17:32:23 +1100233}
234EXPORT_SYMBOL(inode_init_always);
235
236static struct inode *alloc_inode(struct super_block *sb)
237{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 struct inode *inode;
239
240 if (sb->s_op->alloc_inode)
241 inode = sb->s_op->alloc_inode(sb);
242 else
David Chinner2cb15992008-10-30 17:32:23 +1100243 inode = kmem_cache_alloc(inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Christoph Hellwig54e34622009-08-07 14:38:25 -0300245 if (!inode)
246 return NULL;
247
248 if (unlikely(inode_init_always(sb, inode))) {
249 if (inode->i_sb->s_op->destroy_inode)
250 inode->i_sb->s_op->destroy_inode(inode);
251 else
252 kmem_cache_free(inode_cachep, inode);
253 return NULL;
254 }
255
256 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300259void __destroy_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Eric Sesterhennb7542f82006-04-02 13:38:18 +0200261 BUG_ON(inode_has_buffers(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 security_inode_free(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400263 fsnotify_inode_delete(inode);
Al Virof19d4a82009-06-08 19:50:45 -0400264#ifdef CONFIG_FS_POSIX_ACL
265 if (inode->i_acl && inode->i_acl != ACL_NOT_CACHED)
266 posix_acl_release(inode->i_acl);
267 if (inode->i_default_acl && inode->i_default_acl != ACL_NOT_CACHED)
268 posix_acl_release(inode->i_default_acl);
269#endif
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400270 percpu_counter_dec(&nr_inodes);
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300271}
272EXPORT_SYMBOL(__destroy_inode);
273
Christoph Hellwig56b0dac2010-10-06 10:48:55 +0200274static void destroy_inode(struct inode *inode)
Christoph Hellwig2e00c972009-08-07 14:38:29 -0300275{
276 __destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (inode->i_sb->s_op->destroy_inode)
278 inode->i_sb->s_op->destroy_inode(inode);
279 else
280 kmem_cache_free(inode_cachep, (inode));
281}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283/*
284 * These are initializations that only need to be done
285 * once, because the fields are idempotent across use
286 * of the inode, so let the slab aware of that.
287 */
288void inode_init_once(struct inode *inode)
289{
290 memset(inode, 0, sizeof(*inode));
291 INIT_HLIST_NODE(&inode->i_hash);
292 INIT_LIST_HEAD(&inode->i_dentry);
293 INIT_LIST_HEAD(&inode->i_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 INIT_RADIX_TREE(&inode->i_data.page_tree, GFP_ATOMIC);
Nick Piggin19fd6232008-07-25 19:45:32 -0700295 spin_lock_init(&inode->i_data.tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 spin_lock_init(&inode->i_data.i_mmap_lock);
297 INIT_LIST_HEAD(&inode->i_data.private_list);
298 spin_lock_init(&inode->i_data.private_lock);
299 INIT_RAW_PRIO_TREE_ROOT(&inode->i_data.i_mmap);
300 INIT_LIST_HEAD(&inode->i_data.i_mmap_nonlinear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 i_size_ordered_init(inode);
Eric Paris3be25f42009-05-21 17:01:26 -0400302#ifdef CONFIG_FSNOTIFY
Eric Parise61ce862009-12-17 21:24:24 -0500303 INIT_HLIST_HEAD(&inode->i_fsnotify_marks);
Eric Paris3be25f42009-05-21 17:01:26 -0400304#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306EXPORT_SYMBOL(inode_init_once);
307
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700308static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530310 struct inode *inode = (struct inode *) foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Christoph Lametera35afb82007-05-16 22:10:57 -0700312 inode_init_once(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315/*
316 * inode_lock must be held
317 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530318void __iget(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Richard Kennedy2e147f12010-05-14 10:49:22 +0100320 if (atomic_inc_return(&inode->i_count) != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return;
Richard Kennedy2e147f12010-05-14 10:49:22 +0100322
Joern Engel1c0eeaf2007-10-16 23:30:44 -0700323 if (!(inode->i_state & (I_DIRTY|I_SYNC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 list_move(&inode->i_list, &inode_in_use);
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400325 percpu_counter_dec(&nr_inodes_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Al Virob0683aa2010-06-04 20:55:25 -0400328void end_writeback(struct inode *inode)
329{
330 might_sleep();
331 BUG_ON(inode->i_data.nrpages);
332 BUG_ON(!list_empty(&inode->i_data.private_list));
333 BUG_ON(!(inode->i_state & I_FREEING));
334 BUG_ON(inode->i_state & I_CLEAR);
335 inode_sync_wait(inode);
336 inode->i_state = I_FREEING | I_CLEAR;
337}
338EXPORT_SYMBOL(end_writeback);
339
Al Viro644da592010-06-07 13:21:05 -0400340static void evict(struct inode *inode)
Al Virob4272d42010-06-04 19:33:20 -0400341{
342 const struct super_operations *op = inode->i_sb->s_op;
343
Al Virobe7ce412010-06-04 19:40:39 -0400344 if (op->evict_inode) {
345 op->evict_inode(inode);
Al Virob4272d42010-06-04 19:33:20 -0400346 } else {
347 if (inode->i_data.nrpages)
348 truncate_inode_pages(&inode->i_data, 0);
Al Viro30140832010-06-07 13:23:20 -0400349 end_writeback(inode);
Al Virob4272d42010-06-04 19:33:20 -0400350 }
Al Viro661074e2010-06-04 20:19:55 -0400351 if (S_ISBLK(inode->i_mode) && inode->i_bdev)
352 bd_forget(inode);
353 if (S_ISCHR(inode->i_mode) && inode->i_cdev)
354 cd_forget(inode);
Al Virob4272d42010-06-04 19:33:20 -0400355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357/*
358 * dispose_list - dispose of the contents of a local list
359 * @head: the head of the list to free
360 *
361 * Dispose-list gets a local list with local inodes in it, so it doesn't
362 * need to worry about list corruption and SMP locks.
363 */
364static void dispose_list(struct list_head *head)
365{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 while (!list_empty(head)) {
367 struct inode *inode;
368
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700369 inode = list_first_entry(head, struct inode, i_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 list_del(&inode->i_list);
371
Al Viro644da592010-06-07 13:21:05 -0400372 evict(inode);
Artem B. Bityuckiy4120db42005-07-12 13:58:12 -0700373
374 spin_lock(&inode_lock);
375 hlist_del_init(&inode->i_hash);
376 list_del_init(&inode->i_sb_list);
377 spin_unlock(&inode_lock);
378
379 wake_up_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 destroy_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384/*
385 * Invalidate all inodes for a device.
386 */
387static int invalidate_list(struct list_head *head, struct list_head *dispose)
388{
389 struct list_head *next;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400390 int busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 next = head->next;
393 for (;;) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530394 struct list_head *tmp = next;
395 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /*
398 * We can reschedule here without worrying about the list's
399 * consistency because the per-sb list of inodes must not
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700400 * change during umount anymore, and because iprune_sem keeps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * shrink_icache_memory() away.
402 */
403 cond_resched_lock(&inode_lock);
404
405 next = next->next;
406 if (tmp == head)
407 break;
408 inode = list_entry(tmp, struct inode, i_sb_list);
Nick Pigginaabb8fd2009-03-11 13:17:36 -0700409 if (inode->i_state & I_NEW)
410 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 invalidate_inode_buffers(inode);
412 if (!atomic_read(&inode->i_count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 list_move(&inode->i_list, dispose);
Nick Piggin7ef0d732009-03-12 14:31:38 -0700414 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 inode->i_state |= I_FREEING;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400416 percpu_counter_dec(&nr_inodes_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 continue;
418 }
419 busy = 1;
420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return busy;
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/**
425 * invalidate_inodes - discard the inodes on a device
426 * @sb: superblock
427 *
428 * Discard all of the inodes for a given superblock. If the discard
429 * fails because there are busy inodes then a non zero value is returned.
430 * If the discard is successful all the inodes have been discarded.
431 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530432int invalidate_inodes(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 int busy;
435 LIST_HEAD(throw_away);
436
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700437 down_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 spin_lock(&inode_lock);
Eric Paris164bc612009-05-21 17:01:58 -0400439 fsnotify_unmount_inodes(&sb->s_inodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 busy = invalidate_list(&sb->s_inodes, &throw_away);
441 spin_unlock(&inode_lock);
442
443 dispose_list(&throw_away);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700444 up_write(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 return busy;
447}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449static int can_unuse(struct inode *inode)
450{
451 if (inode->i_state)
452 return 0;
453 if (inode_has_buffers(inode))
454 return 0;
455 if (atomic_read(&inode->i_count))
456 return 0;
457 if (inode->i_data.nrpages)
458 return 0;
459 return 1;
460}
461
462/*
463 * Scan `goal' inodes on the unused list for freeable ones. They are moved to
464 * a temporary list and then are freed outside inode_lock by dispose_list().
465 *
466 * Any inodes which are pinned purely because of attached pagecache have their
467 * pagecache removed. We expect the final iput() on that inode to add it to
468 * the front of the inode_unused list. So look for it there and if the
469 * inode is still freeable, proceed. The right inode is found 99.9% of the
470 * time in testing on a 4-way.
471 *
472 * If the inode has metadata buffers attached to mapping->private_list then
473 * try to remove them.
474 */
475static void prune_icache(int nr_to_scan)
476{
477 LIST_HEAD(freeable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int nr_scanned;
479 unsigned long reap = 0;
480
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700481 down_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 spin_lock(&inode_lock);
483 for (nr_scanned = 0; nr_scanned < nr_to_scan; nr_scanned++) {
484 struct inode *inode;
485
486 if (list_empty(&inode_unused))
487 break;
488
489 inode = list_entry(inode_unused.prev, struct inode, i_list);
490
491 if (inode->i_state || atomic_read(&inode->i_count)) {
492 list_move(&inode->i_list, &inode_unused);
493 continue;
494 }
495 if (inode_has_buffers(inode) || inode->i_data.nrpages) {
496 __iget(inode);
497 spin_unlock(&inode_lock);
498 if (remove_inode_buffers(inode))
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800499 reap += invalidate_mapping_pages(&inode->i_data,
500 0, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 iput(inode);
502 spin_lock(&inode_lock);
503
504 if (inode != list_entry(inode_unused.next,
505 struct inode, i_list))
506 continue; /* wrong inode or list_empty */
507 if (!can_unuse(inode))
508 continue;
509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 list_move(&inode->i_list, &freeable);
Nick Piggin7ef0d732009-03-12 14:31:38 -0700511 WARN_ON(inode->i_state & I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 inode->i_state |= I_FREEING;
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400513 percpu_counter_dec(&nr_inodes_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
Christoph Lameterf8891e52006-06-30 01:55:45 -0700515 if (current_is_kswapd())
516 __count_vm_events(KSWAPD_INODESTEAL, reap);
517 else
518 __count_vm_events(PGINODESTEAL, reap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 spin_unlock(&inode_lock);
520
521 dispose_list(&freeable);
Nick Piggin88e0fbc2009-09-22 16:43:50 -0700522 up_read(&iprune_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525/*
526 * shrink_icache_memory() will attempt to reclaim some unused inodes. Here,
527 * "unused" means that no dentries are referring to the inodes: the files are
528 * not open and the dcache references to those inodes have already been
529 * reclaimed.
530 *
531 * This function is passed the number of inodes to scan, and it returns the
532 * total number of remaining possibly-reclaimable inodes.
533 */
Dave Chinner7f8275d2010-07-19 14:56:17 +1000534static int shrink_icache_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 if (nr) {
537 /*
538 * Nasty deadlock avoidance. We may hold various FS locks,
539 * and we don't want to recurse into the FS that called us
540 * in clear_inode() and friends..
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530541 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (!(gfp_mask & __GFP_FS))
543 return -1;
544 prune_icache(nr);
545 }
Dave Chinnercffbc8a2010-10-23 05:03:02 -0400546 return (get_nr_inodes_unused() / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Rusty Russell8e1f9362007-07-17 04:03:17 -0700549static struct shrinker icache_shrinker = {
550 .shrink = shrink_icache_memory,
551 .seeks = DEFAULT_SEEKS,
552};
553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554static void __wait_on_freeing_inode(struct inode *inode);
555/*
556 * Called with the inode lock held.
557 * NOTE: we are not increasing the inode-refcount, you must call __iget()
558 * by hand after calling find_inode now! This simplifies iunique and won't
559 * add any additional branch in the common code.
560 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530561static struct inode *find_inode(struct super_block *sb,
562 struct hlist_head *head,
563 int (*test)(struct inode *, void *),
564 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
566 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530567 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700570 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (inode->i_sb != sb)
572 continue;
573 if (!test(inode, data))
574 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400575 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 __wait_on_freeing_inode(inode);
577 goto repeat;
578 }
579 break;
580 }
581 return node ? inode : NULL;
582}
583
584/*
585 * find_inode_fast is the fast path version of find_inode, see the comment at
586 * iget_locked for details.
587 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530588static struct inode *find_inode_fast(struct super_block *sb,
589 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
591 struct hlist_node *node;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530592 struct inode *inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594repeat:
Matthias Kaehlckec5c8be32008-04-29 00:59:40 -0700595 hlist_for_each_entry(inode, node, head, i_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (inode->i_ino != ino)
597 continue;
598 if (inode->i_sb != sb)
599 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -0400600 if (inode->i_state & (I_FREEING|I_WILL_FREE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 __wait_on_freeing_inode(inode);
602 goto repeat;
603 }
604 break;
605 }
606 return node ? inode : NULL;
607}
608
David Chinner8290c352008-10-30 17:35:24 +1100609static unsigned long hash(struct super_block *sb, unsigned long hashval)
610{
611 unsigned long tmp;
612
613 tmp = (hashval * (unsigned long)sb) ^ (GOLDEN_RATIO_PRIME + hashval) /
614 L1_CACHE_BYTES;
615 tmp = tmp ^ ((tmp ^ GOLDEN_RATIO_PRIME) >> I_HASHBITS);
616 return tmp & I_HASHMASK;
617}
618
619static inline void
620__inode_add_to_lists(struct super_block *sb, struct hlist_head *head,
621 struct inode *inode)
622{
David Chinner8290c352008-10-30 17:35:24 +1100623 list_add(&inode->i_list, &inode_in_use);
624 list_add(&inode->i_sb_list, &sb->s_inodes);
625 if (head)
626 hlist_add_head(&inode->i_hash, head);
627}
628
629/**
630 * inode_add_to_lists - add a new inode to relevant lists
Randy Dunlap0bc02f32009-01-06 14:41:13 -0800631 * @sb: superblock inode belongs to
632 * @inode: inode to mark in use
David Chinner8290c352008-10-30 17:35:24 +1100633 *
634 * When an inode is allocated it needs to be accounted for, added to the in use
635 * list, the owning superblock and the inode hash. This needs to be done under
636 * the inode_lock, so export a function to do this rather than the inode lock
637 * itself. We calculate the hash list to add to here so it is all internal
638 * which requires the caller to have already set up the inode number in the
639 * inode to add.
640 */
641void inode_add_to_lists(struct super_block *sb, struct inode *inode)
642{
643 struct hlist_head *head = inode_hashtable + hash(sb, inode->i_ino);
644
645 spin_lock(&inode_lock);
646 __inode_add_to_lists(sb, head, inode);
647 spin_unlock(&inode_lock);
648}
649EXPORT_SYMBOL_GPL(inode_add_to_lists);
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/**
652 * new_inode - obtain an inode
653 * @sb: superblock
654 *
Mel Gorman769848c2007-07-17 04:03:05 -0700655 * Allocates a new inode for given superblock. The default gfp_mask
Hugh Dickins3c1d4372009-01-06 14:39:23 -0800656 * for allocations related to inode->i_mapping is GFP_HIGHUSER_MOVABLE.
Mel Gorman769848c2007-07-17 04:03:05 -0700657 * If HIGHMEM pages are unsuitable or it is known that pages allocated
658 * for the page cache are not reclaimable or migratable,
659 * mapping_set_gfp_mask() must be called with suitable flags on the
660 * newly created inode's mapping
661 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 */
663struct inode *new_inode(struct super_block *sb)
664{
Jeff Layton866b04f2007-05-08 00:32:29 -0700665 /*
666 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
667 * error if st_ino won't fit in target struct field. Use 32bit counter
668 * here to attempt to avoid that.
669 */
670 static unsigned int last_ino;
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530671 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 spin_lock_prefetch(&inode_lock);
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 inode = alloc_inode(sb);
676 if (inode) {
677 spin_lock(&inode_lock);
David Chinner8290c352008-10-30 17:35:24 +1100678 __inode_add_to_lists(sb, NULL, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 inode->i_ino = ++last_ino;
680 inode->i_state = 0;
681 spin_unlock(&inode_lock);
682 }
683 return inode;
684}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685EXPORT_SYMBOL(new_inode);
686
687void unlock_new_inode(struct inode *inode)
688{
Peter Zijlstra14358e62007-10-14 01:38:33 +0200689#ifdef CONFIG_DEBUG_LOCK_ALLOC
Namhyung Kima3314a02010-10-11 22:38:00 +0900690 if (S_ISDIR(inode->i_mode)) {
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200691 struct file_system_type *type = inode->i_sb->s_type;
692
Jan Kara9a7aa122009-06-04 15:26:49 +0200693 /* Set new key only if filesystem hasn't already changed it */
694 if (!lockdep_match_class(&inode->i_mutex,
695 &type->i_mutex_key)) {
696 /*
697 * ensure nobody is actually holding i_mutex
698 */
699 mutex_destroy(&inode->i_mutex);
700 mutex_init(&inode->i_mutex);
701 lockdep_set_class(&inode->i_mutex,
702 &type->i_mutex_dir_key);
703 }
Peter Zijlstra1e89a5e2007-10-16 06:47:54 +0200704 }
Peter Zijlstra14358e62007-10-14 01:38:33 +0200705#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /*
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100707 * This is special! We do not need the spinlock when clearing I_NEW,
Jan Kara580be082009-09-21 17:01:06 -0700708 * because we're guaranteed that nobody else tries to do anything about
709 * the state of the inode when it is locked, as we just created it (so
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100710 * there can be no old holders that haven't tested I_NEW).
Jan Kara580be082009-09-21 17:01:06 -0700711 * However we must emit the memory barrier so that other CPUs reliably
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100712 * see the clearing of I_NEW after the other inode initialisation has
Jan Kara580be082009-09-21 17:01:06 -0700713 * completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 */
Jan Kara580be082009-09-21 17:01:06 -0700715 smp_mb();
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100716 WARN_ON(!(inode->i_state & I_NEW));
717 inode->i_state &= ~I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 wake_up_inode(inode);
719}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720EXPORT_SYMBOL(unlock_new_inode);
721
722/*
723 * This is called without the inode lock held.. Be careful.
724 *
725 * We no longer cache the sb_flags in i_flags - see fs.h
726 * -- rmk@arm.uk.linux.org
727 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530728static struct inode *get_new_inode(struct super_block *sb,
729 struct hlist_head *head,
730 int (*test)(struct inode *, void *),
731 int (*set)(struct inode *, void *),
732 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530734 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 inode = alloc_inode(sb);
737 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530738 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 spin_lock(&inode_lock);
741 /* We released the lock, so.. */
742 old = find_inode(sb, head, test, data);
743 if (!old) {
744 if (set(inode, data))
745 goto set_failed;
746
David Chinner8290c352008-10-30 17:35:24 +1100747 __inode_add_to_lists(sb, head, inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100748 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 spin_unlock(&inode_lock);
750
751 /* Return the locked inode with I_NEW set, the
752 * caller is responsible for filling in the contents
753 */
754 return inode;
755 }
756
757 /*
758 * Uhhuh, somebody else created the same inode under
759 * us. Use the old inode instead of the one we just
760 * allocated.
761 */
762 __iget(old);
763 spin_unlock(&inode_lock);
764 destroy_inode(inode);
765 inode = old;
766 wait_on_inode(inode);
767 }
768 return inode;
769
770set_failed:
771 spin_unlock(&inode_lock);
772 destroy_inode(inode);
773 return NULL;
774}
775
776/*
777 * get_new_inode_fast is the fast path version of get_new_inode, see the
778 * comment at iget_locked for details.
779 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530780static struct inode *get_new_inode_fast(struct super_block *sb,
781 struct hlist_head *head, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530783 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 inode = alloc_inode(sb);
786 if (inode) {
Manish Katiyar6b3304b2009-03-31 19:35:54 +0530787 struct inode *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 spin_lock(&inode_lock);
790 /* We released the lock, so.. */
791 old = find_inode_fast(sb, head, ino);
792 if (!old) {
793 inode->i_ino = ino;
David Chinner8290c352008-10-30 17:35:24 +1100794 __inode_add_to_lists(sb, head, inode);
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100795 inode->i_state = I_NEW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 spin_unlock(&inode_lock);
797
798 /* Return the locked inode with I_NEW set, the
799 * caller is responsible for filling in the contents
800 */
801 return inode;
802 }
803
804 /*
805 * Uhhuh, somebody else created the same inode under
806 * us. Use the old inode instead of the one we just
807 * allocated.
808 */
809 __iget(old);
810 spin_unlock(&inode_lock);
811 destroy_inode(inode);
812 inode = old;
813 wait_on_inode(inode);
814 }
815 return inode;
816}
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818/**
819 * iunique - get a unique inode number
820 * @sb: superblock
821 * @max_reserved: highest reserved inode number
822 *
823 * Obtain an inode number that is unique on the system for a given
824 * superblock. This is used by file systems that have no natural
825 * permanent inode numbering system. An inode number is returned that
826 * is higher than the reserved limit but unique.
827 *
828 * BUGS:
829 * With a large number of inodes live on the file system this function
830 * currently becomes quite slow.
831 */
832ino_t iunique(struct super_block *sb, ino_t max_reserved)
833{
Jeff Layton866b04f2007-05-08 00:32:29 -0700834 /*
835 * On a 32bit, non LFS stat() call, glibc will generate an EOVERFLOW
836 * error if st_ino won't fit in target struct field. Use 32bit counter
837 * here to attempt to avoid that.
838 */
839 static unsigned int counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 struct inode *inode;
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700841 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 ino_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Jeffrey Layton3361c7b2007-05-08 00:29:48 -0700844 spin_lock(&inode_lock);
845 do {
846 if (counter <= max_reserved)
847 counter = max_reserved + 1;
848 res = counter++;
849 head = inode_hashtable + hash(sb, res);
850 inode = find_inode_fast(sb, head, res);
851 } while (inode != NULL);
852 spin_unlock(&inode_lock);
853
854 return res;
855}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856EXPORT_SYMBOL(iunique);
857
858struct inode *igrab(struct inode *inode)
859{
860 spin_lock(&inode_lock);
Al Viroa4ffdde2010-06-02 17:38:30 -0400861 if (!(inode->i_state & (I_FREEING|I_WILL_FREE)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 __iget(inode);
863 else
864 /*
865 * Handle the case where s_op->clear_inode is not been
866 * called yet, and somebody is calling igrab
867 * while the inode is getting freed.
868 */
869 inode = NULL;
870 spin_unlock(&inode_lock);
871 return inode;
872}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873EXPORT_SYMBOL(igrab);
874
875/**
876 * ifind - internal function, you want ilookup5() or iget5().
877 * @sb: super block of file system to search
878 * @head: the head of the list to search
879 * @test: callback used for comparisons between inodes
880 * @data: opaque data pointer to pass to @test
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700881 * @wait: if true wait for the inode to be unlocked, if false do not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 *
883 * ifind() searches for the inode specified by @data in the inode
884 * cache. This is a generalized version of ifind_fast() for file systems where
885 * the inode number is not sufficient for unique identification of an inode.
886 *
887 * If the inode is in the cache, the inode is returned with an incremented
888 * reference count.
889 *
890 * Otherwise NULL is returned.
891 *
892 * Note, @test is called with the inode_lock held, so can't sleep.
893 */
Matt Mackall5d2bea42006-01-08 01:05:21 -0800894static struct inode *ifind(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 struct hlist_head *head, int (*test)(struct inode *, void *),
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700896 void *data, const int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 struct inode *inode;
899
900 spin_lock(&inode_lock);
901 inode = find_inode(sb, head, test, data);
902 if (inode) {
903 __iget(inode);
904 spin_unlock(&inode_lock);
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700905 if (likely(wait))
906 wait_on_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return inode;
908 }
909 spin_unlock(&inode_lock);
910 return NULL;
911}
912
913/**
914 * ifind_fast - internal function, you want ilookup() or iget().
915 * @sb: super block of file system to search
916 * @head: head of the list to search
917 * @ino: inode number to search for
918 *
919 * ifind_fast() searches for the inode @ino in the inode cache. This is for
920 * file systems where the inode number is sufficient for unique identification
921 * of an inode.
922 *
923 * If the inode is in the cache, the inode is returned with an incremented
924 * reference count.
925 *
926 * Otherwise NULL is returned.
927 */
Matt Mackall5d2bea42006-01-08 01:05:21 -0800928static struct inode *ifind_fast(struct super_block *sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 struct hlist_head *head, unsigned long ino)
930{
931 struct inode *inode;
932
933 spin_lock(&inode_lock);
934 inode = find_inode_fast(sb, head, ino);
935 if (inode) {
936 __iget(inode);
937 spin_unlock(&inode_lock);
938 wait_on_inode(inode);
939 return inode;
940 }
941 spin_unlock(&inode_lock);
942 return NULL;
943}
944
945/**
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700946 * ilookup5_nowait - search for an inode in the inode cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 * @sb: super block of file system to search
948 * @hashval: hash value (usually inode number) to search for
949 * @test: callback used for comparisons between inodes
950 * @data: opaque data pointer to pass to @test
951 *
952 * ilookup5() uses ifind() to search for the inode specified by @hashval and
953 * @data in the inode cache. This is a generalized version of ilookup() for
954 * file systems where the inode number is not sufficient for unique
955 * identification of an inode.
956 *
957 * If the inode is in the cache, the inode is returned with an incremented
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700958 * reference count. Note, the inode lock is not waited upon so you have to be
959 * very careful what you do with the returned inode. You probably should be
960 * using ilookup5() instead.
961 *
962 * Otherwise NULL is returned.
963 *
964 * Note, @test is called with the inode_lock held, so can't sleep.
965 */
966struct inode *ilookup5_nowait(struct super_block *sb, unsigned long hashval,
967 int (*test)(struct inode *, void *), void *data)
968{
969 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
970
971 return ifind(sb, head, test, data, 0);
972}
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700973EXPORT_SYMBOL(ilookup5_nowait);
974
975/**
976 * ilookup5 - search for an inode in the inode cache
977 * @sb: super block of file system to search
978 * @hashval: hash value (usually inode number) to search for
979 * @test: callback used for comparisons between inodes
980 * @data: opaque data pointer to pass to @test
981 *
982 * ilookup5() uses ifind() to search for the inode specified by @hashval and
983 * @data in the inode cache. This is a generalized version of ilookup() for
984 * file systems where the inode number is not sufficient for unique
985 * identification of an inode.
986 *
987 * If the inode is in the cache, the inode lock is waited upon and the inode is
988 * returned with an incremented reference count.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 *
990 * Otherwise NULL is returned.
991 *
992 * Note, @test is called with the inode_lock held, so can't sleep.
993 */
994struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
995 int (*test)(struct inode *, void *), void *data)
996{
997 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
998
Anton Altaparmakov88bd5122005-07-13 01:10:44 -0700999 return ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001EXPORT_SYMBOL(ilookup5);
1002
1003/**
1004 * ilookup - search for an inode in the inode cache
1005 * @sb: super block of file system to search
1006 * @ino: inode number to search for
1007 *
1008 * ilookup() uses ifind_fast() to search for the inode @ino in the inode cache.
1009 * This is for file systems where the inode number is sufficient for unique
1010 * identification of an inode.
1011 *
1012 * If the inode is in the cache, the inode is returned with an incremented
1013 * reference count.
1014 *
1015 * Otherwise NULL is returned.
1016 */
1017struct inode *ilookup(struct super_block *sb, unsigned long ino)
1018{
1019 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1020
1021 return ifind_fast(sb, head, ino);
1022}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023EXPORT_SYMBOL(ilookup);
1024
1025/**
1026 * iget5_locked - obtain an inode from a mounted file system
1027 * @sb: super block of file system
1028 * @hashval: hash value (usually inode number) to get
1029 * @test: callback used for comparisons between inodes
1030 * @set: callback used to initialize a new struct inode
1031 * @data: opaque data pointer to pass to @test and @set
1032 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 * iget5_locked() uses ifind() to search for the inode specified by @hashval
1034 * and @data in the inode cache and if present it is returned with an increased
1035 * reference count. This is a generalized version of iget_locked() for file
1036 * systems where the inode number is not sufficient for unique identification
1037 * of an inode.
1038 *
1039 * If the inode is not in cache, get_new_inode() is called to allocate a new
1040 * inode and this is returned locked, hashed, and with the I_NEW flag set. The
1041 * file system gets to fill it in before unlocking it via unlock_new_inode().
1042 *
1043 * Note both @test and @set are called with the inode_lock held, so can't sleep.
1044 */
1045struct inode *iget5_locked(struct super_block *sb, unsigned long hashval,
1046 int (*test)(struct inode *, void *),
1047 int (*set)(struct inode *, void *), void *data)
1048{
1049 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
1050 struct inode *inode;
1051
Anton Altaparmakov88bd5122005-07-13 01:10:44 -07001052 inode = ifind(sb, head, test, data, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (inode)
1054 return inode;
1055 /*
1056 * get_new_inode() will do the right thing, re-trying the search
1057 * in case it had to block at any point.
1058 */
1059 return get_new_inode(sb, head, test, set, data);
1060}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061EXPORT_SYMBOL(iget5_locked);
1062
1063/**
1064 * iget_locked - obtain an inode from a mounted file system
1065 * @sb: super block of file system
1066 * @ino: inode number to get
1067 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 * iget_locked() uses ifind_fast() to search for the inode specified by @ino in
1069 * the inode cache and if present it is returned with an increased reference
1070 * count. This is for file systems where the inode number is sufficient for
1071 * unique identification of an inode.
1072 *
1073 * If the inode is not in cache, get_new_inode_fast() is called to allocate a
1074 * new inode and this is returned locked, hashed, and with the I_NEW flag set.
1075 * The file system gets to fill it in before unlocking it via
1076 * unlock_new_inode().
1077 */
1078struct inode *iget_locked(struct super_block *sb, unsigned long ino)
1079{
1080 struct hlist_head *head = inode_hashtable + hash(sb, ino);
1081 struct inode *inode;
1082
1083 inode = ifind_fast(sb, head, ino);
1084 if (inode)
1085 return inode;
1086 /*
1087 * get_new_inode_fast() will do the right thing, re-trying the search
1088 * in case it had to block at any point.
1089 */
1090 return get_new_inode_fast(sb, head, ino);
1091}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092EXPORT_SYMBOL(iget_locked);
1093
Al Viro261bca82008-12-30 01:48:21 -05001094int insert_inode_locked(struct inode *inode)
1095{
1096 struct super_block *sb = inode->i_sb;
1097 ino_t ino = inode->i_ino;
1098 struct hlist_head *head = inode_hashtable + hash(sb, ino);
Al Viro261bca82008-12-30 01:48:21 -05001099
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001100 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001101 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001102 struct hlist_node *node;
1103 struct inode *old = NULL;
Al Viro261bca82008-12-30 01:48:21 -05001104 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001105 hlist_for_each_entry(old, node, head, i_hash) {
1106 if (old->i_ino != ino)
1107 continue;
1108 if (old->i_sb != sb)
1109 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001110 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001111 continue;
1112 break;
1113 }
1114 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001115 hlist_add_head(&inode->i_hash, head);
1116 spin_unlock(&inode_lock);
1117 return 0;
1118 }
1119 __iget(old);
1120 spin_unlock(&inode_lock);
1121 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001122 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001123 iput(old);
1124 return -EBUSY;
1125 }
1126 iput(old);
1127 }
1128}
Al Viro261bca82008-12-30 01:48:21 -05001129EXPORT_SYMBOL(insert_inode_locked);
1130
1131int insert_inode_locked4(struct inode *inode, unsigned long hashval,
1132 int (*test)(struct inode *, void *), void *data)
1133{
1134 struct super_block *sb = inode->i_sb;
1135 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
Al Viro261bca82008-12-30 01:48:21 -05001136
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001137 inode->i_state |= I_NEW;
Al Viro261bca82008-12-30 01:48:21 -05001138
1139 while (1) {
Al Viro72a43d62009-05-13 19:13:40 +01001140 struct hlist_node *node;
1141 struct inode *old = NULL;
1142
Al Viro261bca82008-12-30 01:48:21 -05001143 spin_lock(&inode_lock);
Al Viro72a43d62009-05-13 19:13:40 +01001144 hlist_for_each_entry(old, node, head, i_hash) {
1145 if (old->i_sb != sb)
1146 continue;
1147 if (!test(old, data))
1148 continue;
Al Viroa4ffdde2010-06-02 17:38:30 -04001149 if (old->i_state & (I_FREEING|I_WILL_FREE))
Al Viro72a43d62009-05-13 19:13:40 +01001150 continue;
1151 break;
1152 }
1153 if (likely(!node)) {
Al Viro261bca82008-12-30 01:48:21 -05001154 hlist_add_head(&inode->i_hash, head);
1155 spin_unlock(&inode_lock);
1156 return 0;
1157 }
1158 __iget(old);
1159 spin_unlock(&inode_lock);
1160 wait_on_inode(old);
Al Viro1d3382cb2010-10-23 15:19:20 -04001161 if (unlikely(!inode_unhashed(old))) {
Al Viro261bca82008-12-30 01:48:21 -05001162 iput(old);
1163 return -EBUSY;
1164 }
1165 iput(old);
1166 }
1167}
Al Viro261bca82008-12-30 01:48:21 -05001168EXPORT_SYMBOL(insert_inode_locked4);
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170/**
1171 * __insert_inode_hash - hash an inode
1172 * @inode: unhashed inode
1173 * @hashval: unsigned long value used to locate this object in the
1174 * inode_hashtable.
1175 *
1176 * Add an inode to the inode hash for this superblock.
1177 */
1178void __insert_inode_hash(struct inode *inode, unsigned long hashval)
1179{
1180 struct hlist_head *head = inode_hashtable + hash(inode->i_sb, hashval);
1181 spin_lock(&inode_lock);
1182 hlist_add_head(&inode->i_hash, head);
1183 spin_unlock(&inode_lock);
1184}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185EXPORT_SYMBOL(__insert_inode_hash);
1186
1187/**
1188 * remove_inode_hash - remove an inode from the hash
1189 * @inode: inode to unhash
1190 *
1191 * Remove an inode from the superblock.
1192 */
1193void remove_inode_hash(struct inode *inode)
1194{
1195 spin_lock(&inode_lock);
1196 hlist_del_init(&inode->i_hash);
1197 spin_unlock(&inode_lock);
1198}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199EXPORT_SYMBOL(remove_inode_hash);
1200
Al Viro45321ac2010-06-07 13:43:19 -04001201int generic_delete_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
Al Viro45321ac2010-06-07 13:43:19 -04001203 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205EXPORT_SYMBOL(generic_delete_inode);
1206
Al Viro45321ac2010-06-07 13:43:19 -04001207/*
1208 * Normal UNIX filesystem behaviour: delete the
1209 * inode when the usage count drops to zero, and
1210 * i_nlink is zero.
Jan Kara22fe40422009-09-18 13:05:44 -07001211 */
Al Viro45321ac2010-06-07 13:43:19 -04001212int generic_drop_inode(struct inode *inode)
1213{
Al Viro1d3382cb2010-10-23 15:19:20 -04001214 return !inode->i_nlink || inode_unhashed(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001215}
1216EXPORT_SYMBOL_GPL(generic_drop_inode);
1217
1218/*
1219 * Called when we're dropping the last reference
1220 * to an inode.
1221 *
1222 * Call the FS "drop_inode()" function, defaulting to
1223 * the legacy UNIX filesystem behaviour. If it tells
1224 * us to evict inode, do so. Otherwise, retain inode
1225 * in cache if fs is alive, sync and evict if fs is
1226 * shutting down.
1227 */
1228static void iput_final(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
1230 struct super_block *sb = inode->i_sb;
Al Viro45321ac2010-06-07 13:43:19 -04001231 const struct super_operations *op = inode->i_sb->s_op;
1232 int drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Al Viro45321ac2010-06-07 13:43:19 -04001234 if (op && op->drop_inode)
1235 drop = op->drop_inode(inode);
1236 else
1237 drop = generic_drop_inode(inode);
1238
1239 if (!drop) {
Joern Engel1c0eeaf2007-10-16 23:30:44 -07001240 if (!(inode->i_state & (I_DIRTY|I_SYNC)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 list_move(&inode->i_list, &inode_unused);
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001242 percpu_counter_inc(&nr_inodes_unused);
Christoph Hellwigacb0c852007-05-08 00:25:52 -07001243 if (sb->s_flags & MS_ACTIVE) {
Alexander Viro991114c2005-06-23 00:09:01 -07001244 spin_unlock(&inode_lock);
Al Viro45321ac2010-06-07 13:43:19 -04001245 return;
Alexander Viro991114c2005-06-23 00:09:01 -07001246 }
Nick Piggin7ef0d732009-03-12 14:31:38 -07001247 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001248 inode->i_state |= I_WILL_FREE;
1249 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 write_inode_now(inode, 1);
1251 spin_lock(&inode_lock);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001252 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001253 inode->i_state &= ~I_WILL_FREE;
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001254 percpu_counter_dec(&nr_inodes_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 hlist_del_init(&inode->i_hash);
1256 }
1257 list_del_init(&inode->i_list);
1258 list_del_init(&inode->i_sb_list);
Nick Piggin7ef0d732009-03-12 14:31:38 -07001259 WARN_ON(inode->i_state & I_NEW);
Alexander Viro991114c2005-06-23 00:09:01 -07001260 inode->i_state |= I_FREEING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 spin_unlock(&inode_lock);
Al Viro644da592010-06-07 13:21:05 -04001262 evict(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001263 spin_lock(&inode_lock);
1264 hlist_del_init(&inode->i_hash);
1265 spin_unlock(&inode_lock);
Andrea Arcangeli7f04c262005-10-30 15:03:05 -08001266 wake_up_inode(inode);
Al Viro45321ac2010-06-07 13:43:19 -04001267 BUG_ON(inode->i_state != (I_FREEING | I_CLEAR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 destroy_inode(inode);
1269}
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271/**
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301272 * iput - put an inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 * @inode: inode to put
1274 *
1275 * Puts an inode, dropping its usage count. If the inode use count hits
1276 * zero, the inode is then freed and may also be destroyed.
1277 *
1278 * Consequently, iput() can sleep.
1279 */
1280void iput(struct inode *inode)
1281{
1282 if (inode) {
Al Viroa4ffdde2010-06-02 17:38:30 -04001283 BUG_ON(inode->i_state & I_CLEAR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 if (atomic_dec_and_lock(&inode->i_count, &inode_lock))
1286 iput_final(inode);
1287 }
1288}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289EXPORT_SYMBOL(iput);
1290
1291/**
1292 * bmap - find a block number in a file
1293 * @inode: inode of file
1294 * @block: block to find
1295 *
1296 * Returns the block number on the device holding the inode that
1297 * is the disk block number for the block of the file requested.
1298 * That is, asked for block 4 of inode 1 the function will return the
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301299 * disk block relative to the disk start that holds that block of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 * file.
1301 */
Manish Katiyar6b3304b2009-03-31 19:35:54 +05301302sector_t bmap(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 sector_t res = 0;
1305 if (inode->i_mapping->a_ops->bmap)
1306 res = inode->i_mapping->a_ops->bmap(inode->i_mapping, block);
1307 return res;
1308}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309EXPORT_SYMBOL(bmap);
1310
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001311/*
1312 * With relative atime, only update atime if the previous atime is
1313 * earlier than either the ctime or mtime or if at least a day has
1314 * passed since the last atime update.
1315 */
1316static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
1317 struct timespec now)
1318{
1319
1320 if (!(mnt->mnt_flags & MNT_RELATIME))
1321 return 1;
1322 /*
1323 * Is mtime younger than atime? If yes, update atime:
1324 */
1325 if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0)
1326 return 1;
1327 /*
1328 * Is ctime younger than atime? If yes, update atime:
1329 */
1330 if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0)
1331 return 1;
1332
1333 /*
1334 * Is the previous atime value older than a day? If yes,
1335 * update atime:
1336 */
1337 if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60)
1338 return 1;
1339 /*
1340 * Good, we can skip the atime update:
1341 */
1342 return 0;
1343}
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345/**
Christoph Hellwig869243a2006-01-09 20:52:03 -08001346 * touch_atime - update the access time
1347 * @mnt: mount the inode is accessed on
Martin Waitz7045f372006-02-01 03:06:57 -08001348 * @dentry: dentry accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 *
1350 * Update the accessed time on an inode and mark it for writeback.
1351 * This function automatically handles read only file systems and media,
1352 * as well as the "noatime" flag and inode specific "noatime" markers.
1353 */
Christoph Hellwig869243a2006-01-09 20:52:03 -08001354void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Christoph Hellwig869243a2006-01-09 20:52:03 -08001356 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 struct timespec now;
1358
Andrew Mortonb2276132006-12-13 00:34:33 -08001359 if (inode->i_flags & S_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001360 return;
Eric Dumazet37756ce2007-02-10 01:44:49 -08001361 if (IS_NOATIME(inode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001362 return;
Andrew Mortonb2276132006-12-13 00:34:33 -08001363 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001364 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001365
Dave Hansencdb70f32008-02-15 14:37:41 -08001366 if (mnt->mnt_flags & MNT_NOATIME)
Andi Kleenb12536c2009-09-18 13:05:47 -07001367 return;
Dave Hansencdb70f32008-02-15 14:37:41 -08001368 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
Andi Kleenb12536c2009-09-18 13:05:47 -07001369 return;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 now = current_fs_time(inode->i_sb);
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001372
1373 if (!relatime_need_update(mnt, inode, now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001374 return;
Matthew Garrett11ff6f052009-03-26 17:32:14 +00001375
Valerie Henson47ae32d2006-12-13 00:34:34 -08001376 if (timespec_equal(&inode->i_atime, &now))
Andi Kleenb12536c2009-09-18 13:05:47 -07001377 return;
1378
1379 if (mnt_want_write(mnt))
1380 return;
Valerie Henson47ae32d2006-12-13 00:34:34 -08001381
1382 inode->i_atime = now;
1383 mark_inode_dirty_sync(inode);
Dave Hansencdb70f32008-02-15 14:37:41 -08001384 mnt_drop_write(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
Christoph Hellwig869243a2006-01-09 20:52:03 -08001386EXPORT_SYMBOL(touch_atime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388/**
Christoph Hellwig870f4812006-01-09 20:52:01 -08001389 * file_update_time - update mtime and ctime time
1390 * @file: file accessed
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 *
Christoph Hellwig870f4812006-01-09 20:52:01 -08001392 * Update the mtime and ctime members of an inode and mark the inode
1393 * for writeback. Note that this function is meant exclusively for
1394 * usage in the file write path of filesystems, and filesystems may
1395 * choose to explicitly ignore update via this function with the
Wolfram Sang2eadfc02009-04-02 15:23:37 +02001396 * S_NOCMTIME inode flag, e.g. for network filesystem where these
Christoph Hellwig870f4812006-01-09 20:52:01 -08001397 * timestamps are handled by the server.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
1399
Christoph Hellwig870f4812006-01-09 20:52:01 -08001400void file_update_time(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001402 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 struct timespec now;
Andi Kleence06e0b2009-09-18 13:05:48 -07001404 enum { S_MTIME = 1, S_CTIME = 2, S_VERSION = 4 } sync_it = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Andi Kleence06e0b2009-09-18 13:05:48 -07001406 /* First try to exhaust all avenues to not sync */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (IS_NOCMTIME(inode))
1408 return;
Dave Hansen20ddee22008-02-15 14:37:43 -08001409
Andi Kleence06e0b2009-09-18 13:05:48 -07001410 now = current_fs_time(inode->i_sb);
1411 if (!timespec_equal(&inode->i_mtime, &now))
1412 sync_it = S_MTIME;
1413
1414 if (!timespec_equal(&inode->i_ctime, &now))
1415 sync_it |= S_CTIME;
1416
1417 if (IS_I_VERSION(inode))
1418 sync_it |= S_VERSION;
1419
1420 if (!sync_it)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 return;
1422
Andi Kleence06e0b2009-09-18 13:05:48 -07001423 /* Finally allowed to write? Takes lock. */
1424 if (mnt_want_write_file(file))
1425 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Andi Kleence06e0b2009-09-18 13:05:48 -07001427 /* Only change inode inside the lock region */
1428 if (sync_it & S_VERSION)
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001429 inode_inc_iversion(inode);
Andi Kleence06e0b2009-09-18 13:05:48 -07001430 if (sync_it & S_CTIME)
1431 inode->i_ctime = now;
1432 if (sync_it & S_MTIME)
1433 inode->i_mtime = now;
1434 mark_inode_dirty_sync(inode);
Dave Hansen20ddee22008-02-15 14:37:43 -08001435 mnt_drop_write(file->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
Christoph Hellwig870f4812006-01-09 20:52:01 -08001437EXPORT_SYMBOL(file_update_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439int inode_needs_sync(struct inode *inode)
1440{
1441 if (IS_SYNC(inode))
1442 return 1;
1443 if (S_ISDIR(inode->i_mode) && IS_DIRSYNC(inode))
1444 return 1;
1445 return 0;
1446}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447EXPORT_SYMBOL(inode_needs_sync);
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449int inode_wait(void *word)
1450{
1451 schedule();
1452 return 0;
1453}
Stephen Rothwelld44dab82008-11-10 17:06:05 +11001454EXPORT_SYMBOL(inode_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456/*
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001457 * If we try to find an inode in the inode hash while it is being
1458 * deleted, we have to wait until the filesystem completes its
1459 * deletion before reporting that it isn't found. This function waits
1460 * until the deletion _might_ have completed. Callers are responsible
1461 * to recheck inode state.
1462 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001463 * It doesn't matter if I_NEW is not set initially, a call to
Miklos Szeredi168a9fd2005-07-12 13:58:10 -07001464 * wake_up_inode() after removing from the hash list will DTRT.
1465 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 * This is called with inode_lock held.
1467 */
1468static void __wait_on_freeing_inode(struct inode *inode)
1469{
1470 wait_queue_head_t *wq;
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001471 DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1472 wq = bit_waitqueue(&inode->i_state, __I_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1474 spin_unlock(&inode_lock);
1475 schedule();
1476 finish_wait(wq, &wait.wait);
1477 spin_lock(&inode_lock);
1478}
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480static __initdata unsigned long ihash_entries;
1481static int __init set_ihash_entries(char *str)
1482{
1483 if (!str)
1484 return 0;
1485 ihash_entries = simple_strtoul(str, &str, 0);
1486 return 1;
1487}
1488__setup("ihash_entries=", set_ihash_entries);
1489
1490/*
1491 * Initialize the waitqueues and inode hash table.
1492 */
1493void __init inode_init_early(void)
1494{
1495 int loop;
1496
1497 /* If hashes are distributed across NUMA nodes, defer
1498 * hash allocation until vmalloc space is available.
1499 */
1500 if (hashdist)
1501 return;
1502
1503 inode_hashtable =
1504 alloc_large_system_hash("Inode-cache",
1505 sizeof(struct hlist_head),
1506 ihash_entries,
1507 14,
1508 HASH_EARLY,
1509 &i_hash_shift,
1510 &i_hash_mask,
1511 0);
1512
1513 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1514 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1515}
1516
Denis Cheng74bf17c2007-10-16 23:26:30 -07001517void __init inode_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 int loop;
1520
1521 /* inode slab cache */
Paul Jacksonb0196002006-03-24 03:16:09 -08001522 inode_cachep = kmem_cache_create("inode_cache",
1523 sizeof(struct inode),
1524 0,
1525 (SLAB_RECLAIM_ACCOUNT|SLAB_PANIC|
1526 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001527 init_once);
Rusty Russell8e1f9362007-07-17 04:03:17 -07001528 register_shrinker(&icache_shrinker);
Dave Chinnercffbc8a2010-10-23 05:03:02 -04001529 percpu_counter_init(&nr_inodes, 0);
1530 percpu_counter_init(&nr_inodes_unused, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 /* Hash may have been set up in inode_init_early */
1533 if (!hashdist)
1534 return;
1535
1536 inode_hashtable =
1537 alloc_large_system_hash("Inode-cache",
1538 sizeof(struct hlist_head),
1539 ihash_entries,
1540 14,
1541 0,
1542 &i_hash_shift,
1543 &i_hash_mask,
1544 0);
1545
1546 for (loop = 0; loop < (1 << i_hash_shift); loop++)
1547 INIT_HLIST_HEAD(&inode_hashtable[loop]);
1548}
1549
1550void init_special_inode(struct inode *inode, umode_t mode, dev_t rdev)
1551{
1552 inode->i_mode = mode;
1553 if (S_ISCHR(mode)) {
1554 inode->i_fop = &def_chr_fops;
1555 inode->i_rdev = rdev;
1556 } else if (S_ISBLK(mode)) {
1557 inode->i_fop = &def_blk_fops;
1558 inode->i_rdev = rdev;
1559 } else if (S_ISFIFO(mode))
1560 inode->i_fop = &def_fifo_fops;
1561 else if (S_ISSOCK(mode))
1562 inode->i_fop = &bad_sock_fops;
1563 else
Manish Katiyaraf0d9ae2009-09-18 13:05:43 -07001564 printk(KERN_DEBUG "init_special_inode: bogus i_mode (%o) for"
1565 " inode %s:%lu\n", mode, inode->i_sb->s_id,
1566 inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567}
1568EXPORT_SYMBOL(init_special_inode);
Dmitry Monakhova1bd1202010-03-04 17:29:14 +03001569
1570/**
1571 * Init uid,gid,mode for new inode according to posix standards
1572 * @inode: New inode
1573 * @dir: Directory inode
1574 * @mode: mode of the new inode
1575 */
1576void inode_init_owner(struct inode *inode, const struct inode *dir,
1577 mode_t mode)
1578{
1579 inode->i_uid = current_fsuid();
1580 if (dir && dir->i_mode & S_ISGID) {
1581 inode->i_gid = dir->i_gid;
1582 if (S_ISDIR(mode))
1583 mode |= S_ISGID;
1584 } else
1585 inode->i_gid = current_fsgid();
1586 inode->i_mode = mode;
1587}
1588EXPORT_SYMBOL(inode_init_owner);